/* ==========================================================================
   AURA STUDIO — Modern Streetwear Stylesheet (Aimé Leon Dore / Kith Aesthetic)
   ========================================================================== */

/* Design Tokens & Custom Variables */
:root {
    --bg-primary: #fbfbf9; /* Off-white / Hueso */
    --bg-secondary: #ffffff; /* Solid White */
    --bg-tertiary: #f3f3ef; /* Light Warm Grey */
    --text-primary: #000000; /* Stark Black */
    --text-secondary: #666666; /* Medium Grey */
    --text-muted: #999999; /* Light Grey */
    --accent-color: #1c3b2b; /* Varsity Green */
    --accent-rgb: 28, 59, 43;
    --accent-light: #e8ece9;
    
    --border-color: #e5e5df; /* Clean light border */
    --border-dark: #000000;
    
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-title: 'Syne', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
    --header-height: 80px;
    --border-radius-sm: 2px; /* Square, sharp edges feel more professional */
    --border-radius-md: 4px;
    --border-radius-lg: 8px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #d1d1ca;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input {
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
    outline: none;
}

button {
    cursor: pointer;
}

/* Scroll reveal items */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-secondary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header / Navigation Bar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(251, 251, 249, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
}

.nav-container {
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-link-item {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link-item:hover {
    color: var(--text-primary);
}

.nav-link-item:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn {
    position: relative;
    padding: 10px;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.nav-btn:hover {
    color: var(--accent-color);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--accent-color);
    color: var(--bg-secondary);
    font-size: 9px;
    font-weight: 700;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: #ffffff; /* Stark white text inside hero to override dark default */
}

.hero-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    opacity: 0.85;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(44px, 7vw, 76px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 14px;
    line-height: 1.8;
    color: #e5e5df;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-actions .btn-primary {
    background-color: #ffffff;
    color: #000000;
}

.hero-actions .btn-primary:hover {
    background-color: var(--accent-color);
    color: #ffffff;
}

.hero-actions .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.hero-actions .btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: #ffffff;
    animation: scrollDown 2.2s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes scrollDown {
    0% { top: -15px; }
    100% { top: 40px; }
}

/* ==========================================================================
   Collections Showcase Section
   ========================================================================== */
.collections-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.section-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-container-fluid {
    width: 100%;
    padding: 80px 0 0 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 55px;
}

.section-subtitle {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.collection-card:hover {
    border-color: var(--border-dark);
}

/* Stand out slightly with thick border hover instead of glow */
.collection-card.latest-collection {
    border-color: #d1d1ca;
}

.collection-card.latest-collection:hover {
    border-color: var(--border-dark);
}

.collection-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: saturate(0.95);
}

.collection-card:hover .collection-img {
    transform: scale(1.03);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
}

.collection-info {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.collection-number {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.collection-badge-active {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.collection-card-title {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.collection-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    transition: var(--transition-fast);
}

.collection-link i {
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-link {
    color: #ffffff;
    text-decoration: underline;
}

.collection-card:hover .collection-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   Catalog Section (Shop)
   ========================================================================== */
.shop-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    transition: var(--transition-fast);
    background-color: var(--bg-primary);
}

.filter-btn:hover {
    border-color: var(--text-primary);
}

.filter-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    border-color: var(--text-primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--text-primary);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.prod-badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 1px;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-top: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.product-card:hover .product-actions {
    bottom: 0;
}

.action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition-fast);
    border: 1px solid var(--text-primary);
}

.action-btn:hover {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    transform: scale(1.05);
}

.product-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-coll {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}

.product-status {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent-color);
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

/* ==========================================================================
   Lookbook Section
   ========================================================================== */
.lookbook-section {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.lookbook-gallery {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 10px;
    padding: 0 10px;
}

.lookbook-item {
    position: relative;
    height: 580px;
    overflow: hidden;
}

.lookbook-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.lookbook-item:hover .lookbook-img {
    transform: scale(1.02);
}

.lookbook-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.lookbook-item:hover .lookbook-caption {
    opacity: 1;
    transform: translateY(0);
}

.lookbook-caption h4 {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.lookbook-caption p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* ==========================================================================
   About / Manifesto Section
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.manifesto-para {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-weight: 400;
}

.manifesto-signature {
    margin-top: 40px;
}

.manifesto-signature p {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
}

.manifesto-signature span {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.manifesto-box-accent {
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    padding: 40px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.manifesto-stat {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.manifesto-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.newsletter-title {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.newsletter-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-input {
    flex-grow: 1;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-primary);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    border-color: var(--text-primary);
}

.newsletter-btn {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    padding: 14px 28px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    border-radius: var(--border-radius-sm);
}

.newsletter-btn:hover {
    background-color: var(--accent-color);
}

.newsletter-success-msg {
    margin-top: 20px;
    font-size: 12px;
    color: var(--accent-color);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-secondary);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px 50px 40px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-socials a:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-1px);
}

.footer-links-group {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-links-col a {
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-links-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 40px 0 40px;
    display: flex;
    justify-content: center;
    font-size: 11px;
    color: var(--text-muted);
}

/* ==========================================================================
   Shopping Cart Slide-out Drawer
   ========================================================================== */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    z-index: 110;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cart-close-btn {
    font-size: 16px;
    padding: 5px;
    transition: var(--transition-fast);
}

.cart-close-btn:hover {
    color: var(--accent-color);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-empty-message {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--text-secondary);
    text-align: center;
}

.cart-empty-message i {
    font-size: 32px;
    color: var(--text-muted);
}

.cart-empty-message p {
    font-size: 13px;
}

/* Cart Item Card */
.cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.cart-item-img-container {
    width: 70px;
    height: 70px;
    background-color: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
}

.cart-item-coll {
    font-size: 9px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 12px;
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 70px;
}

.cart-item-remove {
    font-size: 12px;
    color: var(--text-muted);
    padding: 3px;
}

.cart-item-remove:hover {
    color: var(--text-primary);
}

.quantity-controller {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-primary);
}

.qty-btn {
    padding: 3px 7px;
    font-size: 9px;
    font-weight: 700;
}

.qty-btn:hover {
    background-color: var(--bg-tertiary);
}

.qty-val {
    font-size: 10px;
    padding: 0 6px;
    font-weight: 600;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-primary);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#cart-subtotal {
    font-size: 16px;
}

.btn-checkout {
    padding: 15px;
    font-size: 11px;
}

.cart-notice {
    font-size: 9px;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 12px;
}

/* Drawer Overlay Backdrop */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 105;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

/* ==========================================================================
   Quick View Modal
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 860px;
    max-width: 92%;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    transform: scale(0.97);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-gallery {
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: var(--bg-tertiary);
}

.modal-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-collection {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.modal-product-title {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.modal-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.modal-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 20px;
}

.modal-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-weight: 400;
}

.selector-group {
    margin-bottom: 25px;
}

.selector-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 8px;
}

.size-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.size-btn:hover {
    border-color: var(--text-primary);
}

.size-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-secondary);
    border-color: var(--text-primary);
}

.btn-add-modal {
    padding: 14px;
    font-size: 11px;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .collection-card {
        padding: 25px;
        height: 420px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .collection-card {
        height: 380px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lookbook-gallery {
        grid-template-columns: 1fr;
    }
    .lookbook-item {
        height: 400px;
    }
    .lookbook-item.item-wide {
        grid-column: span 1;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .modal-content {
        width: 100%;
        max-width: 480px;
    }
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-info {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 20px;
    }
    .hero-section {
        padding: 0 20px;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .cart-drawer {
        width: 100%;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-box {
        padding: 30px 15px;
    }
    .footer-container {
        padding: 0 20px 40px 20px;
    }
}
