:root {
            --ground:       #F8F5EE;
            --ground-alt:   #F0EDE4;
            --text:         #1C1C1A;
            --text-muted:   #6B6760;
            --forest:       #2A5C45;
            --forest-dark:  #1A3D2E;
            --forest-light: #EAF2EB;
            --amber:        #D4872A;
            --amber-light:  #FBF0E3;
            --amber-dark:   #B5711E;
            --sage:         #8BAD7A;
            --border:       #E4DFCF;
            --white:        #FFFFFF;
            --card-radius:  14px;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', system-ui, sans-serif;
            background: var(--ground);
            color: var(--text);
            font-size: 15px;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, .serif { font-family: 'Playfair Display', Georgia, serif; }

        a { color: inherit; text-decoration: none; }

        /* ── Announcement bar ── */
        .announce-bar {
            background: var(--forest-dark);
            color: rgba(255,255,255,.88);
            text-align: center;
            font-size: 12.5px;
            padding: 9px 16px;
            letter-spacing: .3px;
        }
        .announce-bar strong { color: #FFC84A; }

        /* ── Navbar ── */
        .navbar-main {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 0 2rem;
            height: 68px;
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--forest);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .nav-brand .leaf-icon {
            width: 28px;
            height: 28px;
            background: var(--forest);
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            display: inline-block;
            flex-shrink: 0;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: .15rem;
            flex: 1;
            list-style: none;
        }
        .nav-links li a {
            padding: 8px 14px;
            font-size: 13.5px;
            font-weight: 500;
            color: var(--text);
            border-radius: 6px;
            transition: background .15s, color .15s;
            white-space: nowrap;
        }
        .nav-links li a:hover { background: var(--forest-light); color: var(--forest); }
        .nav-links li a.active { color: var(--forest); font-weight: 600; }

        .nav-search {
            position: relative;
            flex: 0 1 260px;
        }
        .nav-search input {
            width: 100%;
            padding: 8px 16px 8px 38px;
            border: 1.5px solid var(--border);
            border-radius: 100px;
            background: var(--ground);
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: var(--text);
            outline: none;
            transition: border-color .2s;
        }
        .nav-search input:focus { border-color: var(--forest); background: var(--white); }
        .nav-search .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }
        .nav-icon-btn {
            position: relative;
            padding: 8px 10px;
            border-radius: 8px;
            color: var(--text);
            font-size: 1.15rem;
            transition: background .15s, color .15s;
            border: none;
            background: none;
            cursor: pointer;
        }
        .nav-icon-btn:hover { background: var(--forest-light); color: var(--forest); }
        .cart-badge {
            position: absolute;
            top: 2px; right: 2px;
            background: var(--amber);
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            border-radius: 50%;
            width: 17px; height: 17px;
            display: flex; align-items: center; justify-content: center;
            line-height: 1;
        }

        .btn-nav-cta {
            background: var(--forest);
            color: var(--white);
            border: none;
            padding: 8px 18px;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: background .15s;
            white-space: nowrap;
        }
        .btn-nav-cta:hover { background: var(--forest-dark); }

        /* Dropdown */
        .nav-dropdown { position: relative; }
        .nav-dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--card-radius);
            box-shadow: 0 8px 32px rgba(0,0,0,.12);
            min-width: 220px;
            overflow: hidden;
            z-index: 100;
        }
        .nav-dropdown:hover .nav-dropdown-menu { display: block; }
        .nav-dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 18px;
            font-size: 14px;
            color: var(--text);
            transition: background .1s;
            border-bottom: 1px solid var(--border);
        }
        .nav-dropdown-menu a:last-child { border-bottom: none; }
        .nav-dropdown-menu a:hover { background: var(--forest-light); color: var(--forest); }
        .nav-dropdown-menu a.danger { color: #C0392B; }
        .nav-dropdown-menu a.danger:hover { background: #fef0ef; }
        .nav-dropdown-menu hr { border-color: var(--border); margin: 0; }

        /* ── Global buttons ── */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--amber);
            color: var(--white);
            border: none;
            padding: 13px 28px;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s, transform .15s;
        }
        .btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--forest);
            border: 1.5px solid var(--forest);
            padding: 12px 26px;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s, color .2s, transform .15s;
        }
        .btn-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-1px); }

        .btn-forest {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--forest);
            color: var(--white);
            border: none;
            padding: 13px 28px;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: background .2s, transform .15s;
        }
        .btn-forest:hover { background: var(--forest-dark); transform: translateY(-1px); }

        .btn-sm {
            padding: 8px 18px !important;
            font-size: 13px !important;
        }

        /* ── Toast / flash ── */
        .flash-bar {
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
        }
        .flash-success { background: #E8F5E9; color: #1B5E20; border-bottom: 2px solid #4CAF50; }
        .flash-error   { background: #FFEBEE; color: #B71C1C; border-bottom: 2px solid #EF5350; }

        /* ── Section scaffold ── */
        .section { padding: 72px 0; }
        .section-alt { background: var(--ground-alt); }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .container-lg { max-width: 1360px; margin: 0 auto; padding: 0 24px; }

        .section-head { margin-bottom: 44px; }
        .section-head .eyebrow {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--amber);
            margin-bottom: 10px;
        }
        .section-head h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: var(--text);
            line-height: 1.2;
        }
        .section-head p {
            color: var(--text-muted);
            margin-top: 10px;
            max-width: 520px;
            font-size: 15px;
        }

        /* ── Footer ── */
        .site-footer {
            background: var(--forest-dark);
            color: rgba(255,255,255,.72);
            padding: 64px 0 0;
        }
        .footer-brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-brand-name .leaf-icon {
            width: 24px; height: 24px;
            background: var(--sage);
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            display: inline-block;
            flex-shrink: 0;
        }
        .footer-tagline { font-size: 13px; margin-top: 10px; line-height: 1.6; max-width: 240px; }
        .footer-col h6 {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,.45);
            margin-bottom: 18px;
            font-weight: 600;
        }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { color: rgba(255,255,255,.72); font-size: 14px; transition: color .15s; }
        .footer-col ul li a:hover { color: var(--white); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.1);
            margin-top: 52px;
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12.5px;
            color: rgba(255,255,255,.4);
            flex-wrap: wrap;
            gap: 10px;
        }
        .pay-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
        .pay-icon {
            background: rgba(255,255,255,.12);
            border-radius: 6px;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 600;
            color: rgba(255,255,255,.8);
            letter-spacing: .5px;
        }

        /* ── Mobile hamburger ── */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 4px;
            border: none;
            background: none;
        }
        .hamburger span {
            display: block;
            width: 22px; height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: .2s;
        }
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--white);
            z-index: 999;
            padding: 20px 24px;
            overflow-y: auto;
        }
        .mobile-menu.open { display: block; }

        @media (max-width: 900px) {
            .hamburger { display: flex; }
            .nav-links, .nav-search { display: none; }
            .navbar-main { padding: 0 20px; gap: 0; justify-content: space-between; }
            .nav-brand { font-size: 1.2rem; }
        }

        /* ── Misc utils ── */
        .text-forest { color: var(--forest); }
        .text-amber  { color: var(--amber); }
        .text-muted  { color: var(--text-muted); }
        .fw-600 { font-weight: 600; }

        /* Pagination */
        .pagination-wrap { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-top: 40px; }
        .pagination-wrap a, .pagination-wrap span {
            display: inline-flex; align-items: center; justify-content: center;
            width: 38px; height: 38px;
            border-radius: 8px;
            font-size: 13px; font-weight: 500;
            border: 1.5px solid var(--border);
            color: var(--text);
            transition: all .15s;
        }
        .pagination-wrap a:hover { border-color: var(--forest); color: var(--forest); background: var(--forest-light); }
        .pagination-wrap .active { background: var(--forest); color: var(--white); border-color: var(--forest); }

        @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ==========================================================================
   PAGE SPECIFIC STYLES (EXTRACTED)
   ========================================================================== */

/* --- Component: home.blade.php --- */
/* ── Hero ── */
    .hero {
        background: var(--forest-dark);
        min-height: 540px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow: hidden;
        position: relative;
    }
    .hero-slides {
        position: relative;
        z-index: 2;
    }
    .hero-slide {
        display: none;
        flex-direction: column;
        justify-content: center;
        padding: 80px 60px 80px 72px;
        min-height: 540px;
        animation: heroSlideIn .5s ease;
    }
    .hero-slide.is-active { display: flex; }
    @keyframes heroSlideIn {
        from { opacity: 0; transform: translateY(8px); }
        to { opacity: 1; transform: none; }
    }

    .hero-dots {
        position: absolute;
        bottom: 22px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 3;
    }
    .hero-dot {
        width: 8px;
        height: 8px;
        border-radius: 50px;
        background: rgba(255,255,255,.35);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background .2s, width .2s;
    }
    .hero-dot:hover { background: rgba(255,255,255,.6); }
    .hero-dot.is-active { background: var(--white); width: 22px; }
    .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--sage);
        margin-bottom: 20px;
    }
    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 28px; height: 1.5px;
        background: var(--sage);
    }
    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.2rem, 5vw, 3.6rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.12;
        margin-bottom: 22px;
    }
    .hero-title em {
        font-style: italic;
        color: #A8D5A2;
    }
    .hero-body {
        font-size: 15.5px;
        color: rgba(255,255,255,.72);
        line-height: 1.7;
        max-width: 380px;
        margin-bottom: 36px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    .hero-right {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .hero-canvas-wrap {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 540px;
    }
    #heroCanvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }
    .hero-product-card {
        display: none;
        position: absolute;
        bottom: 40px;
        right: 40px;
        background: rgba(255,255,255,.12);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,.2);
        border-radius: 16px;
        padding: 16px 20px;
        color: var(--white);
        font-size: 13px;
        text-align: center;
        min-width: 140px;
        animation: heroSlideIn .5s ease;
    }
    .hero-product-card.is-active { display: block; }
    .hero-product-card .price {
        font-size: 1.25rem;
        font-weight: 700;
        margin-top: 4px;
        color: #FFC84A;
    }

    /* ── Trust strip ── */
    .trust-strip {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
    }
    .trust-items {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        flex-wrap: wrap;
    }
    .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 32px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
        border-right: 1px solid var(--border);
    }
    .trust-item:last-child { border-right: none; }
    .trust-item i { font-size: 1.2rem; color: var(--forest); }

    /* ── Quick category pills ── */
    .pills-sentinel { height: 1px; }

    .quick-pills {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        z-index: 900;
        padding: 14px 0;
        transition: box-shadow .2s, padding .2s;
    }
    .quick-pills.is-stuck {
        box-shadow: 0 8px 24px rgba(0,0,0,.07);
        padding: 10px 0;
    }
    .quick-pills-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        gap: 10px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .quick-pills-inner::-webkit-scrollbar { display: none; }

    .quick-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        padding: 9px 18px;
        border-radius: 100px;
        border: 1.5px solid var(--border);
        background: var(--white);
        font-size: 13.5px;
        font-weight: 600;
        color: var(--text);
        white-space: nowrap;
        transition: border-color .15s, color .15s, transform .15s, box-shadow .15s;
    }
    .quick-pill:hover {
        border-color: var(--forest);
        color: var(--forest);
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(42,92,69,.1);
    }
    .quick-pill-icon {
        width: 22px; height: 22px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        flex-shrink: 0;
    }
    .quick-pill-featured {
        background: linear-gradient(135deg, #FDE9F3 0%, #E9E1FB 100%);
        border-color: transparent;
        color: var(--forest-dark);
    }
    .quick-pill-featured i { color: var(--amber-dark); font-size: 15px; }
    .quick-pill-featured:hover {
        border-color: transparent;
        color: var(--forest-dark);
        box-shadow: 0 6px 16px rgba(154,111,219,.28);
    }

    /* ── Redesigned Categories (Concern Grid) ── */
    .concern-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
        margin-top: 32px;
    }
    
    .concern-card {
        text-decoration: none;
        display: block;
        border-radius: 24px;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        padding: 28px 24px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }
    
    .concern-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--card-hover-bg);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 1;
    }
    
    .concern-card:hover {
        transform: translateY(-6px);
        border-color: var(--card-hover-border);
        box-shadow: 0 16px 36px rgba(42, 92, 69, 0.08);
    }
    
    .concern-card:hover::before {
        opacity: 1;
    }
    
    .concern-card-inner {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .concern-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
    }
    
    .concern-icon-badge {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .concern-card:hover .concern-icon-badge {
        transform: scale(1.1) rotate(6deg);
    }
    
    .concern-count-pill {
        font-size: 11px;
        font-weight: 700;
        color: var(--card-color);
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.9);
        padding: 4px 10px;
        border-radius: 100px;
        letter-spacing: 0.5px;
        backdrop-filter: blur(4px);
    }
    
    .concern-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .concern-desc {
        font-size: 13.5px;
        color: var(--text-muted);
        line-height: 1.5;
        margin-bottom: 20px;
        flex-grow: 1;
    }
    
    .concern-footer {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: auto;
    }
    
    .concern-explore {
        font-size: 12.5px;
        font-weight: 700;
        color: var(--card-color);
        letter-spacing: 0.5px;
        text-transform: uppercase;
        position: relative;
    }
    
    .concern-arrow {
        font-size: 1.2rem;
        color: var(--card-color);
        display: inline-flex;
        align-items: center;
        transition: transform 0.3s ease;
    }
    
    .concern-card:hover .concern-arrow {
        transform: translateX(4px);
    }

    /* ── Product grid ── */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
    }

    /* ── Ingredient story ── */
    .ingredient-story {
        background: var(--forest);
        border-radius: 24px;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 380px;
    }
    .story-left {
        padding: 64px 56px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .story-left .eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--sage);
        font-weight: 600;
        margin-bottom: 14px;
    }
    .story-left h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 18px;
    }
    .story-left h2 em { font-style: italic; color: #A8D5A2; }
    .story-left p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
    .story-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .ingredient-tile {
        padding: 36px 28px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: relative;
        overflow: hidden;
        border-left: 1px solid rgba(255,255,255,.08);
        border-top: 1px solid rgba(255,255,255,.08);
    }
    .ingredient-tile .bg-word {
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -55%;
        font-family: 'Playfair Display', serif;
        font-size: 72px;
        font-weight: 700;
        color: rgba(255,255,255,.05);
        white-space: nowrap;
        pointer-events: none;
        line-height: 1;
    }
    .ingredient-tile .icon { font-size: 2rem; margin-bottom: 10px; }
    .ingredient-tile .name {
        font-size: 15px;
        font-weight: 600;
        color: var(--white);
        font-family: 'Playfair Display', serif;
    }
    .ingredient-tile .benefit { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 4px; }

    /* ── CTA banner ── */
    .cta-banner {
        background: var(--amber);
        border-radius: 20px;
        padding: 52px 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
    }
    .cta-banner h2 {
        color: var(--white);
        font-size: clamp(1.5rem, 3vw, 2rem);
        line-height: 1.2;
    }
    .cta-banner h2 em { font-style: italic; }
    .cta-banner p { color: rgba(255,255,255,.8); margin-top: 8px; font-size: 15px; }
    .btn-white {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--white);
        color: var(--amber-dark);
        border: none;
        padding: 13px 28px;
        border-radius: 100px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        flex-shrink: 0;
        transition: transform .15s;
    }
    .btn-white:hover { transform: translateY(-1px); }

    @media (max-width: 900px) {
        .hero { grid-template-columns: 1fr; }
        .hero-slide { padding: 52px 28px; min-height: 420px; }
        .hero-right { display: none; }
        .trust-item { padding: 10px 16px; font-size: 12px; }
        .ingredient-story { grid-template-columns: 1fr; }
        .story-right { grid-template-columns: 1fr 1fr; }
        .cta-banner { flex-direction: column; text-align: center; }
    }

/* --- Component: index.blade.php --- */
.plp-hero {
        background: var(--forest-dark);
        padding: 44px 0;
    }
    .plp-hero h1 {
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        color: var(--white);
        margin-bottom: 8px;
    }
    .plp-hero p { color: rgba(255,255,255,.65); font-size: 15px; }

    .plp-layout {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 36px;
        align-items: start;
    }

    /* Sidebar */
    .filter-sidebar { position: sticky; top: 88px; }
    .filter-panel {
        background: var(--white);
        border-radius: var(--card-radius);
        border: 1px solid var(--border);
        overflow: hidden;
    }
    .filter-panel-head {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--text-muted);
    }
    .filter-group { border-bottom: 1px solid var(--border); padding: 20px; }
    .filter-group:last-child { border-bottom: none; }
    .filter-group h5 {
        font-size: 12.5px;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 14px;
        font-family: 'DM Sans', sans-serif;
    }
    .filter-option {
        display: block;
        padding: 7px 10px;
        border-radius: 8px;
        font-size: 13.5px;
        color: var(--text);
        text-decoration: none;
        transition: background .15s, color .15s;
        margin-bottom: 2px;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        font-family: 'DM Sans', sans-serif;
    }
    .filter-option:hover { background: var(--forest-light); color: var(--forest); }
    .filter-option.active { background: var(--forest-light); color: var(--forest); font-weight: 600; }

    /* Toolbar */
    .plp-toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }
    .result-count { font-size: 14px; color: var(--text-muted); }
    .sort-select {
        padding: 8px 16px;
        border: 1.5px solid var(--border);
        border-radius: 8px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13.5px;
        color: var(--text);
        background: var(--white);
        cursor: pointer;
        outline: none;
    }
    .sort-select:focus { border-color: var(--forest); }

    /* Active filter chips */
    .active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
    .filter-chip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--forest-light);
        color: var(--forest);
        border: 1px solid var(--forest);
        border-radius: 100px;
        padding: 5px 14px;
        font-size: 12.5px;
        font-weight: 500;
        text-decoration: none;
    }
    .filter-chip i { font-size: .75rem; }

    .empty-state {
        text-align: center;
        padding: 80px 40px;
        color: var(--text-muted);
    }
    .empty-state .icon { font-size: 4rem; margin-bottom: 16px; display: block; }
    .empty-state h4 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }

    @media (max-width: 768px) {
        .plp-layout { grid-template-columns: 1fr; }
        .filter-sidebar { position: static; display: none; }
    }

/* --- Component: show.blade.php --- */
.pdp-breadcrumb {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 14px 0;
    }
    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--text-muted);
        list-style: none;
    }
    .breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .15s; }
    .breadcrumb a:hover { color: var(--forest); }
    .breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 8px; }

    .pdp-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }

    /* Image column */
    .pdp-image-main {
        background: var(--forest-light);
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        position: sticky;
        top: 88px;
    }
    .pdp-image-main img { width: 100%; height: 100%; object-fit: cover; }
    .pdp-image-placeholder { font-size: 7rem; }

    /* Info column */
    .pdp-cat-tag {
        display: inline-block;
        background: var(--forest-light);
        color: var(--forest);
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: .8px;
        text-transform: uppercase;
        padding: 4px 14px;
        border-radius: 100px;
        margin-bottom: 16px;
    }
    .pdp-title {
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        line-height: 1.18;
        color: var(--text);
        margin-bottom: 6px;
    }
    .pdp-sku { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }

    .pdp-price-row {
        display: flex;
        align-items: baseline;
        gap: 14px;
        margin-bottom: 8px;
    }
    .pdp-price-current { font-size: 2rem; font-weight: 700; color: var(--forest); }
    .pdp-price-original { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
    .pdp-discount-badge {
        background: var(--amber-light);
        color: var(--amber-dark);
        font-size: 12px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 100px;
    }
    .pdp-tax-note { font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }

    .pdp-short-desc {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .pdp-meta {
        display: flex;
        gap: 24px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }
    .pdp-meta-item { font-size: 13.5px; display: flex; align-items: center; gap: 7px; color: var(--text); }
    .pdp-meta-item i { color: var(--forest); }

    .pdp-qty-row {
        display: flex;
        gap: 14px;
        align-items: center;
        margin-bottom: 20px;
    }
    .qty-stepper {
        display: flex;
        align-items: center;
        border: 1.5px solid var(--border);
        border-radius: 100px;
        overflow: hidden;
    }
    .qty-btn {
        width: 40px; height: 44px;
        background: none;
        border: none;
        font-size: 1.1rem;
        cursor: pointer;
        color: var(--text);
        transition: background .15s;
    }
    .qty-btn:hover { background: var(--ground); }
    .qty-input {
        width: 52px;
        text-align: center;
        border: none;
        border-left: 1.5px solid var(--border);
        border-right: 1.5px solid var(--border);
        font-family: 'DM Sans', sans-serif;
        font-size: 15px;
        font-weight: 600;
        padding: 8px 4px;
        outline: none;
    }

    .pdp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

    .pdp-trust {
        background: var(--forest-light);
        border-radius: 14px;
        padding: 18px 20px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    .pdp-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--forest); font-weight: 500; }

    .divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

    /* Description accordion */
    .pdp-desc h4 { font-size: 1.05rem; color: var(--text); margin-bottom: 14px; }
    .pdp-desc p, .pdp-desc ul { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

    /* Related */
    .related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }

    @media (max-width: 768px) {
        .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
        .pdp-image-main { position: static; }
    }

/* --- Component: index.blade.php --- */
.orders-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 32px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .orders-title i {
        color: var(--forest);
        font-size: 1.8rem;
    }
    
    /* Card wrapping the table */
    .orders-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        overflow: hidden;
        margin-bottom: 24px;
    }
    
    .table-container {
        width: 100%;
        overflow-x: auto;
    }
    
    .orders-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
        font-family: 'DM Sans', sans-serif;
    }
    
    .orders-table th {
        background: var(--ground);
        font-size: 11.5px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-muted);
        padding: 18px 24px;
        border-bottom: 1px solid var(--border);
    }
    
    .orders-table td {
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        font-size: 14.5px;
        color: var(--text);
        vertical-align: middle;
    }
    
    .orders-table tr:last-child td {
        border-bottom: none;
    }
    
    .orders-table tr {
        transition: background 0.2s ease;
    }
    
    .orders-table tr:hover {
        background: var(--forest-light);
    }
    
    .orders-number {
        font-weight: 600;
        color: var(--forest-dark);
    }
    
    .orders-total {
        font-weight: 600;
        color: var(--forest);
    }
    
    /* Badge styling */
    .orders-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 5px 12px;
        font-size: 11px;
        font-weight: 700;
        border-radius: 100px;
        letter-spacing: 0.3px;
        text-transform: uppercase;
    }
    
    /* Payment status colors */
    .badge-paid {
        background: #E8F5E9;
        color: #2E7D32;
        border: 1px solid #C8E6C9;
    }
    .badge-unpaid, .badge-pending {
        background: #FFF3E0;
        color: #E65100;
        border: 1px solid #FFE0B2;
    }
    .badge-failed {
        background: #FFEBEE;
        color: #C62828;
        border: 1px solid #FFCDD2;
    }
    
    /* Order status colors */
    .badge-completed, .badge-delivered {
        background: #EAF2EB;
        color: var(--forest);
        border: 1px solid #C8E6C9;
    }
    .badge-processing, .badge-shipped {
        background: var(--amber-light);
        color: var(--amber-dark);
        border: 1px solid #FFE0B2;
    }
    .badge-pending-order {
        background: var(--amber-light);
        color: var(--amber-dark);
        border: 1px solid #FFE0B2;
    }
    .badge-cancelled {
        background: #F5F5F5;
        color: #757575;
        border: 1px solid #E0E0E0;
    }

    /* Action button */
    .orders-action-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 18px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 600;
        border: 1.5px solid var(--forest);
        color: var(--forest);
        background: transparent;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
    }
    .orders-action-btn:hover {
        background: var(--forest);
        color: var(--white);
    }
    
    /* Empty State */
    .empty-orders-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 64px 32px;
        text-align: center;
        max-width: 600px;
        margin: 40px auto;
        box-shadow: 0 10px 30px rgba(42, 92, 69, 0.03);
    }
    
    .empty-icon-wrap {
        width: 88px;
        height: 88px;
        background: var(--forest-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        font-size: 3rem;
        color: var(--forest);
        position: relative;
        animation: pulseSlow 3s infinite;
    }
    
    @keyframes pulseSlow {
        0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(42, 92, 69, 0.1); }
        50% { transform: scale(1.04); box-shadow: 0 0 0 12px rgba(42, 92, 69, 0); }
    }
    
    .empty-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 12px;
    }
    
    .empty-subtitle {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 32px;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

/* --- Component: show.blade.php --- */
.detail-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 32px;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .detail-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .detail-title i {
        color: var(--forest);
    }
    
    .detail-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 32px;
        align-items: start;
    }
    
    @media (max-width: 991px) {
        .detail-grid {
            grid-template-columns: 1fr;
        }
    }
    
    /* Cards */
    .detail-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 28px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        margin-bottom: 24px;
    }
    
    .detail-card-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--border);
        padding-bottom: 12px;
    }
    
    .detail-card-title i {
        color: var(--forest);
        font-size: 1.15rem;
    }
    
    /* Order summary banner card */
    .summary-banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .order-meta-info {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .order-no {
        font-family: 'Playfair Display', serif;
        font-size: 1.45rem;
        font-weight: 700;
        color: var(--forest-dark);
    }
    
    .order-date {
        font-size: 13.5px;
        color: var(--text-muted);
    }
    
    /* Items list */
    .item-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        border-bottom: 1px solid var(--ground-alt);
        gap: 16px;
    }
    .item-row:last-child {
        border-bottom: none;
    }
    
    .item-info {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .item-img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: var(--ground);
    }
    
    .item-placeholder-img {
        width: 60px;
        height: 60px;
        background: var(--forest-light);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
    }
    
    .item-details {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .item-name {
        font-weight: 600;
        font-size: 14.5px;
        color: var(--text);
    }
    
    .item-meta {
        font-size: 12.5px;
        color: var(--text-muted);
    }
    
    .item-price-total {
        font-weight: 600;
        color: var(--text);
        font-size: 15px;
    }
    
    /* Totals section */
    .totals-box {
        margin-top: 24px;
        background: var(--ground);
        border-radius: 14px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .totals-row {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        color: var(--text-muted);
    }
    
    .totals-row.grand-total {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--forest-dark);
        border-top: 1.5px dashed var(--border);
        padding-top: 14px;
        margin-top: 4px;
    }
    
    .grand-total-val {
        color: var(--forest);
    }
    
    /* Address Info */
    .address-line {
        font-size: 14px;
        color: var(--text);
        margin-bottom: 6px;
        line-height: 1.5;
    }
    .address-name {
        font-weight: 600;
        font-size: 15px;
        margin-bottom: 10px;
        color: var(--text);
    }
    .address-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-muted);
        margin-top: 14px;
        margin-bottom: 4px;
        font-weight: 600;
    }
    
    /* Badges */
    .orders-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 5px 12px;
        font-size: 11px;
        font-weight: 700;
        border-radius: 100px;
        letter-spacing: 0.3px;
        text-transform: uppercase;
    }
    
    .badge-paid {
        background: #E8F5E9;
        color: #2E7D32;
        border: 1px solid #C8E6C9;
    }
    .badge-unpaid, .badge-pending {
        background: #FFF3E0;
        color: #E65100;
        border: 1px solid #FFE0B2;
    }
    .badge-failed {
        background: #FFEBEE;
        color: #C62828;
        border: 1px solid #FFCDD2;
    }
    
    .badge-completed, .badge-delivered {
        background: #EAF2EB;
        color: var(--forest);
        border: 1px solid #C8E6C9;
    }
    .badge-processing, .badge-shipped {
        background: var(--amber-light);
        color: var(--amber-dark);
        border: 1px solid #FFE0B2;
    }
    .badge-pending-order {
        background: var(--amber-light);
        color: var(--amber-dark);
        border: 1px solid #FFE0B2;
    }
    .badge-cancelled {
        background: #F5F5F5;
        color: #757575;
        border: 1px solid #E0E0E0;
    }

/* --- Component: index.blade.php --- */
.cart-row {
        background: var(--white);
        border-radius: var(--card-radius);
        border: 1px solid var(--border);
        overflow: hidden;
    }
    .cart-item {
        display: grid;
        grid-template-columns: 80px 1fr auto auto auto;
        gap: 20px;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
    }
    .cart-item:last-child { border-bottom: none; }
    .cart-item-img {
        width: 80px; height: 80px;
        border-radius: 10px;
        object-fit: cover;
        background: var(--forest-light);
        display: flex; align-items: center; justify-content: center;
        font-size: 1.8rem;
        overflow: hidden;
        flex-shrink: 0;
    }
    .cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
    .cart-item-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text); }
    .cart-item-cat { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
    .cart-item-price { font-size: 13.5px; color: var(--text-muted); margin-top: 6px; }

    .qty-stepper-sm {
        display: flex;
        align-items: center;
        border: 1.5px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
    }
    .qty-btn-sm {
        width: 32px; height: 34px;
        background: none;
        border: none;
        font-size: 1rem;
        cursor: pointer;
        color: var(--text);
        transition: background .15s;
    }
    .qty-btn-sm:hover { background: var(--ground); }
    .qty-input-sm {
        width: 40px;
        text-align: center;
        border: none;
        border-left: 1.5px solid var(--border);
        border-right: 1.5px solid var(--border);
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        padding: 4px 2px;
        outline: none;
    }

    .cart-subtotal { font-weight: 700; font-size: 1rem; color: var(--forest); white-space: nowrap; }
    .remove-btn {
        background: none; border: none; cursor: pointer;
        color: #ccc; font-size: 1.1rem;
        transition: color .15s; padding: 4px;
    }
    .remove-btn:hover { color: #e74c3c; }

    .summary-card {
        background: var(--white);
        border-radius: var(--card-radius);
        border: 1px solid var(--border);
        padding: 28px;
        position: sticky;
        top: 88px;
    }
    .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        margin-bottom: 12px;
        color: var(--text);
    }
    .summary-row .label { color: var(--text-muted); }
    .summary-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
    .summary-total { font-size: 1.25rem; font-weight: 700; color: var(--forest); }
    .free-ship-note {
        background: var(--forest-light);
        border-radius: 8px;
        padding: 10px 14px;
        font-size: 12.5px;
        color: var(--forest);
        margin-top: 12px;
        margin-bottom: 20px;
    }

    @media (max-width: 640px) {
        .cart-item { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; }
        .cart-item-img { width: 60px; height: 60px; }
        .cart-subtotal, .cart-qty-col { grid-column: 2; }
        .remove-col { grid-column: 1 / -1; text-align: right; }
    }

/* --- Component: index.blade.php --- */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 36px; align-items: start; }
    .checkout-card { background: var(--white); border-radius: var(--card-radius); border: 1px solid var(--border); overflow: hidden; margin-bottom: 24px; }
    .checkout-card-head {
        padding: 18px 24px;
        border-bottom: 1px solid var(--border);
        display: flex; align-items: center; gap: 10px;
        font-weight: 600; font-size: 15px;
    }
    .checkout-card-head i { color: var(--forest); }
    .checkout-card-body { padding: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
    .form-group input, .form-group textarea {
        width: 100%; padding: 11px 15px;
        border: 1.5px solid var(--border); border-radius: 10px;
        font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
        background: var(--white); outline: none; transition: border-color .2s;
        resize: vertical;
    }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--forest); }
    .form-group input.error { border-color: #e74c3c; }
    .form-error { font-size: 12px; color: #e74c3c; margin-top: 4px; }

    .payment-option {
        display: flex; align-items: flex-start; gap: 14px;
        border: 2px solid var(--border); border-radius: 12px;
        padding: 18px 20px; margin-bottom: 12px; cursor: pointer;
        transition: border-color .2s, background .2s;
    }
    .payment-option:has(input:checked) { border-color: var(--forest); background: var(--forest-light); }
    .payment-option input[type=radio] { margin-top: 2px; accent-color: var(--forest); width: 17px; height: 17px; flex-shrink: 0; }
    .payment-option-icon { font-size: 1.6rem; flex-shrink: 0; }
    .payment-option-name { font-weight: 600; font-size: 14.5px; margin-bottom: 3px; }
    .payment-option-sub { font-size: 12.5px; color: var(--text-muted); }

    .order-summary-card { background: var(--white); border-radius: var(--card-radius); border: 1px solid var(--border); overflow: hidden; position: sticky; top: 88px; }
    .summary-head { padding: 16px 24px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 15px; }
    .summary-body { padding: 20px 24px; }
    .summary-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); gap: 12px; }
    .summary-item:last-child { border-bottom: none; }
    .summary-item-name { font-size: 13.5px; color: var(--text); flex: 1; }
    .summary-item-qty { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
    .summary-item-price { font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; }
    .summary-total-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-top: 1px solid var(--border); }
    .summary-total-label { font-weight: 600; }
    .summary-total-price { font-size: 1.25rem; font-weight: 700; color: var(--forest); }

    @media (max-width: 900px) {
        .checkout-grid { grid-template-columns: 1fr; }
        .order-summary-card { position: static; }
        .form-row { grid-template-columns: 1fr; }
    }

/* --- Component: login.blade.php --- */
.auth-split {
        min-height: calc(100vh - 120px);
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .auth-brand-panel {
        background: var(--forest-dark);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 72px;
        position: relative;
        overflow: hidden;
    }
    .auth-brand-panel::before {
        content: '🌿';
        position: absolute;
        right: -40px;
        bottom: -40px;
        font-size: 280px;
        opacity: .07;
        transform: rotate(-20deg);
        pointer-events: none;
    }
    .auth-panel-title {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 18px;
    }
    .auth-panel-title em { font-style: italic; color: #A8D5A2; }
    .auth-panel-body { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7; max-width: 340px; }
    .auth-panel-feat {
        margin-top: 36px;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .auth-feat-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: 14px; }
    .auth-feat-item i { color: var(--sage); font-size: 1rem; }

    .auth-form-panel {
        background: var(--ground);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 48px;
    }
    .auth-card {
        width: 100%;
        max-width: 420px;
    }
    .auth-card h2 { font-size: 1.8rem; margin-bottom: 8px; }
    .auth-card .sub { font-size: 14px; color: var(--text-muted); margin-bottom: 36px; }
    .auth-card .sub a { color: var(--forest); font-weight: 600; text-decoration: none; }

    .form-group { margin-bottom: 20px; }
    .form-group label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 7px;
        letter-spacing: .2px;
    }
    .form-group input {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14.5px;
        color: var(--text);
        background: var(--white);
        outline: none;
        transition: border-color .2s;
    }
    .form-group input:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(42,92,69,.1); }
    .form-group input.error { border-color: #e74c3c; }
    .form-error { font-size: 12.5px; color: #e74c3c; margin-top: 5px; }

    .form-check-row { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
    .form-check-row input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--forest); cursor: pointer; }
    .form-check-row label { font-size: 13.5px; color: var(--text-muted); cursor: pointer; }

    @media (max-width: 768px) {
        .auth-split { grid-template-columns: 1fr; }
        .auth-brand-panel { display: none; }
        .auth-form-panel { padding: 40px 24px; }
    }

/* --- Component: register.blade.php --- */
.auth-split { min-height: calc(100vh - 120px); display: grid; grid-template-columns: 1fr 1fr; }
    .auth-brand-panel {
        background: linear-gradient(160deg, var(--forest) 0%, var(--forest-dark) 100%);
        display: flex; flex-direction: column; justify-content: center; padding: 80px 72px;
        position: relative; overflow: hidden;
    }
    .auth-brand-panel::before {
        content: '🌱';
        position: absolute; right: -20px; top: 40px;
        font-size: 240px; opacity: .07; transform: rotate(15deg); pointer-events: none;
    }
    .auth-panel-title { font-size: clamp(1.5rem,3vw,2.2rem); color: var(--white); line-height:1.2; margin-bottom:16px; }
    .auth-panel-title em { font-style: italic; color: #A8D5A2; }
    .auth-panel-body { color: rgba(255,255,255,.65); font-size:15px; line-height:1.7; max-width:340px; }
    .auth-feat { margin-top:32px; display:flex; flex-direction:column; gap:14px; }
    .auth-feat-item { display:flex; align-items:center; gap:12px; color:rgba(255,255,255,.8); font-size:14px; }
    .auth-feat-item i { color: var(--sage); }
    .auth-form-panel {
        background: var(--ground);
        display: flex; align-items: center; justify-content: center; padding: 60px 48px;
    }
    .auth-card { width: 100%; max-width: 440px; }
    .auth-card h2 { font-size: 1.8rem; margin-bottom: 8px; }
    .auth-card .sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
    .auth-card .sub a { color: var(--forest); font-weight: 600; text-decoration: none; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
    .form-group input {
        width: 100%; padding: 12px 16px;
        border: 1.5px solid var(--border); border-radius: 10px;
        font-family: 'DM Sans', sans-serif; font-size: 14.5px; color: var(--text);
        background: var(--white); outline: none; transition: border-color .2s;
    }
    .form-group input:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(42,92,69,.1); }
    .form-group input.error { border-color: #e74c3c; }
    .form-error { font-size: 12.5px; color: #e74c3c; margin-top: 5px; }
    @media (max-width: 768px) {
        .auth-split { grid-template-columns: 1fr; }
        .auth-brand-panel { display: none; }
        .auth-form-panel { padding: 40px 24px; }
        .form-row { grid-template-columns: 1fr; }
    }

/* --- Component: product-card.blade.php (Raw Style) --- */
.pcard {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
    border: 1px solid transparent;
    position: relative;
}
.pcard:hover {
    box-shadow: 0 12px 40px rgba(42,92,69,.12);
    transform: translateY(-4px);
    border-color: var(--border);
}
.pcard-image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--forest-light);
    aspect-ratio: 1 / 1;
}
.pcard-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.pcard:hover .pcard-image-wrap img { transform: scale(1.06); }
.pcard-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--forest-light), #dff0e2);
}
.pcard-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--amber);
    color: var(--white);
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .4px;
}
.pcard-badge.new { background: var(--forest); }
.pcard-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    transition: background .15s, color .15s;
}
.pcard-wishlist:hover { background: var(--white); color: #e74c3c; }

.pcard-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--forest);
    color: var(--white);
    border: none;
    padding: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pcard:hover .pcard-add { transform: translateY(0); }

.pcard-body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.pcard-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 6px;
}
.pcard-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 4px;
}
.pcard-name a { color: inherit; text-decoration: none; }
.pcard-name a:hover { color: var(--forest); }
.pcard-weight { font-size: 11.5px; color: var(--text-muted); margin-bottom: 12px; }
.pcard-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}
.pcard-price .current { font-size: 1.1rem; font-weight: 700; color: var(--forest); }
.pcard-price .original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.pcard-price .discount { font-size: 11px; font-weight: 700; color: var(--amber); }

.pcard-out { font-size: 12px; font-weight: 600; color: #999; margin-top: auto; }
