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

:root {
    --ink: #0d0d0d;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #888888;
    --font-sans: 'Hanken Grotesk', sans-serif;
    --font-display: 'Hanken Grotesk', sans-serif;
    --label-letter-spacing: .08em;
    --line: #e0e0e0;
    --bg-card: #f2f0eb;
}

/* ============ DESKTOP STYLES (unchanged) ============ */

.navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container-fluid {
    width: 100%;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
  font-family: "Hammersmith One", sans-serif;
    color: #000000;
    text-decoration: none;
    font-size: 32px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: 'Hanken Grotesk', sans-serif;
}

.navbar-links a {
    color: #0d0d0d;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: capitalize;
    padding-bottom: 4px;
}

.navbar-links a.active {
    border-bottom: 2px solid #0d0d0d;
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    color: #0d0d0d;
    display: flex;
    position: relative;
    transition: opacity 0.2s ease;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #0d0d0d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    padding: 0 5px;
    box-sizing: border-box;
}

.icon-btn:hover {
    opacity: 0.6;
}

.user-btn {
    color: #0d0d0d;
    display: flex;
    transition: opacity 0.2s ease;
}

.user-btn:hover {
    opacity: 0.6;
}

/* ============ HAMBURGER BUTTON (hidden on desktop) ============ */

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 4px;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0d0d0d;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============ OVERLAY (mobile only) ============ */

.navbar-overlay {
    display: none;
}

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

@media (max-width: 860px) {
    .navbar-toggle {
        display: flex;
        order: 3;
    }

    .navbar .container-fluid {
        padding: 18px 24px;
    }

    .navbar-logo {
        font-size: 30px;
    }

    .navbar-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(78vw, 320px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 90px 32px 32px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
        overflow-y: auto;
    }

    .navbar-links.is-open {
        transform: translateX(0);
    }

    .navbar-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .navbar-links a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
    }

    .navbar-links a.active {
        border-bottom: none;
        color: #000;
        font-weight: 700;
    }

    .navbar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.35);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }

    .navbar-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .navbar .container-fluid {
        padding: 18px 16px;
    }

    .navbar-icons {
        gap: 14px;
    }

    .navbar-logo {
        font-size: 24px;
    }

    .navbar-links {
        width: 100vw;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
}
.hero-banner {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Subtle darken so text stays legible over bright/varied photos */
.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 18, 16, 0.55) 0%,
        rgba(20, 18, 16, 0.25) 45%,
        rgba(20, 18, 16, 0) 70%
    );
    pointer-events: none;
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    padding: 56px 64px;
    max-width: 800px; 
}

.hero-eyebrow {
  font-family: "Hanken Grotesk", sans-serif;
    display: block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-heading {
    font-family: "Hanken Grotesk", sans-serif;
    color: #fff;
 font-size: 60px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 0 32px;
    letter-spacing: -0.02em;
}

.hero-btn {
  font-family: "Hanken Grotesk", sans-serif;
    display: inline-block;
    background: #000000;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 18px 32px;
    transition: background 0.2s ease;
}

.hero-btn:hover {
    background: #2b2b2b;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 480px;
        align-items: flex-end;
    }

    .hero-banner-overlay {
        background: linear-gradient(
            to top,
            rgba(20, 18, 16, 0.75) 0%,
            rgba(20, 18, 16, 0.3) 60%,
            rgba(20, 18, 16, 0.1) 100%
        );
    }

    .hero-banner-content {
        padding: 32px 24px;
        max-width: 100%;
    }

    .hero-heading {
        font-size: 2rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.6rem;
    }

    .hero-btn {
        padding: 15px 26px;
        font-size: 0.7rem;
    }
}

/* --- Featured Drop Section --- */
.featured-drop-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}

.featured-container {
    width: 100%;
    padding: 0 40px;
    display: grid;
    /* 3-column layout: large image, thumbnail column, content column */
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 32px;
    align-items: center;
}

/* Image Containers & Responsiveness */
.featured-main-img img,
.featured-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-main-img {
width: 100%;
    /* Aspect ratio calculation: 532 / 585 */
    aspect-ratio: 532 / 585; 
    overflow: hidden;}

/* Middle Thumbnail Column */
.featured-gallery-thumbs {
   display: flex;
    flex-direction: column;
    gap: 23px; /* Creates the exact spacing needed between the two thumbs */
    height: 100%;
}

.featured-gallery-thumbs .thumb-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

/* Right Content Column */
.featured-content {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
}

.drop-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #767676;
    margin-bottom: 16px;
    font-family: 'Hanken Grotesk', sans-serif;
}

.drop-heading {
    font-family: "Poppins", "Helvetica Neue", sans-serif;
    color: #0d0d0d;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}

.drop-description {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #605E59;
    margin-bottom: 32px;
    max-width: 380px;
}

/* Swatches & Price Row */
.drop-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 16px;
    margin-bottom: 32px;
}

.color-swatches {
    display: flex;
    gap: 10px;
}

.swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.drop-price {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0d0d0d;
}

/* Button Styling */
.drop-btn {
    display: block;
    background: #0d0d0d;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 20px 32px;
    transition: background 0.2s ease;
    font-family: 'Hanken Grotesk', sans-serif;
}

.drop-btn:hover {
    background: #2b2b2b;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .featured-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    /* On medium screens, push the content to its own row below the grid */
    .featured-content {
        grid-column: span 2;
        padding-left: 0;
        margin-top: 24px;
    }
    
    .drop-description {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .featured-container {
        grid-template-columns: 1fr;
    }
    
    .featured-gallery-thumbs {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }
    
    .featured-content {
        grid-column: span 1;
    }
    
    .drop-heading {
        font-size: 2rem;
    }
}

/* --- New Arrivals Section --- */
.new-arrivals-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
}

.arrivals-container {
    width: 100%;
    padding: 0 40px;
}

/* Header Styles */
.arrivals-header {
    margin-bottom: 48px;
}

.arrivals-eyebrow {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #767676;
    display: block;
    margin-bottom: 8px;
}

.arrivals-heading {
    font-family: "Poppins", "Helvetica Neue", sans-serif;
    font-size: 2.25rem;
    font-weight: 500;
    color: #0d0d0d;
    letter-spacing: -0.01em;
}

/* 3-Column Grid Setup */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 56px;
}

/* Product Card Elements */
.product-card {
    display: flex;
    flex-direction: column;
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5; /* Clean editorial crop proportion */
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #f7f7f7;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.02); /* Clean premium micro-interaction on hover */
}

/* Card Content Alignment */
.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.product-swatches {
    display: flex;
    gap: 6px;
}

.product-swatches .swatch {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.product-price {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d0d0d;
}

/* Bottom Centered Button */
.arrivals-footer {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

.view-collection-btn {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 18px 48px;
    transition: background 0.2s ease;
}

.view-collection-btn:hover {
    background: #2b2b2b;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Drop to 2 columns on tablets */
        column-gap: 24px;
        row-gap: 40px;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr; /* 1 column layout on mobile screens */
        row-gap: 32px;
    }
    
    .arrivals-heading {
        font-size: 1.75rem;
    }
    
    .view-collection-btn {
        width: 100%;
        text-align: center;
    }
}

/* Section Wrapper */
.category-banner-section {
  display: flex;
  width: 100%;
  min-height: 647px; /* Adjust height based on your design needs */
}

/* Individual Cards */
.category-card {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Keeps heading at top, text/button at bottom */
  padding: 40px;
}

/* Background Images - Replace with your actual hosted image URLs */
.tee-card {
  background-image: url('../images/image\ 8.jpg');
  /* Fallback color matching the image background tone */
        background-color: #e3dacd; 
}

.crop-top-card {
  background-image: url('../images/image\ 9.jpg');
  /* Fallback color matching the image background tone */
        background-color: #dcd4c9; 
}

/* Card Typography & Layout Elements */
.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.card-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Hanken Grotesk", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.card-description {
    font-family: "Hanken Grotesk", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.6;
  max-width: 420px;
  margin-top: auto; /* Pushes description to the bottom area */
  margin-bottom: 24px;
}

/* View All Button */
.card-btn {
  align-self: flex-start;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
  .category-banner-section {
    flex-direction: column;
  }
  
  .category-card {
    min-height: 450px;
    padding: 30px;
  }
}







/* Newsletter Section Base Styling */
.newsletter-section {
    background-color: #f9f9f9; /* Off-white background as seen in the image */
    color: #111111;
    font-family: "Hanken Grotesk", sans-serif;
    padding: 100px 20px;
    text-align: center;
}

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

/* Typography */
.newsletter-section h2 {
    font-size: 60px;
    font-weight: 400;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: #4C463A;
    line-height: 1.6;
    max-width: 460px;
    margin: 0 auto 50px auto;
}

/* Form Layout */
.newsletter-form {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* Input Field Grouping */
.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.input-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4C463A;
    margin-bottom: 12px;
        font-family: "Hanken Grotesk", sans-serif;

}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #999999; /* Clean underline instead of a full box */
    padding: 10px 0;
    font-size: 14px;
    color: #111111;
    outline: none;
    transition: border-color 0.2s ease;
}

.input-group input::placeholder {
    color: #cccccc;
}

.input-group input:focus {
    border-bottom-color: #111111;
}

/* Solid Black Submit Button */
.btn-join {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 11px 32px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Hanken Grotesk", sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-join:hover {
    opacity: 0.85;
}

/* Responsive considerations for smaller viewports */
@media (max-width: 500px) {
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }
    
    .btn-join {
        padding: 14px;
    }
}




/* ============ PRODUCT GRID SECTION ============ */
 
.product-grid-section {
    width: 100%;
    padding: 48px 0 64px;
}
 
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}
 
.product-card {
    display: flex;
    flex-direction: column;
}
 
.product-image {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    background: #ece7e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b5aea3;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    overflow: hidden;
}
 
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
.product-info {
    margin-top: 16px;
}
 
.product-name {
    font-size: 0.85rem;
    color: #0d0d0d;
    margin-bottom: 10px;
}
 
.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.product-swatches {
    display: flex;
    gap: 6px;
}
 
.swatch {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
 
.product-price {
    font-size: 0.75rem;
    color: #6b6b6b;
}

/* ---- unified product card ---- */

.product-card-image-wrap{
  position:relative;
  width:100%;
  aspect-ratio:4/5;
  overflow:hidden;
  background:#f2f0eb;
  margin-bottom:16px;
}
.product-card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}
.product-card-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}
.product-card:hover .product-card-image{
  transform:scale(1.02);
}
.product-card-body{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.product-card-title{
  font-family:'Hanken Grotesk',sans-serif;
  font-size:.85rem;
  font-weight:500;
  color:#1a1a1a;
  margin:0;
}
.product-card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.product-card-price{
  font-size:.85rem;
  font-weight:600;
  color:#0d0d0d;
}
.wishlist-overlay{
  position:absolute;
  top:12px;
  right:12px;
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.9);
  border-radius:50%;
  color:var(--ink);
  transition:background .15s ease, color .15s ease;
}
.wishlist-overlay:hover{
  background:var(--ink);
  color:#fff;
}

/* ============ LOAD MORE BUTTON ============ */
 
.load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}
 
.load-more-btn {
    background: #0d0d0d;
    color: #fff;
    border: none;
    padding: 16px 48px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
 
.load-more-btn:hover {
    opacity: 0.8;
}
 
/* ============ RESPONSIVE ============ */
 
@media (max-width: 960px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 24px;
    }

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

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-grid-section {
        padding: 32px 0 48px;
    }
 
    .load-more-wrap {
        margin-top: 40px;
    }
 
    .load-more-btn {
        width: 100%;
        padding: 16px 0;
    }
}


.shop-container {
  width: 100%;
  padding: 0 40px;
}

@media (max-width: 860px) {
  .shop-container {
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .shop-container {
    padding: 0 16px;
  }
}

/* --- 1. Filter Navigation Styling --- */
.filter-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8;
  padding: 18px 0;
  margin-bottom: 36px;
}

.categories-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
}

.categories-wrapper::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.category-item {
  text-decoration: none;
  color: #707070;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.category-item:hover {
  color: #000;
}

.category-item.active {
  color: #000;
  font-weight: 700;
}

.category-item.active::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 12px;
  background-color: #000;
}

.filter-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding-left: 24px;
  border-left: 1px solid #e0e0e0;
  flex-shrink: 0;
}

.filter-icon {
  width: 16px;
  height: 16px;
}

/* ----- Filter Drawer ----- */

.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.filter-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
}

.filter-drawer.open {
  transform: translateX(0);
}

.filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.filter-drawer-header h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.filter-drawer-close {
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}

.filter-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.filter-section {
  margin-bottom: 28px;
}

.filter-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 12px;
}

.filter-price-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-price-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.filter-price-input {
  flex: 1;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  min-width: 0;
}

.filter-price-input:focus {
  border-color: #000;
}

.filter-price-sep {
  color: #ccc;
  font-size: 14px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}

.filter-chip:hover {
  border-color: #000;
  color: #000;
}

.filter-chip.active {
  border-color: #000;
  background: #000;
  color: #fff;
}

.filter-drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-apply-price {
  display: block;
  width: 100%;
  height: 44px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s;
}

.filter-apply-price:hover {
  background: #222;
}

.filter-clear-btn {
  display: block;
  width: 100%;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all .2s;
}

.filter-clear-btn:hover {
  border-color: #000;
  color: #000;
}

.product-detail{
    display:grid;
    grid-template-columns:760px 1fr;
    gap:80px;
    align-items:start;
}

.product-detail > div:first-child{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.product-detail-image{
    width:760px;
    height:760px;
    object-fit:cover;
    display:block;
    background:#f2f0eb;
}

.product-detail-thumbs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    width:760px;
}

.product-detail-thumbs img{
    width:100%;
    height:374px;
    object-fit:cover;
    display:block;
}
 
.product-detail-info{
  position:sticky;
  top:32px;
  padding-top:4px;
}
 
.product-card-category{
  font-size:.75rem;
  letter-spacing:var(--label-letter-spacing);
  text-transform:uppercase;
  color:var(--text-muted);
}
 
.product-detail-info h1{
  font-family:var(--font-display);
  font-weight:400;
  font-size:2rem;
  line-height:1.2;
  text-transform:uppercase;
  letter-spacing:.01em;
  margin:0 0 14px;
}
 
.product-detail-price{
  font-size:1.05rem;
  color:var(--text-primary);
  margin-bottom:24px;
}
 
.product-detail-description{
  font-size:.92rem;
  line-height:1.75;
  color:var(--text-secondary);
  max-width:34ch;
  margin-bottom:36px;
}
 
/* ---- variants ---- */
 
.product-variants{
  display:flex;
  flex-direction:column;
  gap:28px;
  margin-bottom:28px;
}
 
.variant-group-label{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:var(--label-letter-spacing);
  text-transform:uppercase;
  margin:0 0 12px;
}
 
.variant-group-label .size-guide,
.variant-group-label a{
  font-weight:400;
  letter-spacing:.02em;
  text-transform:none;
  text-decoration:underline;
  color:var(--text-muted);
  font-size:.78rem;
}
 
.variant-options{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
 
.variant-btn{
  min-width:52px;
  height:44px;
  padding:0 14px;
  background:transparent;
  border:1px solid var(--ink);
  color:var(--ink);
  font-family:var(--font-sans);
  font-size:.85rem;
  letter-spacing:.02em;
  cursor:pointer;
  transition:background .15s ease, color .15s ease, border-color .15s ease;
}
 
.variant-btn:hover{
  border-color:var(--ink);
  background:#f2f0eb;
}
 
.variant-btn.active{
  background:var(--ink);
  border-color:var(--ink);
  color:#fff;
}
 
.variant-btn:disabled{
  opacity:.35;
  cursor:not-allowed;
  text-decoration:line-through;
}
 
/* ---- meta (availability / price readout) ---- */
 
.product-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:18px 0;
  margin-bottom:8px;
  border-top:1px solid var(--line);
}
 
.product-meta-item{
  display:flex;
  justify-content:space-between;
  font-size:.82rem;
}
 
.product-meta-label{
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-muted);
  font-size:.72rem;
}
 
.product-meta-value{
  color:var(--text-primary);
}
 
/* ---- quantity ---- */
 
.quantity-selector{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:130px;
  height:44px;
  border:1px solid #8c7f7f;
  background:#fff;
}

.qty-btn{
  width:40px;
  height:100%;
  border:none;
  background:transparent;
  font-size:22px;
  cursor:pointer;
  color:#222;
}

.qty-btn:hover{
  background:transparent;
}

.qty-input{
  width:40px;
  border:none;
  outline:none;
  background:transparent;
  text-align:center;
  font-size:18px;
  font-weight:500;
  -moz-appearance:textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button{
  -webkit-appearance:none;
  margin:0;
}
 
/* ---- actions ---- */
 
.product-actions{
  display:flex;
  align-items:stretch;
  gap:10px;
  margin-bottom:28px;
}
 
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:52px;
  padding:0 28px;
  font-family:var(--font-sans);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:var(--label-letter-spacing);
  text-transform:uppercase;
  border:1px solid var(--ink);
  cursor:pointer;
  transition:background .15s ease, color .15s ease, opacity .15s ease;
}
 
.btn-primary{
  background:var(--ink);
  border-color:var(--ink);
  color:#fff;
}
.btn-primary:hover{ background:#000; }
.btn-primary:disabled{
  background:#c9c6bf;
  border-color:#c9c6bf;
  cursor:not-allowed;
}
 
.btn-outline{
  background:transparent;
  color:var(--ink);
}
.btn-outline:hover{ background:#f2f0eb; }
.btn-outline:disabled{
  color:var(--text-muted);
  border-color:var(--line);
  cursor:not-allowed;
}
 
.wishlist-btn{
  flex:0 0 52px;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--ink);
  color:var(--ink);
  transition:background .15s ease;
}
.wishlist-btn:hover{ background:#f2f0eb; }
 
/* ---- accordion (details & fit / shipping & returns) ---- */
 
.product-detail-info > div[style]{ margin-top:0; } /* neutralize inline back-link spacing quirks */
 
.accordion,
.product-accordion{
  border-top:1px solid var(--line);
}
 
.accordion-row,
.product-meta-item.accordion-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid var(--line);
  font-size:.75rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  cursor:pointer;
}
 
.accordion-row .chevron{
  color:var(--text-muted);
  transition:transform .2s ease;
}
.accordion-row.open .chevron{ transform:rotate(180deg); }

/* ---- accordion content ---- */

.accordion-content{
  display:none;
  padding:0 0 18px;
}
.accordion-content.open{ display:block; }
.accordion-body{
  font-size:.85rem;
  line-height:1.7;
  color:var(--text-secondary);
}

/* ---- breadcrumb ---- */

.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.75rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:32px;
  padding-left: 40px;  

}
.breadcrumb a{
  color:var(--text-muted);
  text-decoration:none;
}
.breadcrumb a:hover{ color:var(--text-primary); }
.breadcrumb-sep{ color:var(--line); }

/* ---- gallery ---- */

.product-detail-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.gallery-image{
    width:100%;
    object-fit:cover;
    display:block;
}

.gallery-large{
    grid-column:1 / -1;
    height:760px;
}

.gallery-small{
    height:370px;
}
/* ---- form actions ---- */

.product-form{
  margin-top:28px;
}
.product-form-row{
  margin-bottom:16px;
}
.btn-block{
  width:100%;
}
.wishlist-link{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:45%;
  height:52px;
  padding:0 24px;
  background:white;
  color:black;
  border:none;
  border-radius:8px;
  font-family:"Hanken Grotesk", sans-serif;
  font-size:10px;
  font-weight:500;
  letter-spacing:0.15em;
  text-transform:uppercase;
  text-decoration:none;
  cursor:pointer;
  transition:background .2s ease;
  margin-bottom:32px;
}
/* .wishlist-link:hover{ background:#000; }
.wishlist-link svg{ flex-shrink:0; } */


.toast{
  position:fixed;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  padding:12px 24px;
  background:var(--ink);
  color:#fff;
  font-size:.82rem;
  border-radius:4px;
  opacity:0;
  transition:opacity .25s ease;
  z-index:9999;
  pointer-events:none;
}
.toast.show{ opacity:1; }


/* ---- page header ---- */

.page-header {
  background: #f5f3f0;
  padding: 40px 0;
  margin-bottom: 0;
}

.page-header h1 {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #111111;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.page-header p {
  font-size: 14px;
  color: #605e59;
  margin: 0;
}

/* ---- section / container utility ---- */

.section{
  padding:72px 0;
}
.container{
  width:100%;
  padding:0 40px;
}

@media (max-width: 860px) {
  .container{ padding:0 24px; }
  .page-header{ padding:32px 0; }
  .page-header h1{ font-size:24px; }
}

@media (max-width: 480px) {
  .container{ padding:0 16px; }
  .page-header{ padding:24px 0; }
  .page-header h1{ font-size:20px; }
}
.section-title{
  font-family:var(--font-display);
  font-weight:400;
  font-size:2rem;
  text-transform:uppercase;
  letter-spacing:.01em;
  margin:0 0 8px;
}
.section-subtitle{
  font-size:.92rem;
  color:var(--text-muted);
  margin:0 0 40px;
}

/* ---- featured product grid ---- */

.featured-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px 40px;
}

/* ---- reviews head stats ---- */

.reviews-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:48px;
  flex-wrap:wrap;
  gap:32px;
}
.s-head-title{
  flex:0 0 auto;
}
.reviews-head-eyebrow{
  display:block;
  font-size:.72rem;
  letter-spacing:var(--label-letter-spacing);
  text-transform:uppercase;
  color:var(--text-muted);
  margin-bottom:8px;
}
.reviews-head-heading{
  font-family:var(--font-display);
  font-weight:400;
  font-size:2rem;
  text-transform:uppercase;
  letter-spacing:.01em;
  margin:0;
}
.reviews-head-stats{
  display:flex;
  gap:48px;
  flex:1;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.reviews-avg{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
}
.reviews-avg-number{
  font-family:var(--font-display);
  font-size:2.4rem;
  line-height:1;
}
.reviews-avg-stars{
  font-size:.9rem;
  color:#e0a800;
}
.reviews-avg-count{
  font-size:.72rem;
  color:var(--text-muted);
}

/* ---- rating bars ---- */

.reviews-bars{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:180px;
}
.reviews-bar-row{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.72rem;
}
.reviews-bar-label{
  width:50px;
  text-align:right;
  color:#e0a800;
}
.reviews-bar-track{
  flex:1;
  height:6px;
  background:#f0f0f0;
  border-radius:3px;
  overflow:hidden;
}
.reviews-bar-fill{
  height:100%;
  background:#e0a800;
  border-radius:3px;
  transition:width .4s ease;
}
.reviews-bar-count{
  width:24px;
  color:var(--text-muted);
  text-align:right;
}

/* ---- review cards ---- */

.reviews-list{
  display:flex;
  flex-direction:column;
  gap:24px;
  margin-bottom:56px;
}
.review-card{
  display:flex;
  gap:16px;
  padding:24px;
  background:#fafaf8;
  border:1px solid var(--line);
}
.review-card--right{
  flex-direction:row-reverse;
  text-align:right;
}
.review-card-avatar{
  flex:0 0 40px;
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--ink);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  font-weight:600;
}
.review-card-body{ flex:1; }
.review-card-stars{
  font-size:.82rem;
  color:#e0a800;
  margin-bottom:4px;
}
.review-card-title{
  font-size:.88rem;
  font-weight:600;
  margin:0 0 4px;
}
.review-card-comment{
  font-size:.85rem;
  line-height:1.65;
  color:var(--text-secondary);
  margin:0 0 10px;
}
.review-card-image img{
  max-width:120px;
  margin-bottom:8px;
}
.review-card-meta{
  display:flex;
  gap:12px;
  font-size:.72rem;
  color:var(--text-muted);
}
.review-card-name{ font-weight:600; }

/* ---- empty reviews ---- */

.reviews-empty{
  text-align:center;
  padding:48px 0;
  margin-bottom:56px;
}
.reviews-empty-icon{
  color:var(--text-muted);
  margin-bottom:16px;
}
.reviews-empty-text{
  font-size:1rem;
  margin-bottom:4px;
}
.reviews-empty-sub{
  font-size:.82rem;
  color:var(--text-muted);
}

/* ---- review form ---- */

.review-form-wrapper{
  padding:40px;
  background:#fafaf8;
  border:1px solid var(--line);
}
.review-form-inner{ max-width:600px; margin:0 auto; }
.review-form-header{ text-align:center; margin-bottom:32px; }
.review-form-heading{
  font-family:var(--font-display);
  font-weight:400;
  font-size:1.4rem;
  margin:0 0 4px;
}
.review-form-sub{
  font-size:.82rem;
  color:var(--text-muted);
  margin:0;
}
.review-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.review-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.review-form-field{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.review-form-field label{
  font-size:.68rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--text-muted);
}
.review-form-field input,
.review-form-field textarea{
  padding:12px 0;
  border:none;
  border-bottom:1px solid var(--line);
  font-family:var(--font-sans);
  font-size:.88rem;
  background:transparent;
  outline:none;
  transition:border-color .2s ease;
}
.review-form-field input:focus,
.review-form-field textarea:focus{
  border-bottom-color:var(--ink);
}
.review-form-submit{
  padding:14px 32px;
  background:var(--ink);
  color:#fff;
  border:none;
  font-family:var(--font-sans);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:var(--label-letter-spacing);
  text-transform:uppercase;
  cursor:pointer;
  align-self:flex-start;
  transition:background .15s ease;
}
.review-form-submit:hover{ background:#000; }

/* ---- star rating select ---- */

.star-rating-select{
  display:flex;
  flex-direction:row-reverse;
  justify-content:flex-end;
  gap:4px;
}
.star-rating-select input{ display:none; }
.star-rating-select label{
  cursor:pointer;
  font-size:1.4rem;
  color:#ddd;
  transition:color .15s ease;
  padding:0;
  letter-spacing:0;
  text-transform:none;
}
.star-rating-select label:hover,
.star-rating-select label:hover~label,
.star-rating-select input:checked~label{
  color:#e0a800;
}

/* ---- review dropzone ---- */

.review-dropzone{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding:32px;
  border:2px dashed var(--line);
  cursor:pointer;
  transition:border-color .2s ease;
}
.review-dropzone:hover,
.review-dropzone.dragover{
  border-color:var(--ink);
}
.review-dropzone-text{ font-size:.82rem; }
.review-dropzone-sub{
  font-size:.72rem;
  color:var(--text-muted);
}
.review-dropzone-name{
  font-size:.78rem;
  font-weight:600;
  margin-top:4px;
}

/* ---- snackbar / messages ---- */

.snackbar-container{
  position:fixed;
  top:16px;
  right:16px;
  z-index:9998;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.snackbar{
  padding:14px 20px;
  background:var(--ink);
  color:#fff;
  font-size:.82rem;
  border-radius:4px;
  display:flex;
  align-items:center;
  gap:12px;
  opacity:0;
  transform:translateY(-8px);
  transition:opacity .25s ease,transform .25s ease;
}
.snackbar-show{ opacity:1; transform:translateY(0); }
.snackbar-hide{ opacity:0; transform:translateY(-8px); }
.snackbar-close{
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
  font-size:1rem;
  opacity:.7;
}
.snackbar-close:hover{ opacity:1; }




/* Base Reset for Footer Content */
.footer {
    background-color: #eae6e1; /* The warm, minimalist grey-beige background */
    color: #333333;
    font-family: "Hanken Grotesk", sans-serif;
    padding: 80px 40px 40px 40px;
    font-size: 14px;
    line-height: 1.6;
}

.footer .container {
    width: 100%;
    padding: 0 40px;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 80px;
}

/* Brand Section */
.footer-brand h3 {
    font-size: 24px;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 500;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: #555555;
    max-width: 280px;
    margin: 0;
}

/* Navigation Columns */
.footer-column h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    color: #111111;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #000000;
}

/* Footer Bottom Layout */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 1px;
    color: #666666;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal a {
    color: #666666;
    text-decoration: none;
    margin-left: 25px;
}

.footer-legal a:hover {
    color: #000000;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-legal a {
        margin-left: 0;
        margin-right: 25px;
    }
}

/* =========================================================
   ACCOUNT PAGE
   ========================================================= */

/* ---- keyframes (defined first for reliability) ---- */

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

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


