/* ========== CSS VARIABLES (Based on 10deep.com) ========== */
:root {
    /* Colors */
    --color-primary: #212121;
    --color-secondary: #ab8c52;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f5;
    --color-gray: #666666;
    --color-border: #e0e0e0;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout (matching 10deep.com) */
    --header-height: 92px;
    --layout-outer: 50px;
    --layout-outer-medium: 30px;
    --layout-outer-small: 16px;
    --layout-gutter: 32px;
    --layout-gutter-medium: 22px;
    --layout-gutter-small: 16px;

    /* Product Grid */
    --columns: 4;
    --columns-medium: 3;
    --columns-small: 2;
    --columns-mobile: 1;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-primary);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
}

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

a:hover {
    color: var(--color-secondary);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--layout-outer);
}

/* ========== MARQUEE BORDERS ========== */
.marquee-border {
    position: fixed;
    width: 100%;
    background: var(--color-primary);
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    z-index: 9999;
    overflow: hidden;
    padding: 6px 0;
}

.marquee-top {
    top: 0;
}

.marquee-banner {
    background: var(--color-white);
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    overflow: hidden;
    padding: 10px 0;
}

.marquee-dark {
    background: var(--color-primary);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-reverse {
    animation: marquee-reverse 30s linear infinite;
}

.marquee-content span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    padding: 0 20px;
    text-transform: uppercase;
}

.marquee-banner .marquee-content span {
    color: var(--color-primary);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-33.33%); }
    100% { transform: translateX(0); }
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    height: var(--header-height);
}

.header.scrolled {
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: grid;
    grid-template-columns: 60px 1fr 180px;
    align-items: center;
    height: 100%;
    padding: 0 var(--layout-outer);
}

.header-left, .header-right {
    display: flex;
    align-items: center;
}

.header-right {
    gap: 8px;
    justify-content: flex-end;
}

.header-center {
    display: flex;
    justify-content: center;
}

.logo {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
}

/* Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
}

.menu-toggle:hover span {
    background-color: var(--color-secondary);
}

/* Icon Buttons */
.icon-btn {
    position: relative;
    padding: 4px;
    color: var(--color-primary);
}

.icon-btn:hover {
    color: var(--color-secondary);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 9px;
    font-weight: 600;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Bar */
.search-bar {
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-light-gray);
    transition: max-height 0.3s ease;
}

.search-bar.active {
    max-height: 60px;
}

.search-container {
    display: flex;
    align-items: center;
    padding: 15px var(--layout-outer);
    gap: 15px;
}

.search-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    font-size: 14px;
}

.search-close {
    font-size: 24px;
    color: var(--color-gray);
}

/* ========== NAVIGATION MENU ========== */
.nav-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
}

.nav-menu.active {
    pointer-events: all;
}

.nav-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu.active .nav-overlay {
    opacity: 1;
}

.nav-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 380px;
    background-color: var(--color-white);
    padding: 50px 30px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
    overflow-y: auto;
}

.nav-menu.active .nav-content {
    transform: translateX(0);
}

.nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: var(--color-gray);
}

.nav-links {
    list-style: none;
    margin-top: 30px;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-footer a {
    font-size: 13px;
    color: var(--color-gray);
}

.nav-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

/* ========== HERO SECTION ========== */
.hero-parallax {
    margin-top: calc(var(--header-height) + 30px);
    height: 70vh;
    min-height: 500px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.btn-primary {
    display: inline-block;
    padding: 15px 45px;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--color-white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
}

/* ========== PRODUCTS SECTION ========== */
.products {
    padding: 80px 0;
}

.products-alt {
    background-color: var(--color-light-gray);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
    gap: var(--layout-gutter);
}

.products-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--layout-gutter);
}

.product-card {
    cursor: pointer;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: var(--color-white);
    aspect-ratio: 2/3;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0;
    transition: transform 0.6s ease;
    transform-origin: center;
}

/* Specific zoom for T-shirts (IDs 2 and 3) */
.product-card[data-id="2"] .product-image img,
.product-card[data-id="3"] .product-image img {
    transform: scale(1.2);
}

.product-card[data-id="2"]:hover .product-image img,
.product-card[data-id="3"]:hover .product-image img {
    transform: scale(1.3);
}

/* Specific zoom for Hoodie (ID 1) - Zoom removed because it uses image swap */
.product-card[data-id="1"] .product-image img {
    transform: scale(1.6);
}

.product-card[data-id="1"]:hover .product-image img {
    transform: scale(1.6); /* No extra zoom on hover */
}

.product-card:hover .product-image img {
    /* Fallback for other products */
    transform: scale(1.08);
}

.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background-color: rgba(255,255,255,0.95);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .quick-add {
    transform: translateY(0);
}

.quick-add:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.product-info {
    padding: 0 5px;
}

.product-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.load-more-btn:hover {
    background-color: var(--color-primary);
}

.load-more-btn:hover .plus-icon {
    color: var(--color-white);
}

.plus-icon {
    font-size: 36px;
    font-weight: 300;
    color: var(--color-primary);
}

/* ========== SHOP PAGE ========== */
.shop-layout {
    padding: 50px 0 80px;
}

.shop-container {
    display: block;
    position: relative;
}

.shop-sidebar {
    display: none;
}

.shop-sidebar.active {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: var(--color-white);
    z-index: 3000;
    overflow-y: auto;
    padding: 60px 30px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.filter-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 28px;
    color: var(--color-gray);
    cursor: pointer;
}

.filter-overlay {
    display: none;
}

.filter-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2999;
}

.mobile-filter-toggle {
    display: flex;
    width: auto;
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.filter-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.filter-group {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--color-border);
}

.filter-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    cursor: pointer;
}

.color-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.color-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.color-name {
    font-size: 13px;
}

.clear-filters-btn {
    width: 100%;
    padding: 10px 20px;
    background-color: var(--color-light-gray);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
}

.clear-filters-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.results-count {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray);
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    font-size: 12px;
    cursor: pointer;
}

/* ========== PRODUCT PAGE ========== */
.product-page {
    margin-top: calc(var(--header-height) + 30px);
    padding: 60px 0 80px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-gallery {
    display: flex;
    gap: 15px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 80px;
}

.thumbnail {
    width: 80px;
    height: 107px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--color-secondary);
}

.gallery-main {
    flex: 1;
}

.gallery-main img {
    width: 100%;
    height: auto;
}

.product-details {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    height: fit-content;
}

.product-meta {
    margin-bottom: 12px;
}

.product-vendor {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gray);
}

.product-detail-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.size-chart-link {
    font-size: 11px;
    color: var(--color-secondary);
    text-decoration: underline;
}

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

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-option.selected {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(171,140,82,0.3);
}

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

.size-btn {
    min-width: 60px;
    padding: 10px 14px;
    border: 2px solid var(--color-border);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.size-btn.selected {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
}

.quantity-selector {
    display: flex;
    width: fit-content;
}

.qty-btn {
    width: 38px;
    height: 38px;
    border: 2px solid var(--color-border);
    font-size: 18px;
    font-weight: 600;
}

.qty-btn:hover {
    background-color: var(--color-light-gray);
}

.qty-input {
    width: 50px;
    height: 38px;
    border: 2px solid var(--color-border);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    padding: 16px 25px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.add-to-cart-btn:hover {
    background-color: var(--color-secondary);
}

.product-description {
    border-top: 1px solid var(--color-border);
    padding-top: 25px;
}

.product-description h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 20px;
}

.product-description h3:first-child {
    margin-top: 0;
}

.product-description p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 15px;
}

.product-description ul {
    list-style: none;
    padding: 0;
}

.product-description li {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-gray);
    padding-left: 18px;
    position: relative;
    margin-bottom: 6px;
}

.product-description li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

/* ========== COLLECTION SECTIONS ========== */
.collection-section {
    min-height: 100vh;
    position: relative;
}

.collection-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.collection-section.inverted .collection-container {
    direction: rtl;
}

.collection-section.inverted .collection-container > * {
    direction: ltr;
}

.collection-products {
    background-color: var(--color-white);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark variant for collection sections */
.collection-section.dark {
    background-color: #000000 !important;
}

.collection-section.dark .collection-products {
    background-color: #000000 !important;
}

.collection-section.dark .product-name {
    color: #ffffff;
}

.collection-section.dark .product-price {
    color: #ffffff;
}

.collection-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 600px;
    width: 100%;
}

.collection-fixed-bg {
    position: sticky;
    top: 0;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-overlay-content {
    text-align: center;
    color: var(--color-white);
}

.collection-overlay-content h2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.collection-overlay-content p {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.btn-outline {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* ========== SHOP FEED ========== */
.shop-feed {
    padding: 80px 0;
    background-color: var(--color-light-gray);
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

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

.feed-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feed-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.feed-item:hover .feed-overlay {
    opacity: 1;
}

.feed-item:hover img {
    transform: scale(1.1);
}

.feed-shop-btn {
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--color-white);
    padding: 10px 20px;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #cccccc;
    font-size: 13px;
}

.footer-col a:hover {
    color: var(--color-secondary);
}

.footer-col p {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    font-size: 13px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999999;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    :root {
        --columns: var(--columns-medium);
        --layout-outer: var(--layout-outer-medium);
        --layout-gutter: var(--layout-gutter-medium);
    }

    .container {
        padding: 0 var(--layout-outer);
    }

    .collection-container {
        grid-template-columns: 1fr;
    }

    .collection-fixed-bg {
        min-height: 400px;
        position: relative;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --columns: var(--columns-small);
        --layout-outer: var(--layout-outer-small);
        --layout-gutter: var(--layout-gutter-small);
        --header-height: 80px;
    }

    .header-container {
        grid-template-columns: 50px 1fr 140px;
    }

    .logo {
        font-size: 14px;
    }

    .logo-img {
        height: 64px;
    }

    .hero-text h1 {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .product-container {
        grid-template-columns: 1fr;
    }

    .product-details {
        position: relative;
        top: 0;
    }

    .products-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }

    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --columns: var(--columns-mobile);
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .collection-overlay-content h2 {
        font-size: 32px;
    }
}

/* ========== NOTIFICATIONS ========== */
.notification {
    position: fixed;
    top: 120px;
    right: 20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 20px 30px;
    border-radius: 4px;
    z-index: 99999;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-left: 4px solid var(--color-secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification.hiding {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .notification {
        top: 100px;
        right: 10px;
        left: 10px;
        padding: 15px 20px;
        font-size: 12px;
    }
}
