body {
            margin: 0;
            background: #f5f5f3;
            font-family: Arial, sans-serif;
        }

        .shop-navbar {
            background: #111;
            padding: 18px 0;
        }

        .shop-logo {
            color: #fff;
            text-decoration: none;
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 3px;
        }

        .shop-nav a {
            color: #ddd;
            text-decoration: none;
            margin-left: 22px;
            font-size: 14px;
        }

        .shop-nav a:hover {
            color: #fff;
        }

        .page-head {
            background: linear-gradient(135deg, #3f3228 0%, #8f6943 48%, #b88658 100%);
            padding: 138px 0 44px;
            border-bottom: 1px solid rgba(184, 134, 88, .35);
            color: #fffaf4;
            position: relative;
            overflow: hidden;
        }

        .page-head::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 18% 30%, rgba(255, 250, 244, .18), transparent 28%),
                linear-gradient(90deg, rgba(63, 50, 40, .28), transparent 60%);
            pointer-events: none;
        }

        .page-head .container {
            position: relative;
            z-index: 1;
        }

        .page-head h1 {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: clamp(42px, 6vw, 72px);
            font-weight: 500;
            margin-bottom: 12px;
            letter-spacing: 1.4px;
            color: #fffaf4;
            text-shadow: 0 10px 30px rgba(0, 0, 0, .16);
        }

        .breadcrumb-area {
            color: rgba(255,250,244,.72);
            font-size: 14px;
        }

        .breadcrumb-area a {
            color: #fffaf4;
            text-decoration: none;
            font-weight: 600;
        }

        .shop-benefits {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
            margin: -20px 0 32px;
            position: relative;
            z-index: 2;
        }

        .shop-benefit {
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 16px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 16px 36px rgba(0,0,0,.06);
        }

        .shop-benefit i {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #3f3228;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 40px;
        }

        .shop-benefit strong,
        .shop-benefit span {
            display: block;
        }

        .shop-benefit strong {
            font-size: 13px;
            color: #111;
            text-transform: uppercase;
            letter-spacing: .5px;
        }

        .shop-benefit span {
            color: #777;
            font-size: 12px;
            margin-top: 2px;
        }

        .category-box {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 18px;
            padding: 22px;
            position: sticky;
            top: 96px;
            box-shadow: 0 15px 35px rgba(0,0,0,.045);
        }

        .category-box h5 {
            margin-bottom: 15px;
            font-weight: 700;
        }

        .category-box a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            padding: 11px 12px;
            color: #333;
            text-decoration: none;
            border-radius: 12px;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .category-box a:hover,
        .category-box a.active {
            background: #111;
            color: #fff;
            font-weight: 600;
        }

        .products-toolbar {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 18px;
            padding: 16px 18px;
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,.04);
        }

        .products-toolbar h2 {
            margin: 0;
            font-size: 20px;
            color: #111;
            font-weight: 800;
        }

        .products-toolbar p {
            margin: 4px 0 0;
            color: #777;
            font-size: 13px;
        }

        .sort-form {
            display: flex;
            align-items: center;
            gap: 9px;
            white-space: nowrap;
        }

        .sort-form label {
            color: #666;
            font-size: 13px;
            font-weight: 700;
        }

        .sort-form select {
            border: 1px solid #e4e4e4;
            border-radius: 999px;
            padding: 9px 36px 9px 14px;
            color: #111;
            background-color: #fafafa;
            outline: none;
        }

        .mobile-filter-btn {
            display: none;
            border: 1px solid #ddd;
            background: #fff;
            color: #111;
            border-radius: 999px;
            padding: 9px 14px;
            font-weight: 700;
        }

        .product-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #ececec;
            height: 100%;
            transition: 0.25s ease;
            position: relative;
            box-shadow: 0 10px 24px rgba(0,0,0,.035);
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 44px rgba(0, 0, 0, .11);
        }

        .product-media {
            position: relative;
            overflow: hidden;
            background: #eaeaea;
        }

        .product-badge {
            position: absolute;
            left: 14px;
            top: 14px;
            z-index: 2;
            background: #111;
            color: #fff;
            border-radius: 999px;
            padding: 7px 11px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .8px;
            text-transform: uppercase;
        }

        .product-badge-out {
            left: auto;
            right: 14px;
            background: #8b2f2f;
            color: #fff;
            box-shadow: 0 8px 22px rgba(139, 47, 47, .28);
        }

        .product-card.is-out-of-stock .product-img {
            filter: saturate(.72) brightness(.82);
        }

        .product-card.is-out-of-stock .product-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(40, 31, 26, .08), rgba(40, 31, 26, .24));
            pointer-events: none;
        }

        .product-card.is-out-of-stock .product-quick-link {
            z-index: 3;
            background: rgba(63, 50, 40, .94);
        }

        .product-quick-link {
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 14px;
            z-index: 2;
            background: rgba(17,17,17,.92);
            color: #fff;
            text-decoration: none;
            border-radius: 999px;
            padding: 11px 14px;
            text-align: center;
            font-weight: 800;
            font-size: 13px;
            opacity: 0;
            transform: translateY(12px);
            transition: .25s ease;
        }

        .product-card:hover .product-quick-link {
            opacity: 1;
            transform: translateY(0);
        }

        .product-quick-link:hover {
            color: #fff;
            background: #000;
        }

        .product-img {
            width: 100%;
            height: 330px;
            object-fit: cover;
            background: #eaeaea;
            transition: transform .35s ease;
        }

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

        .product-body {
            padding: 18px;
        }

        .product-category {
            color: #777;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 700;
        }

        .product-title {
            font-size: 17px;
            font-weight: 800;
            margin: 8px 0;
            color: #111;
            min-height: 42px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 7px;
            min-height: 22px;
            margin-bottom: 10px;
            font-size: 13px;
        }

        .product-rating-stars {
            color: #d99a19;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .product-rating-text {
            color: #777;
        }

        .product-desc {
            font-size: 14px;
            color: #666;
            min-height: 44px;
            line-height: 1.6;
        }

        .product-price {
            color: #000;
            font-weight: 600;
            font-size: 19px;
        }

        .product-price-wrap {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .product-old-price {
            color: #999;
            font-size: 14px;
            text-decoration: line-through;
        }

        .product-discount {
            background: #111;
            color: #fff;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 7px;
        }

        .btn-product {
            background: #111;
            color: #fff;
            padding: 9px 18px;
            border-radius: 30px;
            font-size: 14px;
            text-decoration: none;
            font-weight: 700;
        }

        .btn-product:hover {
            background: #333;
            color: #fff;
        }

        .empty-products {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 20px;
            padding: 42px 24px;
            text-align: center;
            box-shadow: 0 16px 36px rgba(0,0,0,.045);
        }

        .empty-products i {
            font-size: 42px;
            color: #111;
        }

        .empty-products h3 {
            margin: 14px 0 8px;
            color: #111;
            font-weight: 800;
        }

        .empty-products p {
            color: #777;
            margin-bottom: 18px;
        }

        .empty-products a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #111;
            color: #fff;
            border-radius: 999px;
            padding: 11px 18px;
            text-decoration: none;
            font-weight: 800;
        }

        @media (max-width: 768px) {
            .page-head {
                padding: 112px 0 34px;
            }

            .page-head h1 {
                font-size: 42px;
                margin-bottom: 8px;
            }

            .shop-benefits {
                grid-template-columns: 1fr 1fr;
                margin-top: -18px;
            }

            .shop-benefit {
                padding: 13px;
            }

            .shop-benefit i {
                width: 34px;
                height: 34px;
                flex-basis: 34px;
                font-size: 15px;
            }

            .products-main {
                padding: 30px 0 !important;
            }

            .category-box {
                position: static;
                display: none;
            }

            .category-box.is-open {
                display: block;
                margin-bottom: 18px;
            }

            .mobile-filter-btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
            }

            .products-toolbar {
                align-items: flex-start;
                flex-direction: column;
            }

            .sort-form {
                width: 100%;
                justify-content: space-between;
            }

            .sort-form select {
                width: 100%;
                max-width: 220px;
            }

            .product-img {
                height: 260px;
            }

            .product-body .d-flex {
                align-items: flex-start !important;
                flex-wrap: wrap;
                gap: 12px;
            }

            .product-quick-link {
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 480px) {
            .shop-benefits {
                grid-template-columns: 1fr;
            }

            .product-img {
                height: 235px;
            }
        }
