  @charset "utf-8";
  /* Basic Reset & Body Styles */
        :root {
            --scroll-behavior: smooth;
        }
        html {
            box-sizing: border-box; /* This is the fix */
            scroll-behavior: var(--scroll-behavior);
        }
        *, *:before, *:after { /* This makes the fix apply to all elements */
            box-sizing: inherit;
        }
        .sitewrap {
            background-color: #ececec !important;
        }

        /* Layout Container */
        .container {
            width: 100%;
            max-width: 1280px; /* Corresponds to container */
            margin-left: auto;
            margin-right: auto;
            padding: 1rem;
        }

        .product-count-badge {
        position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    z-index: 10;
    background-color: rgb(111 161 160 / 32%);
    color: #ffffff;
    font-family: 'Roboto Slab';
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 300;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

        /* Header Section */
        .header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .header h1 {
            font-size: 2rem; /* text-4xl */
            font-weight: 200;
            color: #000000;
            font-family: 'Roboto Slab', serif;
            margin: 0;
        }
        .header p {
               margin-top: 1rem;
    font-size: 1.5rem;
    color: #0a0a0a;
    font-family: 'Roboto Slab';
    font-weight: 100;
        }

        /* Category Grid */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
        }
        
        /* Category Card */
        .category-card {
            position: relative;
            display: block;
            border-radius: 0.5rem; /* rounded-lg */
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            text-decoration: none;
        }
        .category-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }
        .category-card:hover img {
            transform: scale(1.05);
        }
        .category-card .overlay {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgb(0 0 0 / 54%), transparent);
        }
        .category-card .content {
            position: relative;
            height: 16rem; /* h-64 */
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .category-card h2 {
                  font-size: 1.475rem;
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.025em;
    padding-bottom: 1.4rem;
        }

        /* Divider */
        .divider {
            margin: 3rem 0;
            border-top: 1px solid #ccc; /* border-gray-700 */
        }

        /* Subcategory Sections */
        .subcategory-sections-wrapper {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }
        .subcategory-section h3 {
                font-size: 1.875rem;
    font-family: 'Roboto Slab';
    font-weight: 300;
    color: #56374c;
    margin-bottom: 1.5rem;
        }
        .subcategory-list {
                display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.125rem;
    font-family: 'Roboto Slab';
    font-weight: 200;
        }
        .subcategory-list a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease-in-out;
        }
        
        .subcategory-list  a:hover { color: #8c5279 }

        /* Responsive Design - Media Queries */
        @media (min-width: 640px) { /* sm */
            .container { padding-left: 1.5rem; padding-right: 1.5rem; }
            .category-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (min-width: 768px) { /* md */
            .container { padding-bottom: 5rem; }
            .header h1 { font-size: 2rem; } /* text-5xl */
            .category-grid { gap: 2rem; }
            .category-card .content { height: 18rem; } /* h-72 */
            .divider { margin: 3rem 0; }
            .subcategory-list { grid-template-columns: repeat(3, 1fr); }
        }

        @media (min-width: 1024px) { /* lg */
            .container { padding-left: 2rem; padding-right: 2rem; }
            .category-grid { grid-template-columns: repeat(3, 1fr); }
            .subcategory-list { grid-template-columns: repeat(4, 1fr); }
        }

          @media (max-width: 700px) {
           .header h1 {
                font-size: 1.6rem;
           }

            .header p {
               font-size: 1.3rem;
            }
        }


            @media (max-width: 500px) {
                .header {
               text-align: center;
                margin-bottom: 2rem;
                }

           .header h1 {
                font-size: 1.3rem;
           }

            .header p {
               font-size: 1rem;
            }
   .category-card h2 {
        font-size: 1.3rem;
   }


   .subcategory-section h3 {
   font-size:1.375rem
}

.subcategory-sections-wrapper {
    gap:2.5rem
}

.subcategory-list {
    font-size:0.9rem
}
        }