 /* ==========================================================================
           CUSTOM CSS - SHOP- PREFIXED E-COMMERCE DESIGN SYSTEM
           ========================================================================== */
        /* :root {
            --shop-primary: #071A33;
            --shop-secondary: #12345A;
            --shop-accent: #f59e0b;
            --shop-slate: #64748b;
            --shop-light-bg: #f8fafc;
            --shop-card-border: rgba(226, 232, 240, 0.8);
            --shop-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --shop-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shop-shadow-lg: 0 20px 25px -5px rgba(7, 26, 51, 0.08), 0 10px 10px -5px rgba(7, 26, 51, 0.03);
        } */

        :root {

    /* Brand palette sampled from images/rise-way-logo.png (navy "RW" + gold arrow) */
    --shop-primary: #071A33;
    --shop-secondary: #12345A;
    --shop-navy-light: #1E4A7E;
    --shop-accent: #F5A623;
    --shop-accent-light: #FFC94D;
    --shop-accent-dark: #C98511;
    --shop-gold-gradient: linear-gradient(135deg, #FFC94D 0%, #F5A623 50%, #D98E0F 100%);
    --shop-navy-gradient: linear-gradient(135deg, #071A33 0%, #12345A 60%, #1E4A7E 100%);
    --shop-slate: #64748b;

    --bs-warning: #F5A623;
    --bs-warning-rgb: 245, 166, 35;
    --bs-link-color: #12345A;
    --bs-link-color-rgb: 18, 52, 90;
    --bs-link-hover-color: #C98511;
    --bs-link-hover-color-rgb: 201, 133, 17;
    --shop-light-bg: #ffffff;
    --shop-card-border: rgba(226, 232, 240, 0.8);
    --shop-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shop-shadow-sm: 0 4px 6px -1px rgba(7, 26, 51, 0.05), 
                      0 2px 4px -1px rgba(7, 26, 51, 0.03);
    --shop-shadow-lg: 0 20px 25px -5px rgba(7, 26, 51, 0.08), 
                      0 10px 10px -5px rgba(7, 26, 51, 0.03);

}

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--shop-primary);
            background-color: #ffffff;
            overflow-x: hidden;
        }

        /* Top Announcement Bar */
        .shop-announcement-bar {
            background: linear-gradient(90deg, #071A33 0%, #12345A 100%);
            color: #f8fafc;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            padding: 8px 0;
        }

        /* Glassmorphic Navbar */
        .shop-navbar {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.7);
            transition: var(--shop-transition);
        }

        .luxe-navbar-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}
        
        .shop-nav-link {
            font-weight: 600;
            color: var(--shop-slate) !important;
            padding: 8px 16px !important;
            border-radius: 20px;
            transition: var(--shop-transition);
            position: relative;
        }

        .shop-nav-link:hover, .shop-nav-link.active {
            color: var(--shop-primary) !important;
            background-color: rgba(245, 166, 35, 0.12);
        }

        .shop-icon-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(241, 245, 249, 0.8);
            color: var(--shop-primary);
            transition: var(--shop-transition);
            position: relative;
            border: none;
        }

        .shop-icon-btn:hover {
            background: var(--shop-accent);
            color: var(--shop-primary);
            transform: translateY(-2px);
        }

        .shop-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background-color: var(--shop-accent);
            color: var(--shop-primary);
            font-size: 0.65rem;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #ffffff;
        }

        /* Hero Section */
        .shop-hero {
            padding: 80px 0 60px 0;
            background: radial-gradient(circle at 90% 10%, rgba(18, 52, 90, 0.08) 0%, rgba(255, 255, 255, 0) 55%),
                        radial-gradient(circle at 10% 90%, rgba(245, 166, 35, 0.12) 0%, rgba(255, 255, 255, 0) 55%);
        }

        .shop-hero-card img {
            display: block;
            width: 100%;
        }

        .shop-hero-card {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shop-shadow-lg);
            position: relative;
        }

        .shop-hero-img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            transition: var(--shop-transition);
        }

        .shop-hero-badge {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            border-radius: 20px;
            padding: 18px 24px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        /* Buttons */
        .shop-btn-primary {
            background: var(--shop-gold-gradient);
            color: var(--shop-primary);
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            border: 2px solid transparent;
            transition: var(--shop-transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 20px -8px rgba(245, 166, 35, 0.55);
        }

        .shop-btn-primary:hover {
            background: var(--shop-primary);
            color: var(--shop-accent);
            border-color: var(--shop-accent);
            transform: translateY(-3px);
            box-shadow: 0 12px 20px -5px rgba(7, 26, 51, 0.25);
        }

        .shop-btn-outline {
            background-color: transparent;
            color: var(--shop-secondary);
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid rgba(7, 26, 51, 0.15);
            transition: var(--shop-transition);
        }

        .shop-btn-outline:hover {
            border-color: var(--shop-accent);
            color: var(--shop-primary);
            background-color: rgba(245, 166, 35, 0.08);
            transform: translateY(-3px);
        }

        /* Cards & Interactions */
        .shop-card {
            border: 1px solid var(--shop-card-border);
            border-radius: 20px;
            overflow: hidden;
            background: #ffffff;
            transition: var(--shop-transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .shop-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shop-shadow-lg);
            border-color: rgba(245, 166, 35, 0.3);
        }

        .shop-img-wrapper {
            position: relative;
            overflow: hidden;
            background-color: #f1f5f9;
            padding-top: 100%; /* 1:1 Aspect ratio */
        }

        .shop-img-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .shop-card:hover .shop-img-wrapper img {
            transform: scale(1.08);
        }

        .shop-wishlist-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--shop-slate);
            transition: var(--shop-transition);
            z-index: 2;
        }

        .shop-wishlist-btn:hover, .shop-wishlist-btn.active {
           color: var(--shop-accent);
            background: #ffffff;
            transform: scale(1.1);
        }

        .shop-badge-sale {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--shop-accent);
            color: var(--shop-primary);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            z-index: 2;
        }

        /* Category Tiles */
        .shop-category-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 240px;
            cursor: pointer;
        }

        .shop-category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--shop-transition);
        }

        .shop-category-card:hover img {
            transform: scale(1.1);
        }

        .shop-category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(7, 26, 51,0.1) 0%, rgba(7, 26, 51,0.8) 100%);
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            color: #ffffff;
            transition: var(--shop-transition);
        }

        /* Promo Banner */
        .shop-promo-banner {
            background: var(--shop-navy-gradient);
            border-radius: 32px;
            padding: 60px 40px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .shop-promo-banner::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 166, 35,0.15) 0%, rgba(255,255,255,0) 70%);
            pointer-events: none;
        }

        /* Section Titles */
        .shop-section-subtitle {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--shop-accent-dark);
        }

        .shop-section-title {
            font-size: 2.25rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--shop-primary);
        }

        /* Feature Boxes */
        .shop-feature-box {
            padding: 32px 24px;
            border-radius: 20px;
            background: #f8fafc;
            border: 1px solid var(--shop-card-border);
            transition: var(--shop-transition);
            height: 100%;
        }

        .shop-feature-box:hover {
            background: #ffffff;
            box-shadow: var(--shop-shadow-lg);
            transform: translateY(-5px);
        }

        .shop-feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(245, 166, 35, 0.1);
            color: var(--shop-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        /* Filter Sidebar */
        .shop-filter-card {
            border: 1px solid var(--shop-card-border);
            border-radius: 20px;
            padding: 24px;
            background: #ffffff;
            position: sticky;
            top: 100px;
        }

        .shop-custom-checkbox .form-check-input:checked {
            background-color: var(--shop-primary);
            border-color: var(--shop-primary);
        }

        /* Rating Stars */
        .shop-rating {
            color: var(--shop-accent);
            font-size: 0.85rem;
        }

        /* Page Banner */
        .shop-page-hero {
            background:
                radial-gradient(circle at 85% 0%, rgba(245, 166, 35, 0.22) 0%, rgba(245, 166, 35, 0) 45%),
                var(--shop-navy-gradient);
            color: #ffffff;
            padding: 60px 0;
            margin-bottom: 40px;
            border-bottom: 3px solid var(--shop-accent);
        }

        .shop-breadcrumb a {
            color: var(--shop-accent);
            text-decoration: none;
            transition: var(--shop-transition);
        }

        .shop-breadcrumb a:hover {
            color: #ffffff;
        }

        /* Footer */
        .shop-footer {
            background-color: var(--shop-primary);
            color: #94a3b8;
            padding-top: 80px;
            padding-bottom: 30px;
            border-top: 3px solid var(--shop-accent);
        }

        .shop-footer .text-slate-900 {
            color: #ffffff !important;
        }

        .shop-footer .text-slate-500 {
            color: #8a9bb4 !important;
        }

        .shop-footer .border-slate-800 {
            border-color: rgba(255, 255, 255, 0.1) !important;
        }

        .shop-footer .shop-icon-btn {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
        }

        .shop-footer .shop-icon-btn:hover {
            background: var(--shop-accent);
            color: var(--shop-primary);
        }

        .shop-footer .luxe-navbar-logo {
            background: #ffffff;
            border-radius: 10px;
            padding: 3px;
        }

        .shop-footer h5 {
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .shop-footer-link {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: var(--shop-transition);
        }

        .shop-footer-link:hover {
            color: var(--shop-accent);
            transform: translateX(4px);
        }

        /* Floating Dev Toolbar */
        .dev-tab-bar {
            background: rgba(7, 26, 51, 0.95);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* SPA Section visibility */
        .spa-page {
            display: none;
        }

        .spa-page.active {
            display: block;
            animation: fadeIn 0.4s ease-out forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Code block viewing styling */
        pre code {
            font-family: 'Fira Code', 'Courier New', Courier, monospace;
            font-size: 0.85rem;
        }

        /* =========================================
   FEATURED PRODUCT CATEGORY SECTION
   UNIQUE PREFIX: shopcat-
========================================= */

.shopcat-section {
    position: relative;
    padding: 85px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================
   SECTION HEADING
========================= */

.shopcat-heading {
    max-width: 720px;
    margin: 0 auto 48px;
}

.shopcat-mini-title {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--shop-accent-dark);
    text-transform: uppercase;
}

.shopcat-main-title {
    margin: 0;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--shop-primary);
}

.shopcat-main-title span {
    color: var(--shop-accent-dark);
}

.shopcat-heading-text {
    max-width: 560px;
    margin: 12px auto 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   PRODUCT CARD
========================= */

.shopcat-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(7, 26, 51, 0.06);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
    
    animation: shopcat-card-reveal 0.8s ease both;
}

.shopcat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 166, 35, 0.25);
    box-shadow: 0 20px 45px rgba(7, 26, 51, 0.13);
}


/* Different animation delays */

.shopcat-grid > div:nth-child(1) .shopcat-card {
    animation-delay: 0.05s;
}

.shopcat-grid > div:nth-child(2) .shopcat-card {
    animation-delay: 0.12s;
}

.shopcat-grid > div:nth-child(3) .shopcat-card {
    animation-delay: 0.19s;
}

.shopcat-grid > div:nth-child(4) .shopcat-card {
    animation-delay: 0.26s;
}

.shopcat-grid > div:nth-child(5) .shopcat-card {
    animation-delay: 0.33s;
}

.shopcat-grid > div:nth-child(6) .shopcat-card {
    animation-delay: 0.40s;
}

.shopcat-grid > div:nth-child(7) .shopcat-card {
    animation-delay: 0.47s;
}


/* =========================
   IMAGE AREA
========================= */

.shopcat-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f7f7f7;
}

.shopcat-product-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        filter 0.5s ease;
}

.shopcat-card:hover .shopcat-product-img {
    transform: scale(1.08);
    filter: brightness(1.04);
}


/* =========================
   BADGE
========================= */

.shopcat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;

    padding: 6px 11px;
    border-radius: 30px;

    background: var(--shop-primary);
    color: #ffffff;

    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.3px;

    box-shadow: 0 5px 12px rgba(245, 166, 35, 0.25);
}


/* =========================
   WISHLIST BUTTON
========================= */

.shopcat-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    color: #374151;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.shopcat-wishlist:hover {
    background: var(--shop-accent-dark);
    color: #ffffff;
    transform: rotate(10deg) scale(1.08);
}


/* =========================
   CONTENT
========================= */

.shopcat-content {
    padding: 22px 20px 20px;
}

.shopcat-category {
    color: var(--shop-accent);
    display: block;
    margin-bottom: 6px;

    
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shopcat-product-title {
    margin: 0 0 8px;

    color: var(--shop-secondary);
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;

    transition: color 0.3s ease;
}

.shopcat-card:hover .shopcat-product-title {
    color: var(--shop-accent);
}

.shopcat-description {
    min-height: 48px;
    margin: 0;

    color: #6b7280;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================
   BOTTOM AREA
========================= */

.shopcat-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
    padding-top: 15px;

    border-top: 1px solid #eeeeee;
}

.shopcat-price {
    color: var(--shop-primary);
    font-size: 13px;
    font-weight: 800;
}

.shopcat-cart-btn {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--shop-primary);
    color: #ffffff;

    text-decoration: none;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.shopcat-cart-btn:hover {
    background:  var(--shop-accent);
    color: var(--shop-primary);
    transform: translateX(4px);
    box-shadow: 0 8px 18px rgba(245, 166, 35, 0.25);
}


/* =========================
   CARD REVEAL ANIMATION
========================= */

@keyframes shopcat-card-reveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

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


/* =========================
   IMAGE FLOAT EFFECT
========================= */

.shopcat-image-wrap::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.8s ease;

    pointer-events: none;
}

.shopcat-card:hover .shopcat-image-wrap::after {
    left: 140%;
}


/* =========================
   LARGE DESKTOP
========================= */

@media (max-width: 1199px) {

    .shopcat-image-wrap {
        height: 250px;
    }

    .shopcat-main-title {
        font-size: 34px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .shopcat-section {
        padding: 70px 0;
    }

    .shopcat-heading {
        margin-bottom: 38px;
    }

    .shopcat-image-wrap {
        height: 240px;
    }

    .shopcat-main-title {
        font-size: 32px;
    }

    .shopcat-product-title {
        font-size: 19px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .shopcat-section {
        padding: 60px 0;
    }

    .shopcat-heading {
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .shopcat-main-title {
        font-size: 28px;
    }

    .shopcat-heading-text {
        font-size: 14px;
    }

    .shopcat-image-wrap {
        height: 250px;
    }

    .shopcat-content {
        padding: 20px 18px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 575px) {

    .shopcat-section {
        padding: 50px 0;
    }

    .shopcat-main-title {
        font-size: 25px;
    }

    .shopcat-mini-title {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .shopcat-image-wrap {
        height: 230px;
    }

    .shopcat-product-title {
        font-size: 20px;
    }

    .shopcat-description {
        min-height: auto;
    }

    .shopcat-card:hover {
        transform: translateY(-5px);
    }
}


/* =========================
   VERY SMALL SCREEN
========================= */

@media (max-width: 380px) {

    .shopcat-main-title {
        font-size: 23px;
    }

    .shopcat-image-wrap {
        height: 210px;
    }

    .shopcat-content {
        padding: 17px;
    }
}


/* =====================================================
   ECOMMERCE PRODUCT CARDS
   UNIQUE PREFIX: ecoprod-
===================================================== */

.ecoprod-section {
    width: 100%;
    padding: 30px 0 80px;
    background: #ffffff;
}


/* =========================
   PRODUCT CARD
========================= */

.ecoprod-card {
    position: relative;
    height: 100%;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e1e6ed;
    border-radius: 22px;

    box-shadow: 0 5px 18px rgba(7, 26, 51, 0.035);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;

    animation: ecoprod-card-show 0.7s ease both;
}

.ecoprod-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 166, 35, 0.45);

    box-shadow:
        0 20px 45px rgba(7, 26, 51, 0.12);
}


/* =========================
   IMAGE
========================= */

.ecoprod-image-box {
    position: relative;
    width: 100%;
    height: 365px;
    overflow: hidden;

    background: #f2f4f7;
}

.ecoprod-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.8,.2,1),
        filter 0.5s ease;
}

.ecoprod-card:hover .ecoprod-image {
    transform: scale(1.08);
    filter: brightness(1.03);
}


/* =========================
   IMAGE SHINE ANIMATION
========================= */

.ecoprod-image-box::after {
    content: "";

    position: absolute;
    top: 0;
    left: -130%;

    width: 55%;
    height: 100%;

    pointer-events: none;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.28),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.8s ease;
}

.ecoprod-card:hover .ecoprod-image-box::after {
    left: 140%;
}


/* =========================
   BADGE
========================= */

.ecoprod-badge {
    position: absolute;
    top: 18px;
    left: 18px;

    z-index: 5;

    padding: 9px 15px;

    color: #ffffff;
    background: var(--shop-secondary
    );

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;

    line-height: 1;

    box-shadow:
        0 6px 15px rgba(245, 166, 35, 0.20);
}


/* =========================
   WISHLIST
========================= */

.ecoprod-wishlist {
    position: absolute;
    top: 18px;
    right: 18px;

    z-index: 5;

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.95);
    color: #64748b;

    font-size: 17px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(7, 26, 51, 0.10);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.ecoprod-wishlist:hover {
    transform: scale(1.12) rotate(-8deg);
    background: var(--shop-accent);
    color: var(--shop-primary);
}


/* =========================
   BODY
========================= */

.ecoprod-body {
    padding: 28px 29px 30px;
}


/* =========================
   CATEGORY
========================= */

.ecoprod-category {
    display: block;

    margin-bottom: 7px;

    color: #64748b;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.4px;
    text-transform: uppercase;
}


/* =========================
   TITLE
========================= */

.ecoprod-title {
    min-height: 55px;

    margin: 0 0 9px;

    color: var(--shop-primary);

    font-size: 20px;
    line-height: 1.25;

    font-weight: 800;

    transition: color 0.3s ease;
}

.ecoprod-card:hover .ecoprod-title {
    color: var(--shop-accent);
}


/* =========================
   RATING
========================= */

.ecoprod-rating {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 22px;

    font-size: 14px;
}

.ecoprod-rating i {
    color: #f59e0b;
    font-size: 16px;
}

.ecoprod-rating strong {
    color: #12345A;
    font-weight: 700;
}

.ecoprod-rating span {
    color: #f59e0b;
}


/* =========================
   PRICE
========================= */

.ecoprod-price-box {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;
}

.ecoprod-price {
    color: var(--shop-primary);

    font-size: 25px;
    font-weight: 500;
}

.ecoprod-price-box del {
    color: #64748b;
    font-size: 16px;
}


/* =========================
   ADD TO CART
========================= */

.ecoprod-cart {
    width: 100%;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    border: none;
    border-radius: 30px;

    background: var(--shop-primary);
    color: #ffffff;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 7px 16px rgba(7, 26, 51, 0.12);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.ecoprod-cart i {
    font-size: 17px;

    transition:
        transform 0.35s ease;
}

.ecoprod-cart:hover {
    background: var(--shop-accent);

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(245, 166, 35, 0.25);
}

.ecoprod-cart:hover i {
    transform: translateX(-3px) rotate(-5deg);
}


/* =========================
   CARD ENTRY ANIMATION
========================= */

@keyframes ecoprod-card-show {

    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   DIFFERENT ANIMATION DELAYS
========================= */

.ecoprod-section .row > div:nth-child(1) .ecoprod-card {
    animation-delay: 0.05s;
}

.ecoprod-section .row > div:nth-child(2) .ecoprod-card {
    animation-delay: 0.12s;
}

.ecoprod-section .row > div:nth-child(3) .ecoprod-card {
    animation-delay: 0.19s;
}

.ecoprod-section .row > div:nth-child(4) .ecoprod-card {
    animation-delay: 0.26s;
}

.ecoprod-section .row > div:nth-child(5) .ecoprod-card {
    animation-delay: 0.33s;
}

.ecoprod-section .row > div:nth-child(6) .ecoprod-card {
    animation-delay: 0.40s;
}

.ecoprod-section .row > div:nth-child(7) .ecoprod-card {
    animation-delay: 0.47s;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (max-width: 1399px) {

    .ecoprod-image-box {
        height: 330px;
    }

    .ecoprod-body {
        padding: 25px;
    }

}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1199px) {

    .ecoprod-image-box {
        height: 300px;
    }

    .ecoprod-title {
        font-size: 19px;
    }

    .ecoprod-price {
        font-size: 23px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .ecoprod-section {
        padding: 20px 0 60px;
    }

    .ecoprod-image-box {
        height: 310px;
    }

    .ecoprod-body {
        padding: 23px;
    }

    .ecoprod-title {
        font-size: 19px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .ecoprod-section {
        padding: 15px 0 50px;
    }

    .ecoprod-image-box {
        height: 300px;
    }

    .ecoprod-body {
        padding: 22px;
    }

    .ecoprod-title {
        min-height: auto;
        font-size: 20px;
    }

    .ecoprod-rating {
        margin-bottom: 17px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575px) {

    .ecoprod-section .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .ecoprod-image-box {
        height: 270px;
    }

    .ecoprod-badge {
        top: 14px;
        left: 14px;

        padding: 8px 12px;
        font-size: 11px;
    }

    .ecoprod-wishlist {
        top: 14px;
        right: 14px;

        width: 42px;
        height: 42px;
    }

    .ecoprod-body {
        padding: 21px;
    }

    .ecoprod-price {
        font-size: 23px;
    }

    .ecoprod-cart {
        min-height: 53px;
        font-size: 16px;
    }

}


/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .ecoprod-image-box {
        height: 235px;
    }

    .ecoprod-title {
        font-size: 18px;
    }

    .ecoprod-body {
        padding: 18px;
    }

    .ecoprod-price {
        font-size: 21px;
    }
}

/* ================= PRIVACY POLICY ================= */

.shop-privacy-section {
    position: relative;
    padding: 100px 0;
    background: var(--shop-light-bg);
    overflow: hidden;
}

.shop-privacy-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(18, 52, 90, 0.05);
    top: -180px;
    right: -120px;
}

.shop-privacy-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.05);
    bottom: -150px;
    left: -100px;
}


/* Heading */

.shop-privacy-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.shop-privacy-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    border-radius: 50px;
   
    color: var(--shop-secondary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 18px;
}

.shop-privacy-heading h1 {
    color: var(--shop-primary);
    font-size: clamp(36px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}

.shop-privacy-heading h1 span {
    color: var(--shop-secondary);
}

.shop-privacy-heading > p {
    max-width: 720px;
    margin: auto;
    color: var(--shop-slate);
    font-size: 16px;
    line-height: 1.8;
}

.shop-privacy-updated {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--shop-slate);
    font-size: 13px;
    font-weight: 600;
}


/* Sidebar */

.shop-privacy-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid var(--shop-card-border);
    border-radius: 22px;
    padding: 25px;
    box-shadow: var(--shop-shadow-sm);
}

.shop-privacy-sidebar h5 {
    color: var(--shop-primary);
    font-weight: 800;
    margin-bottom: 18px;
}

.shop-privacy-sidebar h5 i {
    color: var(--shop-secondary);
}

.shop-privacy-sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    margin-bottom: 5px;
    border-radius: 11px;
    color: var(--shop-slate);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--shop-transition);
}

.shop-privacy-sidebar a span {
    min-width: 28px;
    font-size: 11px;
    font-weight: 800;
    color: var(--shop-secondary);
}

.shop-privacy-sidebar a:hover,
.shop-privacy-sidebar a.active {
    color: var(--shop-primary);
    background: rgba(18, 52, 90, 0.07);
    transform: translateX(4px);
}


/* Security Card */

.shop-privacy-security-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    padding: 22px;
    background: var(--shop-primary);
    border-radius: 20px;
    box-shadow: var(--shop-shadow-lg);
}

.shop-privacy-security-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-accent);
    color: var(--shop-primary);
    font-size: 18px;
}

.shop-privacy-security-card h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
}

.shop-privacy-security-card p {
    color: rgba(255,255,255,.65);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}


/* Content */

.shop-privacy-content {
    background: #fff;
    border: 1px solid var(--shop-card-border);
    border-radius: 24px;
    padding: 15px 35px;
    box-shadow: var(--shop-shadow-sm);
}

.shop-privacy-block {
    display: flex;
    gap: 22px;
    padding: 35px 0;
    border-bottom: 1px solid #eef2f7;
    scroll-margin-top: 100px;
}

.shop-privacy-block:last-child {
    border-bottom: 0;
}

.shop-privacy-number {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(18, 52, 90, 0.08);
    color: var(--shop-secondary);
    font-size: 13px;
    font-weight: 800;
}

.shop-privacy-block h3 {
    color: var(--shop-primary);
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 13px;
}

.shop-privacy-block p {
    color: var(--shop-slate);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 12px;
}


/* List */

.shop-privacy-list {
    padding: 5px 0 0;
    margin: 0;
    list-style: none;
}

.shop-privacy-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--shop-primary);
    font-size: 14px;
    margin-bottom: 11px;
}

.shop-privacy-list li i {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: var(--shop-accent);
    font-size: 10px;
}


/* Mini Cards */

.shop-privacy-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.shop-privacy-mini-grid > div {
    padding: 18px;
    border: 1px solid #edf1f5;
    border-radius: 15px;
    transition: var(--shop-transition);
}

.shop-privacy-mini-grid > div:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 52, 90, 0.25);
    box-shadow: var(--shop-shadow-sm);
}

.shop-privacy-mini-grid i {
    color: var(--shop-secondary);
    font-size: 19px;
    margin-bottom: 12px;
}

.shop-privacy-mini-grid h6 {
    color: var(--shop-primary);
    font-weight: 700;
    margin-bottom: 6px;
}

.shop-privacy-mini-grid p {
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}


/* Highlight */

.shop-privacy-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--shop-accent);
    border-radius: 12px;
    background: #fffbeb;
}

.shop-privacy-highlight > i {
    color: var(--shop-secondary);
    font-size: 23px;
}

.shop-privacy-highlight strong {
    color: var(--shop-primary);
    font-size: 14px;
}

.shop-privacy-highlight p {
    margin: 5px 0 0;
    font-size: 12px;
}


/* Contact */

.shop-privacy-contact {
    background: linear-gradient(
        135deg,
        rgba(18, 52, 90, 0.03),
        rgba(245, 158, 11, 0.04)
    );
    margin: 20px -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 18px;
}

.shop-privacy-contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.shop-privacy-contact-box div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 10px;
    color: var(--shop-primary);
    font-size: 13px;
    font-weight: 600;
}

.shop-privacy-contact-box i {
    color: var(--shop-secondary);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .shop-privacy-section {
        padding: 75px 0;
    }

    .shop-privacy-sidebar {
        position: relative;
        top: auto;
    }

    .shop-privacy-security-card {
        margin-bottom: 25px;
    }

    .shop-privacy-content {
        padding: 10px 25px;
    }
}


@media (max-width: 767px) {

    .shop-privacy-section {
        padding: 55px 0;
    }

    .shop-privacy-heading h1 {
        font-size: 36px;
    }

    .shop-privacy-heading > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .shop-privacy-sidebar {
        padding: 20px;
        border-radius: 18px;
    }

    .shop-privacy-sidebar a {
        padding: 10px;
        font-size: 13px;
    }

    .shop-privacy-content {
        padding: 5px 18px;
        border-radius: 18px;
    }

    .shop-privacy-block {
        gap: 13px;
        padding: 27px 0;
    }

    .shop-privacy-number {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        border-radius: 10px;
        font-size: 11px;
    }

    .shop-privacy-block h3 {
        font-size: 19px;
    }

    .shop-privacy-block p {
        font-size: 13px;
        line-height: 1.75;
    }

    .shop-privacy-mini-grid {
        grid-template-columns: 1fr;
    }

    .shop-privacy-contact {
        margin: 15px -8px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .shop-privacy-contact-box {
        flex-direction: column;
    }

    .shop-privacy-contact-box div {
        width: 100%;
        font-size: 12px;
    }
}


@media (max-width: 575px) {

    .shop-privacy-section {
        padding: 45px 0;
    }

    .shop-privacy-badge {
        font-size: 11px;
        padding: 8px 13px;
    }

    .shop-privacy-heading h1 {
        font-size: 31px;
    }

    .shop-privacy-updated {
        font-size: 11px;
    }

    .shop-privacy-security-card {
        padding: 18px;
    }

    .shop-privacy-security-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .shop-privacy-block {
        display: block;
    }

    .shop-privacy-number {
        margin-bottom: 15px;
    }
}

/* =========================================
   TERMS & CONDITIONS
========================================= */

.shop-terms-section {
    position: relative;
    padding: 100px 0;
    background: var(--shop-light-bg);
    overflow: hidden;
}

.shop-terms-section::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(18, 52, 90, 0.045);
    top: -180px;
    right: -130px;
}

.shop-terms-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.05);
    bottom: -150px;
    left: -100px;
}


/* =========================================
   HEADING
========================================= */

.shop-terms-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.shop-terms-badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    border-radius: 50px;
    /* background: rgba(18, 52, 90, 0.08); */
    color: var(--shop-secondary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.shop-terms-heading h1 {
    color: var(--shop-primary);
    font-size: clamp(36px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.shop-terms-heading h1 span {
    color: var(--shop-secondary);
}

.shop-terms-heading > p {
    max-width: 720px;
    margin: auto;
    color: var(--shop-slate);
    font-size: 16px;
    line-height: 1.8;
}

.shop-terms-date {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--shop-slate);
    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   SIDEBAR MENU
========================================= */

.shop-terms-menu {
    position: sticky;
    top: 100px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--shop-card-border);
    border-radius: 22px;
    box-shadow: var(--shop-shadow-sm);
}

.shop-terms-menu-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--shop-primary);
    font-size: 16px;
    font-weight: 800;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef2f7;
    margin-bottom: 12px;
}

.shop-terms-menu-title i {
    color: var(--shop-secondary);
}

.shop-terms-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    margin-bottom: 5px;
    border-radius: 11px;
    color: var(--shop-slate);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--shop-transition);
}

.shop-terms-menu a span {
    min-width: 28px;
    color: var(--shop-secondary);
    font-size: 11px;
    font-weight: 800;
}

.shop-terms-menu a:hover,
.shop-terms-menu a.active {
    color: var(--shop-primary);
    background: rgba(18, 52, 90, 0.07);
    transform: translateX(4px);
}


/* =========================================
   AGREEMENT CARD
========================================= */

.shop-terms-agreement-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    padding: 22px;
    background: var(--shop-primary);
    border-radius: 20px;
    box-shadow: var(--shop-shadow-lg);
}

.shop-terms-agreement-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: var(--shop-accent);
    color: var(--shop-primary);
    font-size: 18px;
}

.shop-terms-agreement-card h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.shop-terms-agreement-card p {
    color: rgba(255,255,255,.65);
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   MAIN CONTENT
========================================= */

.shop-terms-content {
    padding: 15px 35px;
    background: #fff;
    border: 1px solid var(--shop-card-border);
    border-radius: 24px;
    box-shadow: var(--shop-shadow-sm);
}

.shop-terms-block {
    display: flex;
    gap: 22px;
    padding: 35px 0;
    border-bottom: 1px solid #eef2f7;
    scroll-margin-top: 100px;
}

.shop-terms-block:last-child {
    border-bottom: 0;
}

.shop-terms-number {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(18, 52, 90, 0.08);
    color: var(--shop-secondary);
    font-size: 13px;
    font-weight: 800;
}

.shop-terms-text {
    flex: 1;
}

.shop-terms-text h3 {
    color: var(--shop-primary);
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 13px;
}

.shop-terms-text p {
    color: var(--shop-slate);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 12px;
}


/* =========================================
   NOTE
========================================= */

.shop-terms-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 15px 17px;
    border-radius: 12px;
    background: #fffbeb;
    border-left: 4px solid var(--shop-accent);
    color: var(--shop-primary);
    font-size: 13px;
}

.shop-terms-note i {
    color: var(--shop-accent);
    font-size: 18px;
}


/* =========================================
   LIST
========================================= */

.shop-terms-list {
    padding: 5px 0 0;
    margin: 0;
    list-style: none;
}

.shop-terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--shop-primary);
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.shop-terms-list li i {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    color: var(--shop-accent);
    font-size: 9px;
}


/* =========================================
   PAYMENT FEATURE CARDS
========================================= */

.shop-terms-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.shop-terms-feature {
    padding: 20px;
    border: 1px solid #edf1f5;
    border-radius: 15px;
    transition: var(--shop-transition);
}

.shop-terms-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 52, 90, 0.25);
    box-shadow: var(--shop-shadow-sm);
}

.shop-terms-feature i {
    color: var(--shop-secondary);
    font-size: 20px;
    margin-bottom: 12px;
}

.shop-terms-feature h6 {
    color: var(--shop-primary);
    font-weight: 700;
    margin-bottom: 7px;
}

.shop-terms-feature p {
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================
   HIGHLIGHT
========================================= */

.shop-terms-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-top: 20px;
    border-radius: 13px;
    background: rgba(18, 52, 90, 0.045);
    border-left: 4px solid var(--shop-secondary);
}

.shop-terms-highlight > i {
    color: var(--shop-secondary);
    font-size: 22px;
}

.shop-terms-highlight strong {
    color: var(--shop-primary);
    font-size: 14px;
}

.shop-terms-highlight p {
    margin: 5px 0 0;
    font-size: 12px;
}


/* =========================================
   RETURNS
========================================= */

.shop-terms-return-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.shop-terms-return-box div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 100px;
    padding: 15px;
    text-align: center;
    border: 1px solid #edf1f5;
    border-radius: 14px;
    color: var(--shop-primary);
    font-size: 12px;
    font-weight: 700;
    transition: var(--shop-transition);
}

.shop-terms-return-box div:hover {
    transform: translateY(-4px);
    box-shadow: var(--shop-shadow-sm);
}

.shop-terms-return-box i {
    color: var(--shop-secondary);
    font-size: 20px;
}


/* =========================================
   UPDATE BOX
========================================= */

.shop-terms-update {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-top: 18px;
    border-radius: 13px;
    background: #f8fafc;
    border: 1px solid #edf1f5;
}

.shop-terms-update > i {
    color: var(--shop-accent);
    font-size: 21px;
}

.shop-terms-update strong {
    color: var(--shop-primary);
    font-size: 14px;
}

.shop-terms-update p {
    margin: 5px 0 0;
    font-size: 12px;
}


/* =========================================
   CONTACT
========================================= */

.shop-terms-contact {
    margin: 20px -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(18, 52, 90, 0.03),
        rgba(245, 158, 11, 0.04)
    );
}

.shop-terms-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.shop-terms-contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 10px;
    color: var(--shop-primary);
    font-size: 13px;
    font-weight: 600;
}

.shop-terms-contact-info i {
    color: var(--shop-secondary);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .shop-terms-section {
        padding: 75px 0;
    }

    .shop-terms-menu {
        position: relative;
        top: auto;
    }

    .shop-terms-agreement-card {
        margin-bottom: 25px;
    }

    .shop-terms-content {
        padding: 10px 25px;
    }
}


@media (max-width: 767px) {

    .shop-terms-section {
        padding: 55px 0;
    }

    .shop-terms-heading h1 {
        font-size: 36px;
    }

    .shop-terms-heading > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .shop-terms-menu {
        padding: 20px;
        border-radius: 18px;
    }

    .shop-terms-menu a {
        padding: 10px;
        font-size: 12px;
    }

    .shop-terms-content {
        padding: 5px 18px;
        border-radius: 18px;
    }

    .shop-terms-block {
        gap: 13px;
        padding: 27px 0;
    }

    .shop-terms-number {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        border-radius: 10px;
        font-size: 11px;
    }

    .shop-terms-text h3 {
        font-size: 19px;
    }

    .shop-terms-text p {
        font-size: 13px;
        line-height: 1.75;
    }

    .shop-terms-feature-grid {
        grid-template-columns: 1fr;
    }

    .shop-terms-return-box {
        grid-template-columns: 1fr;
    }

    .shop-terms-contact {
        margin: 15px -8px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .shop-terms-contact-info {
        flex-direction: column;
    }

    .shop-terms-contact-info div {
        width: 100%;
    }
}


@media (max-width: 575px) {

    .shop-terms-section {
        padding: 45px 0;
    }

    .shop-terms-badge {
        font-size: 11px;
        padding: 8px 13px;
    }

    .shop-terms-heading h1 {
        font-size: 31px;
    }

    .shop-terms-date {
        font-size: 11px;
    }

    .shop-terms-agreement-card {
        padding: 18px;
    }

    .shop-terms-agreement-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .shop-terms-block {
        display: block;
    }

    .shop-terms-number {
        margin-bottom: 15px;
    }

    .shop-terms-note {
        align-items: flex-start;
        font-size: 12px;
    }
}

/* ===============
Delete Account
================== */
/* =========================================================
   DELETE ACCOUNT PAGE
   LIGHT PREMIUM E-COMMERCE THEME
========================================================= */

.shop-delete-page {
    --delete-primary: var(--shop-primary, #071A33);
    --delete-secondary: var(--shop-secondary, #12345A);
    --delete-accent: var(--shop-accent, #f59e0b);
    --delete-slate: var(--shop-slate, #64748b);
    --delete-light: var(--shop-light-bg, #f8fafc);
    --delete-border: var(
        --shop-card-border,
        rgba(226, 232, 240, 0.8)
    );
    --delete-transition: var(
        --shop-transition,
        all 0.4s cubic-bezier(0.16, 1, 0.3, 1)
    );

    width: 100%;
    background: #ffffff;
    color: var(--delete-primary);
    overflow: hidden;
}


/* =========================================================
   HERO SECTION
========================================================= */

.shop-delete-hero {
    position: relative;
    padding: 90px 0 115px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(18, 52, 90, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(245, 158, 11, 0.08),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fffaf4 52%,
            #f8fafc 100%
        );
    border-bottom: 1px solid var(--delete-border);
    overflow: hidden;
}


/* Decorative circle */

.shop-delete-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -190px;
    top: -250px;
    border-radius: 50%;
    border: 1px solid rgba(18, 52, 90, 0.12);
    box-shadow:
        0 0 0 35px rgba(18, 52, 90, 0.025),
        0 0 0 70px rgba(245, 158, 11, 0.025);
    pointer-events: none;
}


/* Decorative circle */

.shop-delete-hero::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    left: -110px;
    bottom: -145px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.06);
    pointer-events: none;
}


.shop-delete-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}


/* =========================================================
   BADGE
========================================================= */

.shop-delete-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 18px;
    margin-bottom: 20px;
    /* border: 1px solid rgba(18, 52, 90, 0.25); */
    border-radius: 50px;
    /* background: rgba(18, 52, 90, 0.055); */
    color: var(--delete-secondary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.shop-delete-badge i {
    font-size: 11px;
}


/* =========================================================
   HERO TITLE
========================================================= */

.shop-delete-hero h1 {
    margin: 0;
    color: var(--delete-primary);
    font-size: clamp(38px, 5.5vw, 44px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
}


.shop-delete-hero h1 span {
    color: var(--delete-secondary);
}


.shop-delete-hero p {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--delete-slate);
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.shop-delete-content-section {
    position: relative;
    z-index: 5;
    margin-top: -60px;
    padding: 0 0 100px;
}


.shop-delete-main-card {
    width: 100%;
    padding: 38px;
    background: #ffffff;
    border: 1px solid var(--delete-border);
    border-radius: 25px;
    box-shadow: var(
        --shop-shadow-lg,
        0 20px 25px -5px rgba(7, 26, 51, 0.08),
        0 10px 10px -5px rgba(7, 26, 51, 0.03)
    );
}


/* =========================================================
   INTRO BOX
========================================================= */

.shop-delete-intro {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 23px;
    margin-bottom: 8px;
    background: var(--delete-light);
    border: 1px solid #edf1f5;
    border-radius: 17px;
}


.shop-delete-main-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(18, 52, 90, 0.09);
    color: var(--delete-secondary);
    font-size: 22px;
}


.shop-delete-intro h4 {
    margin: 0 0 6px;
    color: var(--delete-primary);
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
}


.shop-delete-intro p {
    margin: 0;
    color: var(--delete-slate);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.shop-delete-section {
    padding: 38px 5px;
    border-bottom: 1px solid #edf1f5;
}


.shop-delete-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}


.shop-delete-title-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(18, 52, 90, 0.07);
    color: var(--delete-secondary);
    font-size: 17px;
}


.shop-delete-title div span {
    display: block;
    margin-bottom: 4px;
    color: var(--delete-secondary);
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.3px;
}


.shop-delete-title h3 {
    margin: 0;
    color: var(--delete-primary);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   DELETION STEPS
========================================================= */

.shop-delete-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 17px 0;
}


.shop-delete-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 58px;
    bottom: -2px;
    width: 1px;
    background: #e6ebf0;
}


.shop-delete-step-number {
    position: relative;
    z-index: 2;
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--delete-primary);
    color: var(--delete-accent);
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(7, 26, 51, 0.08);
}


.shop-delete-step-content {
    padding-top: 1px;
}


.shop-delete-step-content h5 {
    margin: 2px 0 7px;
    color: var(--delete-primary);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}


.shop-delete-step-content p {
    max-width: 680px;
    margin: 0;
    color: var(--delete-slate);
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   EMAIL TEMPLATE
========================================================= */

.shop-delete-email-wrapper {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe5eb;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(7, 26, 51, 0.025);
}


.shop-delete-email-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 17px;
    background: var(--delete-light);
    border-bottom: 1px solid #e5eaf0;
    color: var(--delete-primary);
    font-size: 12px;
    font-weight: 800;
}


.shop-delete-email-header span {
    display: flex;
    align-items: center;
}


.shop-delete-email-header span i {
    color: var(--delete-secondary);
}


.shop-delete-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: 1px solid rgba(18, 52, 90, 0.3);
    border-radius: 7px;
    background: #ffffff;
    color: var(--delete-secondary);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--delete-transition);
}


.shop-delete-copy-btn:hover {
    background: var(--delete-secondary);
    border-color: var(--delete-secondary);
    color: #ffffff;
    transform: translateY(-1px);
}


.shop-delete-email-content {
    padding: 21px;
    background: #ffffff;
}


.shop-delete-email-content p {
    margin: 0 0 7px;
    color: var(--delete-slate);
    font-size: 12px;
    line-height: 1.65;
}


.shop-delete-email-content strong {
    color: var(--delete-primary);
    font-weight: 750;
}


/* =========================================================
   SEND INFO
========================================================= */

.shop-delete-send-info {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    color: var(--delete-slate);
    font-size: 12px;
    line-height: 1.5;
}


.shop-delete-send-info i {
    color: var(--delete-secondary);
}


.shop-delete-send-info strong {
    color: var(--delete-secondary);
}


/* =========================================================
   DATA GRID
========================================================= */

.shop-delete-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}


.shop-delete-data-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-height: 105px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #edf1f5;
    border-radius: 15px;
    transition: var(--delete-transition);
}


.shop-delete-data-item:hover {
    transform: translateY(-4px);
    border-color: rgba(18, 52, 90, 0.2);
    box-shadow: var(
        --shop-shadow-sm,
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03)
    );
}


.shop-delete-data-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--delete-accent);
    font-size: 15px;
}


.shop-delete-data-item h6 {
    margin: 1px 0 5px;
    color: var(--delete-primary);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}


.shop-delete-data-item p {
    margin: 0;
    color: var(--delete-slate);
    font-size: 11px;
    line-height: 1.65;
}


/* =========================================================
   RETAIN DATA BOX
========================================================= */

.shop-delete-retain-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 25px;
    padding: 20px;
    background: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-left: 4px solid var(--delete-accent);
    border-radius: 14px;
}


.shop-delete-retain-icon {
    flex: 0 0 auto;
    color: var(--delete-accent);
    font-size: 19px;
}


.shop-delete-retain-box h5 {
    margin: 0 0 6px;
    color: var(--delete-primary);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
}


.shop-delete-retain-box p {
    margin: 0;
    color: var(--delete-slate);
    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   WARNING BOX
========================================================= */

.shop-delete-warning {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 30px 5px;
    padding: 20px;
    background: rgba(18, 52, 90, 0.045);
    border: 1px solid rgba(18, 52, 90, 0.13);
    border-radius: 15px;
}


.shop-delete-warning-icon {
    flex: 0 0 auto;
    color: var(--delete-secondary);
    font-size: 20px;
}


.shop-delete-warning h5 {
    margin: 0 0 6px;
    color: var(--delete-primary);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
}


.shop-delete-warning p {
    margin: 0;
    color: var(--delete-slate);
    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT SUPPORT
========================================================= */

.shop-delete-contact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 15px;
    padding: 27px;
    background:
        linear-gradient(
            135deg,
            rgba(18, 52, 90, 0.055),
            rgba(245, 158, 11, 0.07)
        );
    border: 1px solid rgba(18, 52, 90, 0.13);
    border-radius: 19px;
}


.shop-delete-contact-icon {
    width: 51px;
    height: 51px;
    flex: 0 0 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--delete-secondary);
    color: #ffffff;
    font-size: 19px;
    box-shadow: 0 8px 18px rgba(18, 52, 90, 0.15);
}


.shop-delete-contact > div:last-child > span {
    display: block;
    color: var(--delete-secondary);
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.3px;
}


.shop-delete-contact h3 {
    margin: 6px 0 8px;
    color: var(--delete-primary);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}


.shop-delete-contact p {
    max-width: 620px;
    margin: 0;
    color: var(--delete-slate);
    font-size: 12px;
    line-height: 1.75;
}


.shop-delete-contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 17px;
}


.shop-delete-contact-details a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 8px;
    color: var(--delete-primary);
    text-decoration: none;
    font-size: 11px;
    line-height: 1.3;
    transition: var(--delete-transition);
}


.shop-delete-contact-details a:hover {
    background: var(--delete-secondary);
    border-color: var(--delete-secondary);
    color: #ffffff;
    transform: translateY(-2px);
}


.shop-delete-contact-details a i {
    color: var(--delete-secondary);
}


.shop-delete-contact-details a:hover i {
    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .shop-delete-hero {
        padding: 75px 0 100px;
    }

    .shop-delete-content-section {
        margin-top: -50px;
    }

    .shop-delete-main-card {
        padding: 30px;
        border-radius: 22px;
    }

    .shop-delete-hero h1 {
        font-size: clamp(38px, 7vw, 56px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .shop-delete-hero {
        padding: 65px 0 85px;
    }

    .shop-delete-hero::before {
        width: 280px;
        height: 280px;
        right: -150px;
        top: -180px;
    }

    .shop-delete-hero-content {
        padding: 0 15px;
    }

    .shop-delete-hero h1 {
        font-size: 43px;
        letter-spacing: -1.2px;
    }

    .shop-delete-hero p {
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.75;
    }

    .shop-delete-content-section {
        margin-top: -38px;
        padding-bottom: 65px;
    }

    .shop-delete-main-card {
        padding: 22px;
        border-radius: 20px;
    }

    .shop-delete-intro {
        padding: 18px;
    }

    .shop-delete-section {
        padding: 30px 2px;
    }

    .shop-delete-title h3 {
        font-size: 19px;
    }

    .shop-delete-data-grid {
        grid-template-columns: 1fr;
    }

    .shop-delete-data-item {
        min-height: auto;
    }

    .shop-delete-contact {
        padding: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .shop-delete-hero {
        padding: 55px 0 75px;
    }

    .shop-delete-badge {
        padding: 7px 14px;
        font-size: 9px;
    }

    .shop-delete-hero h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .shop-delete-hero p {
        font-size: 12px;
    }

    .shop-delete-content-section {
        margin-top: -30px;
    }

    .shop-delete-main-card {
        padding: 15px;
        border-radius: 17px;
    }

    .shop-delete-intro {
        display: block;
        padding: 17px;
    }

    .shop-delete-main-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 13px;
        font-size: 18px;
    }

    .shop-delete-intro h4 {
        font-size: 17px;
    }

    .shop-delete-intro p {
        font-size: 11px;
    }

    .shop-delete-section {
        padding: 27px 1px;
    }

    .shop-delete-title {
        gap: 11px;
        margin-bottom: 20px;
    }

    .shop-delete-title-icon {
        width: 41px;
        height: 41px;
        flex-basis: 41px;
        border-radius: 11px;
        font-size: 15px;
    }

    .shop-delete-title div span {
        font-size: 8px;
    }

    .shop-delete-title h3 {
        font-size: 17px;
    }

    .shop-delete-step {
        gap: 12px;
        padding: 15px 0;
    }

    .shop-delete-step-number {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 10px;
        font-size: 8px;
    }

    .shop-delete-step:not(:last-child)::after {
        left: 18px;
        top: 51px;
    }

    .shop-delete-step-content h5 {
        margin-top: 1px;
        font-size: 13px;
    }

    .shop-delete-step-content p {
        font-size: 11px;
        line-height: 1.7;
    }

    .shop-delete-email-header {
        padding: 11px 12px;
        font-size: 10px;
    }

    .shop-delete-copy-btn {
        padding: 5px 9px;
        font-size: 9px;
    }

    .shop-delete-email-content {
        padding: 15px;
    }

    .shop-delete-email-content p {
        font-size: 11px;
    }

    .shop-delete-send-info {
        align-items: flex-start;
        font-size: 10px;
    }

    .shop-delete-data-item {
        gap: 11px;
        padding: 15px;
    }

    .shop-delete-data-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 13px;
    }

    .shop-delete-data-item h6 {
        font-size: 12px;
    }

    .shop-delete-data-item p {
        font-size: 10px;
    }

    .shop-delete-retain-box {
        gap: 11px;
        padding: 16px;
    }

    .shop-delete-retain-box h5 {
        font-size: 13px;
    }

    .shop-delete-retain-box p {
        font-size: 10px;
        line-height: 1.7;
    }

    .shop-delete-warning {
        gap: 11px;
        margin: 24px 1px;
        padding: 16px;
    }

    .shop-delete-warning-icon {
        font-size: 17px;
    }

    .shop-delete-warning h5 {
        font-size: 13px;
    }

    .shop-delete-warning p {
        font-size: 10px;
        line-height: 1.7;
    }

    .shop-delete-contact {
        display: block;
        padding: 20px;
    }

    .shop-delete-contact-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 14px;
        font-size: 17px;
    }

    .shop-delete-contact h3 {
        font-size: 17px;
    }

    .shop-delete-contact p {
        font-size: 10px;
    }

    .shop-delete-contact-details {
        flex-direction: column;
        gap: 8px;
    }

    .shop-delete-contact-details a {
        width: 100%;
        justify-content: flex-start;
        font-size: 10px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    .shop-delete-hero h1 {
        font-size: 32px;
    }

    .shop-delete-main-card {
        padding: 12px;
    }

    .shop-delete-title h3 {
        font-size: 16px;
    }

    .shop-delete-contact {
        padding: 17px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .shop-delete-page *,
    .shop-delete-page *::before,
    .shop-delete-page *::after {
        transition: none !important;
        animation: none !important;
    }

}

/* =========================================================
   BRAND UTILITIES
   The markup uses Tailwind-style class names that Bootstrap
   does not ship; they are mapped to the logo palette here.
========================================================= */

.text-navy { color: var(--shop-primary) !important; }
.bg-navy { background-color: var(--shop-primary) !important; }
.border-navy { border-color: var(--shop-primary) !important; }

.text-emerald-400,
.text-emerald-450,
.text-emerald-500,
.text-emerald-600,
.text-emerald-700,
.text-amber-400,
.text-amber-600 { color: var(--shop-accent-dark) !important; }

.shop-footer .text-emerald-450,
.shop-footer .text-emerald-500 { color: var(--shop-accent) !important; }

.bg-emerald-500,
.bg-amber-500 {
    background: var(--shop-gold-gradient) !important;
    color: var(--shop-primary) !important;
}

.border-emerald-500 { border-color: var(--shop-accent) !important; }

.bg-emerald-100,
.bg-amber-100 { background-color: rgba(245, 166, 35, 0.14) !important; }

.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-slate-500 { color: #64748b !important; }
.text-slate-600 { color: #475569 !important; }
.text-slate-700 { color: #334155 !important; }
.text-slate-800 { color: #1e2a3b !important; }
.text-slate-900 { color: var(--shop-primary) !important; }

.bg-slate-50 { background-color: #f6f8fb !important; }
.bg-slate-900 { background: var(--shop-navy-gradient) !important; }
.border-slate-100 { border-color: #f1f5f9 !important; }
.border-slate-200 { border-color: #e2e8f0 !important; }

.fw-extrabold { font-weight: 800 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.tracking-tight { letter-spacing: -0.02em; }
.leading-tight { line-height: 1.15 !important; }
.leading-relaxed { line-height: 1.7 !important; }
.uppercase { text-transform: uppercase; }
.whitespace-nowrap { white-space: nowrap; }

.text-xs { font-size: 0.75rem !important; }
.text-sm { font-size: 0.875rem !important; }
.text-base { font-size: 1rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }

.flex { display: flex; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }

.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-12 { width: 3rem; } .h-12 { height: 3rem; }
.w-14 { width: 3.5rem; } .h-14 { height: 3.5rem; }
.w-full { width: 100%; }

.max-w-xs { max-width: 20rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }
.rounded-3xl { border-radius: 1.5rem !important; }
.rounded-full { border-radius: 9999px !important; }

.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(7, 26, 51, 0.25) !important; }

.z-10 { position: relative; z-index: 10; }

.shop-feature-icon {
    background: rgba(245, 166, 35, 0.14);
    color: var(--shop-accent-dark);
}

.shop-feature-box:hover .shop-feature-icon {
    background: var(--shop-gold-gradient);
    color: var(--shop-primary);
}

.shop-promo-banner::after {
    background: radial-gradient(circle, rgba(245, 166, 35, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
}

.shop-hero h1 .text-emerald-500 {
    background: var(--shop-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecoprod-cart:hover { color: var(--shop-primary); }

::selection {
    background: var(--shop-accent);
    color: var(--shop-primary);
}


/* =========================================================
   GOOGLE PLAY STORE BUTTON
========================================================= */

.shop-playstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 22px 9px 16px;
    background: var(--shop-primary);
    color: #ffffff;
    border: 1.5px solid rgba(245, 166, 35, 0.55);
    border-radius: 14px;
    text-decoration: none;
    line-height: 1.1;
    transition: var(--shop-transition);
    box-shadow: 0 10px 22px -10px rgba(7, 26, 51, 0.55);
}

.shop-playstore-btn:hover {
    color: #ffffff;
    border-color: var(--shop-accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 28px -10px rgba(245, 166, 35, 0.45);
}

.shop-playstore-btn svg {
    width: 26px;
    height: 28px;
    flex: 0 0 auto;
}

.shop-playstore-btn small {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.shop-playstore-btn strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.shop-playstore-btn--light {
    background: #ffffff;
    color: var(--shop-primary);
}

.shop-playstore-btn--light:hover { color: var(--shop-primary); }
.shop-playstore-btn--light small { color: var(--shop-slate); }

.shop-playstore-btn--sm {
    gap: 8px;
    padding: 6px 14px 6px 10px;
    border-radius: 11px;
}

.shop-playstore-btn--sm svg { width: 18px; height: 20px; }
.shop-playstore-btn--sm small { font-size: 8px; }
.shop-playstore-btn--sm strong { font-size: 13px; }


/* =========================================================
   APP DOWNLOAD SECTION
========================================================= */

.shop-app-section {
    padding: 40px 0 80px;
}

.shop-app-card {
    position: relative;
    overflow: hidden;
    padding: 60px 56px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 166, 35, 0.28) 0%, rgba(245, 166, 35, 0) 45%),
        var(--shop-navy-gradient);
    color: #ffffff;
}

.shop-app-card::before {
    content: "";
    position: absolute;
    left: -60px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(245, 166, 35, 0.25);
    box-shadow: 0 0 0 40px rgba(245, 166, 35, 0.04);
    pointer-events: none;
}

.shop-app-card h2 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.shop-app-card h2 span {
    color: var(--shop-accent);
}

.shop-app-card p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.75;
    max-width: 520px;
}

.shop-app-points {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
}

.shop-app-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.shop-app-points li i {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.18);
    color: var(--shop-accent);
    font-size: 11px;
}

.shop-app-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-app-phone {
    position: relative;
    z-index: 2;
    width: 230px;
    padding: 12px;
    border-radius: 36px;
    background: #0b1424;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6),
                0 0 0 2px rgba(245, 166, 35, 0.35);
}

.shop-app-phone-screen {
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    padding: 34px 18px 26px;
    text-align: center;
    color: var(--shop-primary);
}

.shop-app-phone-screen img {
    width: 110px;
    height: auto;
    margin-bottom: 14px;
}

.shop-app-phone-screen h6 {
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.shop-app-phone-screen p {
    color: var(--shop-slate);
    font-size: 11px;
    margin: 0 auto 18px;
}

.shop-app-phone-bar {
    height: 10px;
    border-radius: 6px;
    background: #e8edf3;
    margin-bottom: 9px;
}

.shop-app-phone-bar.is-gold {
    width: 70%;
    background: var(--shop-gold-gradient);
}

.shop-app-phone-bar.is-short { width: 50%; }

.shop-app-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.35) 0%, rgba(245, 166, 35, 0) 70%);
}

@media (max-width: 991.98px) {
    .shop-app-card {
        padding: 44px 30px;
        text-align: center;
    }

    .shop-app-card p { margin-left: auto; margin-right: auto; }

    .shop-app-points {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .shop-app-card {
        padding: 36px 20px;
        border-radius: 24px;
    }

    .shop-app-points { grid-template-columns: 1fr; }

    .shop-app-phone { width: 200px; }
}


/* =========================================================
   REFER / SPONSOR INVITE PAGE
========================================================= */

.shop-refer-section {
    padding: 10px 0 90px;
}

.shop-refer-card {
    max-width: 460px;
    margin: 0 auto;
    padding: 40px 32px 32px;
    background: #ffffff;
    border: 1px solid var(--shop-card-border);
    border-top: 4px solid var(--shop-accent);
    border-radius: 24px;
    box-shadow: var(--shop-shadow-lg);
    text-align: center;
}

.shop-refer-mark {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 25px -8px rgba(7, 26, 51, 0.25),
                0 0 0 1px rgba(245, 166, 35, 0.35);
}

.shop-refer-mark img {
    width: 100%;
    height: auto;
}

.shop-refer-title {
    margin: 0 0 10px;
    color: var(--shop-primary);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.shop-refer-text {
    margin: 0 auto;
    max-width: 340px;
    color: var(--shop-slate);
    font-size: 15px;
    line-height: 1.65;
}

.shop-refer-meta {
    margin: 24px 0;
    padding: 16px;
    border: 1.5px dashed rgba(245, 166, 35, 0.6);
    border-radius: 14px;
    background: rgba(245, 166, 35, 0.07);
}

.shop-refer-meta small {
    display: block;
    margin-bottom: 4px;
    color: var(--shop-slate);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.shop-refer-meta strong {
    color: var(--shop-primary);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.5px;
    word-break: break-all;
}

.shop-refer-card .shop-playstore-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 575.98px) {
    .shop-refer-section { padding-bottom: 60px; }

    .shop-refer-card {
        padding: 32px 20px 24px;
        border-radius: 20px;
    }

    .shop-refer-title { font-size: 24px; }
}
