a {
    text-decoration: none;
    color: #000;
}

/* Navbar Styling */
.navbar {
    min-height: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #123D39 !important;
}

.logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: #AF8938 !important;
    letter-spacing: -1px;
}

.nav-link {
    color: #ffffff;
    font-weight: 500;
}

.nav-link:hover {
    color: #AF8938 !important;
    font-weight: 500;
}


/* Cart Sidebar (Offcanvas) */
.offcanvas-cart {
    width: 400px !important;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevents image from squishing */
}

/* Search Bar */
.search-container {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.search-container .form-control {
    border-radius: 20px;
    padding-left: 40px;
    /* Increased padding for the icon */
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.search-container .form-control:focus {
    box-shadow: 0 0 0 2px rgba(175, 137, 56, 0.3);
    background-color: #f1f5f9;
    border-color: #AF8938;
}

.search-container .fa-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #AF8938;
    z-index: 5;
}

/* Nav Icons */
.nav-icon-btn {
    position: relative;
    padding: 8px;
    color: #AF8938;
    transition: transform 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-icon-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #AF8938;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 50%;
    border: 2px solid #123D39;
    /* Blends badge into navbar bg */
}

/* Brand Colors */
.text-brand {
    color: #AF8938 !important;
}

.btn-brand {
    background-color: #AF8938;
    color: white;
    border: none;
}

.btn-brand:hover {
    background-color: #0d2e2b;
    color: white;
}

.btn-outline-brand {
    border: 1px solid #AF8938;
    color: #AF8938;
}

.btn-outline-brand:hover {
    background-color: #AF8938;
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .navbar {
        padding: 10px 0;
    }

    .offcanvas-cart {
        width: 100% !important;
    }

    .search-container {
        max-width: 100%;
        margin-top: 15px;
    }
}

/* footer */
.footer-section {
    padding-top: 100px;
    padding-bottom: 40px;
    background-color: #14352f;
    /* Brand Green */
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
}

.footer-brand-logo {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 360px;
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #b58e3e;
    /* Gold color */
    margin-bottom: 1.8rem;
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.contact-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b58e3e;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item a span {
    color: #fff9 !important;
}

.contact-item:hover .contact-icon-circle {
    background: #b58e3e;
    color: #14352f;
}

.social-links {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    margin-right: 12px;
}

.social-links:hover {
    border-color: #b58e3e;
    color: #b58e3e;
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright,
.developer-credit,
.footer-bottom-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credit strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.developer-credit:hover,
.footer-bottom-link:hover {
    color: #ffffff;
}

/* banner */
/* 1. Set the fixed height for the carousel */
.hbs-section {
    width: 100%;
    height: 80vh;
    /* Adjust height as needed */
    min-height: 500px;
    position: relative;
    margin-top: 100px;
}

.hbs-swiper {
    width: 100%;
    height: 100%;
}

.hbs-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Images */
.hbs-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 8s ease-out;
}

/* Ken Burns Effect for active slide */
.swiper-slide-active .hbs-bg-image {
    transform: scale(1.1);
}

/* Overlay */
.hbs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

/* Content Positioning */
.hbs-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
}

/* Animation Classes */
.hbs-content h1,
.hbs-content p,
.hbs-content .hbs-btn-wrap {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.swiper-slide-active .hbs-content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.swiper-slide-active .hbs-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.swiper-slide-active .hbs-content .hbs-btn-wrap {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* Buttons */
.hbs-btn {
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: all 0.3s ease;
}

.hbs-btn-primary {
    background-color: #123d39;
    color: white;
    border: 2px solid #123d39;
}

.hbs-btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Unique Navigation Styling */
.hbs-nav-next,
.hbs-nav-prev {
    color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.hbs-nav-next:after,
.hbs-nav-prev:after {
    font-size: 20px !important;
}

.hbs-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0.5;
}

.hbs-pagination .swiper-pagination-bullet-active {
    background: #123d39;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hbs-section {
        height: 18vh;
        min-height: 150px;
    }
}

/* banner */


/* --- Category Section --- */
.category-section-wrapper {
    padding: 40px 0;
    background-color: #123D39;
    width: 100%;
    display: block;
}

.section-header {
    margin-bottom: 10px;
}

.section-header h2 {
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #AF8938;
}


.bg-brand-accent {
    background-color: #AF8938 !important;
}

.category-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 10px; */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #AF8938 0%, #ededed 100%);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-img-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #123D39;
}

.category-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-title {
    color: #fffefc;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    display: inline-block;
}

.category-link:hover .category-card {
    transform: translateY(-12px);
}

.category-link:hover .category-img-wrapper {
    box-shadow: 0 15px 45px rgba(175, 137, 56, 0.4);
    transform: scale(1.05);
}

.category-link:hover .category-img-inner img {
    transform: scale(1.1);
}

.category-link:hover .category-title {
    color: #AF8938;
}

.category-title::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #AF8938;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.category-link:hover .category-title::after {
    width: 40px;
    background-color: #ffffff;
}

.category-img-wrapper,
.category-img-inner img {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.category-scroll-wrapper {
    scroll-snap-type: x mandatory;
}

.cat-col {
    scroll-snap-align: start;
}

/* --- Responsive Adjustments --- */
@media (min-width: 992px) {
    .cat-col {
        flex: 0 0 auto;
        width: 25%;
    }

    .category-title {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #123D39;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .hero-row {
        height: auto;
    }

    .slider-col {
        height: 300px;
    }

    .side-col {
        height: 400px;
    }

    .category-img-wrapper {
        width: 80px;
        height: 80px;
    }

}

@media (max-width: 991px) {
    .cat-col {
        flex: 0 0 auto;
        width: 30%;
    }

    .category-title {
        font-size: 10px;
    }
}


@media (max-width: 768px) {

    .section-header {
        margin-bottom: 20px;
    }

    .category-scroll-wrapper {
        /* overflow-x: auto; */
        /* overflow-y: hidden; */
        padding-bottom: 10px;
        /* padding-left: 15px; */
    }

    .category-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .category-scroll-wrapper {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .category-scroll {
        /* flex-wrap: nowrap; */
        /* gap: 15px; */
    }

    .cat-col {
        flex: 0 0 auto;
        width: 25%;
    }
}


/* product */
/* Section Header Styles */
.product-slide {
    padding: 40px 0;
}

.prod-section-header {
    max-width: 1240px;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 20px;
}

.prod-section-title-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.prod-section-title-box p {
    font-size: 14px;
    color: #71717a;
    margin: 5px 0 0 0;
}

.prod-view-more-link {
    color: #123d39;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.prod-view-more-link:hover {
    gap: 12px;
}

/* Unique Swiper Container ID */
#prod-slider-container {
    width: 100%;
    max-width: 1240px;
    padding: 10px 10px 60px 10px;
    margin: 0 auto;
}

/* Renamed Card Class */
.prod-item-wrapper {
    width: 100%;
    max-width: 350px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    margin: 0 auto;
}

.prod-item-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image Section */
.prod-visual-box {
    width: 100%;
    height: 370px;
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
}

.prod-visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-img-alt {
    opacity: 0;
}

.prod-item-wrapper:hover .prod-img-main {
    opacity: 0;
    transform: scale(1.05);
}

.prod-item-wrapper:hover .prod-img-alt {
    opacity: 1;
    transform: scale(1.05);
}

/* Quick Add Overlay */
.prod-quick-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    z-index: 15;
}

.prod-item-wrapper .prod-quick-action {
    transform: translateY(0);
}

.prod-btn-cart {
    background: #ffffff;
    color: #123d39;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-btn-cart:hover {
    background: #123d39;
    color: #ffffff;
}

/* Top Widgets */
.prod-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #123d39;
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    z-index: 20;
}

.prod-wish-trigger {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #123d39;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    z-index: 20;
}

.prod-wish-trigger:hover {
    background: #ffffff;
    color: #ef4444;
    transform: scale(1.1);
}

/* Content Area */
.prod-details-panel {
    padding: 24px;
    text-align: center;
}

.prod-tagline {
    font-size: 11px;
    font-weight: 600;
    color: #af8938;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.prod-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.prod-pricing {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 24px;
}

.prod-price-col {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 40%;
    align-items: center;
}

.prod-price-current {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.prod-price-was {
    font-size: 14px;
    color: #71717a;
    text-decoration: line-through;
}

/* Primary Action Section */
.prod-footer-btns {
    display: flex;
    gap: 12px;
}

.prod-btn-primary {
    flex: 1;
    background: #123d39;
    color: #ffffff;
    border: none;
    height: 54px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-btn-primary:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.prod-btn-icon {
    width: 54px;
    height: 54px;
    background: #f2f2f7;
    color: #123d39;
    border: none;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 18px;
}

.prod-btn-icon:hover {
    background: #e5e5ea;
    color: #000000;
}

/* --- Custom Navigation Controls --- */
.prod-nav-next,
.prod-nav-prev {
    color: #123d39;
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.prod-nav-next {
    right: 10px;
}

.prod-nav-prev {
    left: 10px;
}

.prod-nav-next:hover,
.prod-nav-prev:hover {
    background: #123d39;
    color: #ffffff;
}

.prod-dots .swiper-pagination-bullet {
    background: #123d39;
    opacity: 0.2;
}

.prod-dots .swiper-pagination-bullet-active {
    opacity: 1;
    background: #123d39;
}

@media (max-width: 768px) {
    .prod-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .prod-visual-box {
        height: 210px;
    }

    .prod-details-panel {
        padding: 12px;
    }

    .prod-title {
        font-size: 16px;
    }

    .prod-pricing {
        justify-content: start;
        margin-bottom: 5px;
        margin-left: 12px;
    }

    .prod-price-was {
        margin-left: 12px;
    }

    .prod-btn-primary {
        height: 40px;
        font-size: 12px;
    }

    i.fa-solid.fa-bolt {
        display: none;
    }

    .prod-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .prod-item-wrapper {
        width: 45vw;
    }

    .vp-order-summary {
        padding: 15px;
    }

    .check-butt {
        font-size: 11px;
    }

    .prod-tagline {
        font-size: 10px;
    }

    .prod-btn-cart {
        font-size: 12px;
    }

    #prod-slider-container {
        padding: 10px 10px 60px 10px;
    }

    .footer-bottom {
        margin-top: 30px;
    }
}

button.btn.btn-outline-dark.btn-sm.filter-size {
    width: auto;
}

/* product slider end */


/* promo */
/* --- FULL WIDTH BRANDED PROMOTION --- */
.prod-promo-full {
    width: 100%;
    display: flex;
    align-items: stretch;
    background: #123d39;
    /* Your signature color */
    min-height: 600px;
    overflow: hidden;
}

/* Text Side */
.prod-promo-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 10%;
    color: #ffffff;
    position: relative;
}

/* Image Side */
.prod-promo-visual-side {
    flex: 1;
    position: relative;
}

.prod-promo-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Typography */
.prod-promo-uptitle {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    display: block;
}

.prod-promo-h1 {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    line-height: 0.95;
    margin: 0 0 30px 0;
    letter-spacing: -3px;
}

.prod-promo-p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Action Row */
.prod-promo-cta-row {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.prod-btn-solid {
    background: #ffffff;
    color: #123d39;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.prod-btn-solid:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Reveal Option */
.prod-coupon-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prod-reveal-box {
    border: 1px dashed rgba(255, 255, 255, 0.4);
    padding: 18px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    min-width: 200px;
    text-align: center;
}

.prod-reveal-box:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.prod-coupon-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.prod-reveal-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .prod-promo-full {
        flex-direction: column;
    }

    .prod-promo-content-side {
        padding: 60px 40px;
        order: 2;
    }

    .prod-promo-visual-side {
        height: 400px;
        order: 1;
    }
}

@media (max-width: 600px) {
    .prod-promo-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .prod-btn-solid,
    .prod-reveal-box {
        width: 100%;
    }
}

/* promo */

/* 2nd slider */
/* --- UNIQUE LAYOUT STRUCTURE --- */
.v3-layout-container {
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: 40px auto;
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- UNIQUE LEFT PROMO BANNER --- */
.v3-promo-left {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.v3-promo-img-box {
    height: 380px;
    overflow: hidden;
}

.v3-promo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.v3-promo-left:hover .v3-promo-img-box img {
    transform: scale(1.05);
}

.v3-promo-footer {
    background: #123d39;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.v3-promo-logo {
    font-size: 32px;
    margin-bottom: 15px;
}

.v3-promo-footer h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.v3-promo-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 4px;
    transition: opacity 0.3s;
}

/* --- UNIQUE RIGHT SLIDER SECTION --- */
.v3-slider-right {
    flex: 1;
    min-width: 0;
    position: relative;
}

/* --- UNIQUE CARD DESIGN --- */
.v3-item-wrapper {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

.v3-item-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.v3-visual-box {
    width: 100%;
    height: 370px;
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
}

.v3-visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.v3-img-alt {
    opacity: 0;
}

.v3-item-wrapper:hover .v3-img-main {
    opacity: 0;
    transform: scale(1.05);
}

.v3-item-wrapper:hover .v3-img-alt {
    opacity: 1;
    transform: scale(1.05);
}

.v3-quick-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    z-index: 15;
}

.v3-item-wrapper:hover .v3-quick-action {
    transform: translateY(0);
}

.v3-btn-cart {
    background: #ffffff;
    color: #123d39;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.v3-btn-cart:hover {
    background: #123d39;
    color: #ffffff;
}

.v3-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #123d39;
    color: white;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    z-index: 20;
}

.v3-wish-trigger {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #123d39;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    z-index: 20;
}

.v3-wish-trigger:hover {
    background: #ffffff;
    color: #ef4444;
    transform: scale(1.1);
}

.v3-details-panel {
    padding: 24px;
}

.v3-tagline {
    font-size: 11px;
    font-weight: 600;
    color: #af8938;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.v3-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v3-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.v3-price-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v3-price-current {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.v3-price-was {
    font-size: 14px;
    color: #71717a;
    text-decoration: line-through;
}

/* Footer Buttons inside card */
.v3-footer-btns {
    display: flex;
    gap: 10px;
}

.v3-btn-primary {
    flex: 1;
    background: #123d39;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.v3-btn-primary:hover {
    opacity: 0.9;
}

.v3-btn-icon {
    width: 44px;
    height: 44px;
    background: #f4f4f5;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.3s;
}

.v3-btn-icon:hover {
    background: #e4e4e7;
}

/* Unique Navigation Buttons */
.v3-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #123d39;
    z-index: 25;
    cursor: pointer;
    transition: all 0.3s;
}

.v3-nav-btn:hover {
    background: #123d39;
    color: #fff;
}

.v3-next {
    right: 0px;
}

.v3-prev {
    left: 0px;
}

@media (max-width: 1024px) {
    .v3-layout-container {
        flex-direction: column;
    }

    .v3-promo-left {
        flex: 0 0 auto;
        width: 100%;
    }

    .v3-promo-img-box {
        height: 350px;
    }

    .v3-nav-btn {
        display: none;
    }
}

/* content section */
/* Modern Features Section */
.modern-features {
    background: #123d39;
    /* Brand Green */
    padding: 40px 24px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Abstract Background Decor */
.modern-features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header Layout: Modern Asymmetrical */
.header-groups {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-end;
}

.header-groups h2 {
    font-size: clamp(32px, 5vw, 45px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #AF8938;
}

.header-groups p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 30px;
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    /* For a modern thin-line divider look */
    background: rgba(255, 255, 255, 0.1);
    /* Divider color */
}

/* Individual Item */
.feature-item {
    background: #123d39;
    /* Same as section to hide background except at gaps */
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

/* Glassmorphism Icon Box */
.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    transition: all 0.4s ease;
}

.feature-item:hover .icon-box {
    background: #ffffff;
    border-color: #ffffff;
    transform: rotate(-5deg) scale(1.1);
}

.icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.feature-item:hover .icon-box img {
    filter: brightness(0) invert(0);
    /* Turn icon dark on white background */
}

/* Typography Styling */
.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #AF8938;
}

/* Modern index number for items */
.feature-item h3::before {
    content: attr(data-index);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-groups {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .header-groups p {
        border-left: none;
        padding-left: 0;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .modern-features {
        padding: 80px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        background: transparent;
        /* Remove divider look on mobile */
    }

    .feature-item {
        padding: 0;
    }

    .icon-box {
        margin-bottom: 24px;
    }

    .header-groups h2 {
        font-size: 36px;
    }
}


/* testimonial */
.testimonial-section {
    background: #ffffff;
    /* Removed Green Background */
    color: #1a1a1a;
    /* Dark text for light background */
    padding: 40px 0;
    overflow: hidden;
}

/* Unique Swiper Container Styling */
.ts-swiper-container {
    padding: 20px 0 30px 0;
}

.testimonial-card {
    background: #f9f9f9;
    /* Light grey card background */
    border: 1px solid #eeeeee;
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: grab;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #dddddd;
}

.quote-icon {
    font-size: 24px;
    color: #123d39;
    /* Brand Green used as accent */
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 30px;
    font-style: italic;
}

.stars {
    color: #f1c40f;
    margin-bottom: 20px;
    font-size: 14px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #eeeeee;
}

.user-details h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #1a1a1a;
}

.user-details span {
    font-size: 13px;
    color: #888888;
}

/* product details */

.cl-pdp-container-wrap {
    padding: 60px 0;
    margin-top: 80px;
    color: #111827;
    background: #ffffff;
}

/* Unique Swiper Gallery Styles */
.cl-pdp-gallery-frame {
    position: relative;
    background: #ffffff;
}

/* Square Image Container */
.cl-pdp-slider-root {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Force square aspect ratio */
    height: auto;
    /* Allow aspect-ratio to determine height */
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
}

.cl-pdp-slider-root .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills the square without stretching */
}

/* Thumbnails Slider */
.cl-pdp-thumbs-wrapper {
    margin-top: 15px;
    width: 100%;
}

.cl-pdp-thumbs-slider {
    height: auto;
    box-sizing: border-box;
    padding: 5px 0;
}

.cl-pdp-thumbs-slider .swiper-slide {
    aspect-ratio: 1 / 1;
    /* Keep thumbnails square too */
    opacity: 0.6;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.3s;
}

.cl-pdp-thumbs-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #123d39;
}

.cl-pdp-thumbs-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Offer Badge on Image */
.cl-pdp-badge-promo {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e63946;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 800;
    z-index: 10;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* Product Info Styles */
.cl-pdp-title-area h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.cl-pdp-meta-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cl-pdp-rating-stars {
    color: #f1c40f;
}

.cl-pdp-sku-id {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

/* Pricing Section */
.cl-pdp-pricing-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.cl-pdp-price-now {
    font-size: 32px;
    font-weight: 800;
    color: #123d39;
}

.cl-pdp-price-was {
    font-size: 20px;
    color: #9ca3af;
    text-decoration: line-through;
}

.cl-pdp-price-savings {
    color: #e63946;
    font-weight: 700;
    font-size: 16px;
}

/* Selection Options */
.cl-pdp-heading-small {
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: #4b5563;
}

.cl-pdp-selectors-list {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cl-pdp-swatch-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.2s;
    padding: 3px;
    background-clip: content-box;
}

.cl-pdp-swatch-circle.cl-pdp-is-active {
    border-color: #123d39;
}

.cl-pdp-size-box {
    min-width: 55px;
    height: 48px;
    border: 1.5px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.cl-pdp-size-box:hover,
.cl-pdp-size-box.cl-pdp-is-active {
    border-color: #123d39;
    background: #123d39;
    color: white;
}

/* Unique Action Buttons */
.cl-pdp-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 60px;
    gap: 15px;
    margin-bottom: 35px;
}

.cl-pdp-btn-custom {
    height: 58px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cl-pdp-btn-outline {
    background: white;
    border: 2px solid #123d39;
    color: #123d39;
}

.cl-pdp-btn-outline:hover {
    border: 2px solid #AF8938;
    color: #AF8938;
}

.cl-pdp-btn-solid {
    background: #123d39;
    border: 2px solid #123d39;
    color: white;
}

.cl-pdp-btn-solid:hover {
    background: #ffffff;
    border-color: #0f2c2a;
}

.cl-pdp-btn-icon-only {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    color: #9ca3af;
}

.cl-pdp-btn-icon-only.cl-pdp-is-active {
    color: #e63946;
    border-color: #e63946;
}

/* Share Area */
.cl-pdp-share-wrapper {
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.cl-pdp-copy-field-wrap {
    position: relative;
    margin-top: 15px;
}

.cl-pdp-toast-notif {
    position: absolute;
    top: -40px;
    right: 0;
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    display: none;
    animation: clpdpSlideIn 0.3s ease;
}

@keyframes clpdpSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .cl-pdp-title-area h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .cl-pdp-actions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cl-pdp-btn-icon-only {
        order: -1;
        width: 50px;
        margin-left: auto;
        border: none;
    }
}

.swiper-slide.swiper-slide-prev {
    margin: 0 !important;
}

/* related pro */
/* --- SECTION LAYOUT STYLES --- */
.rel-product-section {
    padding: 80px 0;
    background: #fdfdfd;
    overflow: hidden;
}

.rel-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding: 0 15px;
}

.rel-section-title-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}

.rel-section-title-box p {
    color: #666;
    margin: 0;
}

.rel-view-more-link {
    text-decoration: none;
    color: #111;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.rel-view-more-link:hover {
    color: #123d39;
    border-color: #123d39;
}

/* --- SLIDER CONTAINER STYLES --- */
.rel-swiper-container {
    padding: 20px 15px 60px !important;
    position: relative;
}

.rel-nav-prev,
.rel-nav-next {
    position: absolute;
    top: 40%;
    width: 45px;
    height: 45px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
}

.rel-nav-prev {
    left: -10px;
}

.rel-nav-next {
    right: -10px;
}

.rel-nav-prev:hover,
.rel-nav-next:hover {
    background: #123d39;
    color: #fff;
}

.rel-dots .swiper-pagination-bullet-active {
    background: #123d39 !important;
}

@media (max-width: 768px) {
    .cl-pdp-container-wrap {
        padding: 40px 0;
    }

    .rel-section-header {
        flex-wrap: wrap;
    }

    .rel-product-section {
        padding: 40px 0;
    }

    .rel-view-more-link {
        margin-top: 20px;
    }
}

/* user dashboard */
/* Layout Management */
.tab-content-section {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease-out;
    font-family: 'Inter', sans-serif;
}

.tab-content-section.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Header */
.dashboard-header {
    background: #ffffff;
    padding: 1.25rem;
    border-bottom: 1px solid #edf2f1;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
}

.brand-logo {
    font-weight: 900;
    font-size: 1.2rem;
    color: #123d39;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
}

/* Navigation Grid - Full Page Menu */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #edf2f1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
    border-color: #C5A358;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.menu-card .icon-boxx {
    width: 60px;
    height: 60px;
    background: #f3f5f4;
    color: #123d39;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s;
}

.menu-card:hover .icon-boxx {
    background: #123d39;
    color: #ffffff;
}

.menu-card .content h6 {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
}

.menu-card .content p {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
}

.menu-card .arrow {
    margin-left: auto;
    color: #d1d5db;
    transition: 0.3s;
}

.menu-card:hover .arrow {
    color: #123d39;
    transform: translateX(5px);
}

/* Content Components */
.field-group {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid #edf2f1;
}

.section-headerr {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.back-btn {
    width: 45px;
    height: 45px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #123d39;
    transition: 0.2s;
    cursor: pointer;
}

.back-btn:hover {
    background: #123d39;
    color: #ffffff;
}

/* Tracking Timeline */
.tracking-timeline {
    position: relative;
    padding: 10px 0;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 35px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 30px;
    width: 2px;
    height: 100%;
    background: #e5e7eb;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 0.9rem;
    color: #9ca3af;
}

.timeline-item.completed .timeline-icon {
    background: #123d39;
    border-color: #123d39;
    color: #ffffff;
}

.timeline-item.active .timeline-icon {
    border-color: #123d39;
    color: #123d39;
    box-shadow: 0 0 0 4px rgba(18, 61, 57, 0.1);
}

/* Forms & Modals */
.form-label-custom {
    font-size: 0.7rem;
    font-weight: 800;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.form-control-custom {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    font-weight: 500;
    background: #fcfdfd;
}

.form-control-custom:focus {
    background: #ffffff;
    border-color: #123d39;
    box-shadow: 0 0 0 4px rgba(18, 61, 57, 0.05);
}

.btn-action {
    background: #123d39;
    color: #ffffff;
    width: 100%;
    padding: 1.1rem;
    border-radius: 16px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.btn-action:hover {
    background: #0d2e2b;
    transform: translateY(-2px);
}

.modal-content {
    border-radius: 32px;
    border: none;
    padding: 15px;
}

/* User Header Info */
.user-top-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #edf2f1;
}

.mini-avatar {
    width: 50px;
    height: 50px;
    background: #123d39;
    color: #ffffff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Product Card Aesthetics */
.product-card {
    border: none;
    transition: opacity 0.3s ease;
    margin-bottom: 3rem;
    text-decoration: none;
    color: #1a1a1a;
    display: block;
    font-family: 'Inter', sans-serif;
}

.product-img-container {
    position: relative;
    background-color: #f9f9f9;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.product-img-container img {
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover img {
    transform: scale(1.05);
}

.badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #123D39;
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    z-index: 2;
    color: #1a1a1a;
    transition: color 0.2s;
}

.wishlist-btn:hover {
    color: #123D39;
}

.product-info {
    text-align: center;
}

.product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 0.5rem;
    display: block;
}

.product-name {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #123D39;
}

.price-sale {
    color: #b12704;
    margin-right: 8px;
}

.price-muted {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Size Buttons */
.btn-outline-brand {
    border-color: #ddd;
    color: #666;
    border-radius: 0;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    transition: all 0.2s;
}

.btn-outline-brand:hover,
.btn-outline-brand.active {
    border-color: #123D39;
    background-color: #123D39;
    color: white;
}

.btn-brand {
    background-color: #123D39;
    color: white;
    border-radius: 0;
    border: none;
    transition: opacity 0.2s;
}

.btn-brand:hover {
    opacity: 0.9;
    color: white;
}

/* Size Selector Simulation */
.size-tags {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Sorting Header */
.collection-header {
    /* margin-bottom: 4rem; */
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
}

.collection-header h1 {
    color: #123D39;
}

.sort-select {
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    cursor: pointer;
    color: #123D39;
}

.sort-select:focus {
    outline: none;
}

/* Range Slider Styling */
input[type="range"] {
    accent-color: #123D39;
}

@media (max-width: 991px) {
    .filter-sidebar {
        border-bottom: 1px solid #eee;
        padding-bottom: 2rem;
        margin-bottom: 3rem;
        position: static;
    }
}

@media (max-width: 767px) {
    .mart {
        margin-top: 60px;
    }

    .collection-header {
        margin-bottom: 1rem;
    }
}

/* contact us */
/* Simplified Info Section - No Boxes */
.info-wrapper {
    padding-top: 5px;
}

.info-item {
    margin-bottom: 3rem;
}

.info-icon {
    font-size: 1.2rem;
    color: #123D39;
    margin-bottom: 0.75rem;
    display: block;
}

.info-title {
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: #888;
}

.info-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #123D39;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0.8rem 0;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #123D39;
    box-shadow: none;
    background: transparent;
}

.btn-brand {
    background-color: #123D39;
    color: white;
    border-radius: 0;
    border: none;
    padding: 1.2rem 3rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-size: 0.8rem;
    /* margin-top: 2rem; */
}

.btn-brand:hover {
    background-color: #0a2522;
    color: white;
    transform: translateY(-2px);
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #123D39;
    /* Your dark blue-gray */
    color: #AF8938;
    /* Your gold */
    font-size: 16px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #af8938;
    color: #123D39;
}

/* Minimal Map View */
.map-section {
    border-top: 1px solid #eee;
    padding-top: 4rem;
    margin-top: 4rem;
}

.map-placeholder {
    background-color: #fcfcfc;
    border: 1px solid #f0f0f0;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.7rem;
}

/* register */
.registration-wrapper {
    max-width: 500px;
    margin: 2rem auto;
}

.brand-title {
    color: #123D39;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-label {
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 1.5rem;
    display: block;
}

/* Minimalist Input Design - No Boxes */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #123D39;
    margin-bottom: 0.1rem;
}

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    background: transparent;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #123D39;
    box-shadow: none;
    background: transparent;
}

/* Checkbox styling */
.form-check-input {
    border-radius: 0;
    border-color: #ddd;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #123D39;
    border-color: #123D39;
}

.form-check-label {
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
}

/* Styling for the section labels */
.filter-section-label {
    display: block;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #333;
}

/* Ensure the sidebar behaves like a normal column on desktop */
@media (min-width: 992px) {
    .offcanvas-lg {
        position: static !important;
        visibility: visible !important;
        transform: none !important;
        background-color: transparent !important;
        width: auto !important;
        border-right: none !important;
    }

    .filter-sidebar {
        padding-right: 20px;
        border-right: 1px solid #eee;
    }
}

/* Mobile specific tweaks */
@media (max-width: 991.98px) {
    .offcanvas-body {
        padding: 1.5rem;
    }
}

.btn-brand {
    background-color: #123D39;
    color: white;
    border-radius: 0;
    border: none;
    padding: 0.9rem 0;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.btn-brand:hover {
    background-color: #0a2522;
    color: white;
    transform: translateY(-2px);
}

/* Google Button Style */
.btn-google {
    background-color: transparent;
    color: #123D39;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0.8rem 0;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    border-color: #123D39;
    background-color: #fcfcfc;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.25rem 0;
    color: #ccc;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider:not(:empty)::before {
    margin-right: 1.5rem;
}

.divider:not(:empty)::after {
    margin-left: 1.5rem;
}

.login-link {
    color: #123D39;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.login-link:hover {
    opacity: 0.7;
}

.register {
    margin-top: 110px;
}

/* forgot password */
.registration-wrapper {
    max-width: 500px;
    margin: 2rem auto;
}

.brand-title {
    color: #123D39;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-label {
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 1.5rem;
    display: block;
}

/* Minimalist Input Design - No Boxes */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #123D39;
    margin-bottom: 0.1rem;
}

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    background: transparent;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #123D39;
    box-shadow: none;
    background: transparent;
}

.btn-brand {
    background-color: #123D39;
    color: white;
    border-radius: 0;
    border: none;
    padding: 0.9rem 0;
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.btn-brand:hover {
    background-color: #0a2522;
    color: white;
    transform: translateY(-2px);
}

.login-link {
    color: #123D39;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.login-link:hover {
    opacity: 0.7;
}

.instruction-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
    color: #000000;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.divider:not(:empty)::before {
    margin-right: 1.5rem;
}

.divider:not(:empty)::after {
    margin-left: 1.5rem;
}

.dropdown-menu-end[data-bs-popper] {
    left: 1px;
}

/* wishlist */
/* Unique Branded Utility Bar */
.vp-wishlist-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 100;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 100px;
}

.vp-selection-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vp-ctrl-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vp-btn-utility {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 2px;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.vp-btn-utility:hover {
    border-color: #0D3B31;
    color: #0D3B31;
}

.vp-btn-danger {
    border-color: #fee2e2;
    color: #e53e3e;
}

.vp-btn-danger:hover {
    background: #e53e3e;
    color: #ffffff;
    border-color: #e53e3e;
}

/* Unique 1:1 Branded Grid */
.vp-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
}

.vp-wish-card {
    position: relative;
    background: #ffffff;
    transition: transform 0.3s ease;
}

/* Unique Square Container */
.vp-square-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f8fafc;
}

.vp-square-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Unique Hover Overlay */
.vp-card-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 59, 49, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

.vp-wish-card:hover .vp-card-mask {
    opacity: 1;
}

.vp-wish-card:hover .vp-square-box img {
    transform: scale(1.08);
}

/* Unique Action Icons */
.vp-action-circle {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D3B31;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.vp-action-circle:hover {
    background: #C5A358;
    color: #ffffff;
    transform: translateY(-4px);
}

/* Unique Checkbox */
.vp-item-selector {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #0D3B31;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Unique Product Meta */
.vp-item-meta {
    padding: 16px 4px;
    text-align: left;
}

.vp-item-title {
    font-size: 1.05rem;
    margin: 0;
    color: #0D3B31;
    font-weight: 700;
}

.vp-item-price {
    font-weight: 500;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 4px;
}

@media (max-width: 576px) {
    .vp-wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vp-action-circle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* policy */
.vp-policy-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    color: #334155;
    line-height: 1.8;
    margin-top: 100px;
}

.vp-policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.vp-policy-title {
    font-size: 2.5rem;
    color: #0D3B31;
    margin-bottom: 10px;
}

.vp-accent-line {
    width: 60px;
    height: 3px;
    background: #C5A358;
    margin: 0 auto 20px;
}

.vp-policy-section {
    margin-bottom: 40px;
}

.vp-section-heading {
    font-size: 1.5rem;
    color: #0D3B31;
    margin-bottom: 15px;
    font-weight: 700;
}

.vp-policy-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.vp-policy-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.vp-policy-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.vp-back-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 10px 25px;
    background-color: #0D3B31;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.vp-back-btn:hover {
    background-color: #C5A358;
    color: #ffffff;
}

@media (max-width: 768px) {
    .vp-policy-title {
        font-size: 2rem;
    }

    .vp-policy-container {
        margin: 40px auto;
    }
}

/* checkout */

.checkout {
    margin-top: 110px;
}

.vp-checkout-title {
    font-size: 1.75rem;
    color: #0D3B31;
    margin-bottom: 25px;
}

.vp-section-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 24px;
}

.vp-section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C5A358;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vp-form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #0D3B31;
    margin-bottom: 6px;
}

.vp-form-input {
    border: 1px solid #e2e8f0;
    border-radius: 2px;
    padding: 12px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.vp-form-input:focus {
    outline: none;
    border-color: #0D3B31;
    box-shadow: none;
}

/* Order Summary Sidebar */
.vp-order-summary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 30px;
    position: sticky;
    top: 20px;
}

.vp-summary-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.vp-summary-img-wrapper {
    position: relative;
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.vp-summary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-item-actions {
    margin-top: 8px;
    display: flex;
    gap: 12px;
}

.vp-action-link {
    font-size: 0.75rem;
    text-decoration: none;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.vp-action-link:hover {
    color: #0D3B31;
}

.vp-action-link.remove:hover {
    color: #be123c;
}

.vp-summary-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #0D3B31;
}

.vp-summary-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0D3B31;
}

.vp-cost-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.vp-total-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #0D3B31;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0D3B31;
}

.vp-btn-checkout {
    width: 100%;
    background: #0D3B31;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.vp-btn-checkout:hover {
    background: #C5A358;
    transform: translateY(-2px);
}

.vp-payment-option {
    border: 1px solid #e2e8f0;
    padding: 18px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
}

.vp-payment-option:hover {
    border-color: #C5A358;
}

.vp-payment-option input[type="radio"]:checked+label {
    color: #0D3B31;
    font-weight: 600;
}

.vp-payment-option.active {
    border-color: #0D3B31;
    background: #f0fdf4;
}

@media (max-width: 991px) {
    .vp-order-summary {
        margin-top: 30px;
        position: static;
    }
}

/* cart page */
.cart {
    margin-top: 110px;
}

.vp-cart-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.vp-cart-title {
    font-size: 1 .5rem;
    color: #0D3B31;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

/* Cart Table Headers */
.vp-cart-header {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #64748b;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f5f9;
}

/* Cart Item Row */
.vp-cart-item {
    padding: 30px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.vp-item-img-wrapper {
    width: 120px;
    height: 160px;
    background: #f8fafc;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.vp-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-item-info {
    padding-left: 25px;
    flex-grow: 1;
}

.vp-item-name {
    font-size: 1.25rem;
    color: #0D3B31;
    margin-bottom: 5px;
    text-decoration: none;
    display: block;
}

.vp-item-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}

/* Quantity Controls */
.vp-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    width: fit-content;
    border-radius: 4px;
}

.vp-qty-btn {
    background: none;
    border: none;
    padding: 5px 12px;
    color: #0D3B31;
    cursor: pointer;
    transition: background 0.2s;
}

.vp-qty-btn:hover {
    background: #f8fafc;
}

.vp-qty-val {
    padding: 0 10px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.vp-item-price {
    font-weight: 600;
    color: #0D3B31;
    font-size: 1.1rem;
    width: 120px;
    text-align: right;
}

.vp-remove-btn {
    background: none;
    border: none;
    color: #94a3b8;
    margin-left: 30px;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.vp-remove-btn:hover {
    color: #be123c;
}

/* Order Summary */
.vp-summary-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
}

.vp-summary-title {
    font-size: 1.5rem;
    color: #0D3B31;
    margin-bottom: 25px;
}

.vp-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.vp-total-row {
    border-top: 1px solid #e2e8f0;
    margin-top: 20px;
    padding-top: 20px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0D3B31;
}

.vp-btn-checkout {
    width: 100%;
    background: #0D3B31;
    color: white;
    border: none;
    padding: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 30px;
    transition: all 0.3s;
}

.vp-btn-checkout:hover {
    background: #C5A358;
    transform: translateY(-2px);
}

.vp-continue-shopping {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
}

.vp-continue-shopping:hover {
    color: #0D3B31;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .vp-cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .vp-item-img-wrapper {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }

    .vp-item-info {
        padding-left: 0;
        width: 100%;
    }

    .vp-item-price {
        text-align: left;
        width: 100%;
        margin-top: 15px;
    }

    .vp-remove-btn {
        position: absolute;
        top: 30px;
        right: 0;
    }

    .vp-cart-item {
        position: relative;
    }
}

/* count */
/* The Pill Container - Scaled for a sidebar/cart context */
.counter-pill {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    width: 120px;
    height: 40px;
    user-select: none;
    transition: border-color 0.3s ease;
}

.counter-pill:hover {
    border-color: #c5a059;
    /* Gold border on hover */
}

/* Common styles for buttons and display */
.pill-section {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

/* Increment/Decrement Buttons */
button.pill-section {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #0a2e28;
    /* Brand Green */
    font-size: 18px;
    font-weight: 400;
}

button.pill-section:hover {
    background-color: #f3f4f6;
    color: #c5a059;
    /* Gold icon on hover */
}

button.pill-section:active {
    background-color: #e5e7eb;
}

/* The Middle Number Display */
.count-display {
    background-color: #ffffff;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 14px;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    min-width: 40px;
    font-family: sans-serif;
}

/* Label for context */
.label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c5a059;
    /* Brand Gold */
    margin-bottom: 8px;
    font-weight: 600;
    display: block;
}

button:focus {
    outline: none;
}

/* thankyou */
/* Container and Card Styles */
.thankyou {
    margin-top: 100px;
}

.thank-you-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 20px;
}

.thank-you-card {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #f0fdf4;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0D3B31;
    margin-bottom: 15px;
}

.order-number {
    font-weight: 600;
    color: #C5A358;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: block;
}

.confirmation-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.order-summary-mini {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.summary-total {
    border-top: 1px solid #e2e8f0;
    margin-top: 15px;
    padding-top: 15px;
    font-weight: 700;
    color: #0D3B31;
    display: flex;
    justify-content: space-between;
}

.vp-btn-primary {
    background-color: #0D3B31;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.vp-btn-primary:hover {
    background-color: #C5A358;
    transform: translateY(-2px);
    color: white;
}

.support-link {
    display: block;
    margin-top: 25px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.support-link:hover {
    color: #0D3B31;
}

@media (max-width: 576px) {
    .thank-you-card {
        padding: 40px 20px;
    }

    .thank-you-title {
        font-size: 2rem;
    }
}

.error {
    color: red;
}

/* review section */
/* Unique Namespace Styles to prevent conflicts */
.aur-rv-section {
    font-family: 'Inter', sans-serif;
    padding: 60px 0;
    background-color: #f4f7f6;
    overflow: hidden;
}

.aur-rv-header {
    margin-bottom: 40px;
    text-align: center;
}

.aur-rv-title {
    font-weight: 800;
    color: #123d39;
    font-size: 2.2rem;
}

/* Swiper Container Customization */
.aur-rv-swiper-container {
    padding: 20px 10px 60px 10px !important;
}

/* Review Card Design */
.aur-rv-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #edf2f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.aur-rv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: #C5A358;
}

.aur-rv-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.aur-rv-avatar {
    width: 50px;
    height: 50px;
    background: #123d39;
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.aur-rv-stars {
    color: #C5A358;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.aur-rv-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aur-rv-verified {
    font-size: 0.75rem;
    color: #1e7e34;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 15px;
}

/* Navigation Buttons */
.aur-rv-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.aur-rv-prev,
.aur-rv-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #edf2f1;
    color: #123d39;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.aur-rv-prev:hover,
.aur-rv-next:hover {
    background: #123d39;
    color: #ffffff;
}

.aur-rv-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 30px;
}

.aur-rv-pagination .swiper-pagination-bullet-active {
    background: #123d39 !important;
}

/* toggle */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 35%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 10;
}

/* about us */
.about-us {
    margin-top: 80px;
}

.editorial-header {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background-color: #ffffff;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 25px 25px 0px #0a3d31;
    border-radius: 2px;
}

.about-title {
    font-size: 3.5rem;
    color: #0a3d31;
    line-height: 1.2;
    margin-bottom: 30px;
}

.story-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
}

.content-section {
    padding: 40px 0;
    background-color: white;
}

.mission-strip {
    background-color: #0a3d31;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.mission-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-style: italic;
    color: #C5A358;
}

.mission-quote {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-style: italic;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.4;
}


@media (max-width: 991px) {
    .about-title {
        font-size: 2.5rem;
    }

    .hero-img-wrapper img {
        height: 400px;
        margin-bottom: 40px;
    }

    .mission-quote {
        font-size: 1.6rem;
    }
}

.wishlist-btn.active i {
    color: red;
    font-weight: 900;
    transform: scale(1.2);
    transition: 0.3s ease;
}

.wishlist-animate {
    animation: pop 0.4s ease;
}

@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

.vp-payment-option.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* new */
.filter-color.active {
    border: 2px solid #000;
    outline: 2px solid #fff;
    outline-offset: -4px;
}