/* ============================================
   FramedGaze - Main Stylesheet
   ============================================ */

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

:root {
    --cream: #FDF8F3;
    --warm-white: #FFFAF5;
    --terracotta: #C4846C;
    --terracotta-light: #E6A88E;
    --terracotta-dark: #A66B55;
    --sage: #9CAF94;
    --sage-light: #B8C9B1;
    --sage-dark: #7A9970;
    --charcoal: #3D3D3D;
    --warm-gray: #6B6560;
    --blush: #E8D5CC;
    --gold: #D4A853;
    --gold-light: #E8C97A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--terracotta);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(196, 132, 108, 0.1);
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--terracotta);
    letter-spacing: 8px;
    overflow: hidden;
}

.loader-logo span {
    display: inline-block;
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--blush);
    margin-top: 2rem;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--terracotta), var(--gold));
    animation: loading 2s ease forwards;
}

@keyframes loading {
    to { width: 100%; }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 248, 243, 0);
    backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--terracotta);
    text-decoration: none;
    letter-spacing: 4px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links li {
    overflow: hidden;
}

.nav-links a {
    text-decoration: none;
    color: var(--warm-gray);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--terracotta);
    color: white !important;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(196, 132, 108, 0.3);
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 132, 108, 0.4);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--warm-gray);
    transition: stroke 0.3s ease;
}

.cart-icon:hover svg {
    stroke: var(--terracotta);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--terracotta);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    z-index: 999;
    padding: 100px 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 1.5rem 0;
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--terracotta);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 60px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: white;
    box-shadow: 0 8px 30px rgba(196, 132, 108, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--terracotta-dark), var(--terracotta));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 132, 108, 0.45);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: white;
    transform: translateY(-3px);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--terracotta);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1,
.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.section-header p {
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   Shop Page Styles
   ============================================ */

.shop-hero {
    padding: 12rem 2rem 4rem;
    background: var(--warm-white);
    text-align: center;
}

.shop-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.shop-hero p {
    color: var(--warm-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
    padding: 2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--blush);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--blush);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}

.filter-sort {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-sort label {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.filter-sort select {
    padding: 0.6rem 2rem 0.6rem 1rem;
    border: 1px solid var(--blush);
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
    color: var(--charcoal);
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

/* Product Grid */
.shop-grid {
    padding: 4rem 2rem;
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(196, 132, 108, 0.15);
}

.product-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: var(--blush);
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.8rem;
    background: var(--terracotta);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-quick-view {
    position: absolute;
    inset: 0;
    background: rgba(61, 61, 61, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-quick-view {
    opacity: 1;
}

.quick-view-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--charcoal);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.quick-view-btn:hover {
    background: var(--terracotta);
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.add-to-cart-btn {
    width: 45px;
    height: 45px;
    background: var(--terracotta);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 132, 108, 0.3);
}

.add-to-cart-btn:hover {
    background: var(--terracotta-dark);
    transform: scale(1.1);
}

.add-to-cart-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--warm-gray);
}

.no-products h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

/* ============================================
   Product Detail Page
   ============================================ */

.product-detail {
    padding: 10rem 2rem 4rem;
    background: var(--cream);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-gallery {
    position: relative;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    background: var(--blush);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details {
    padding: 2rem 0;
}

.product-details .product-category {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-details h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-details .product-price {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.product-details .product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    display: block;
    -webkit-line-clamp: unset;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--warm-gray);
}

.product-features li svg {
    width: 20px;
    height: 20px;
    stroke: var(--terracotta);
    flex-shrink: 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
}

.product-meta {
    padding-top: 2rem;
    border-top: 1px solid var(--blush);
}

.product-meta p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}

/* Related Products */
.related-products {
    padding: 6rem 2rem;
    background: var(--warm-white);
}

/* ============================================
   Cart Page
   ============================================ */

.cart-page {
    padding: 10rem 2rem 4rem;
    background: var(--cream);
    min-height: 100vh;
}

.cart-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-empty svg {
    width: 80px;
    height: 80px;
    stroke: var(--blush);
    margin-bottom: 2rem;
}

.cart-empty h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.cart-empty p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.cart-items {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--blush);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

.cart-item-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.cart-item-info p {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.cart-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.cart-item-remove {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: var(--terracotta);
}

.cart-item-remove:hover svg {
    stroke: white;
}

.cart-item-remove svg {
    width: 18px;
    height: 18px;
    stroke: var(--warm-gray);
    transition: stroke 0.3s ease;
}

.cart-summary {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--blush);
}

.cart-summary-row:last-of-type {
    border-bottom: none;
}

.cart-summary-row.total {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.cart-summary-row.total span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

.cart-checkout {
    margin-top: 1.5rem;
}

.cart-checkout .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Thank You Page
   ============================================ */

.thank-you {
    padding: 12rem 2rem 6rem;
    background: var(--cream);
    min-height: 100vh;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--terracotta-light), var(--terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
}

.thank-you h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.thank-you p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-page {
    padding: 12rem 2rem 6rem;
    background: var(--cream);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.legal-content .last-updated {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--blush);
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--terracotta);
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: var(--charcoal);
    color: white;
    padding: 6rem 2rem 3rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage), var(--terracotta));
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--terracotta);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--terracotta-light);
    text-decoration: none;
}

/* ============================================
   Animations
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stagger-children > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Snipcart Customization
   ============================================ */

.snipcart-modal__container {
    font-family: 'Nunito', sans-serif !important;
}

.snipcart-cart-header {
    background: var(--terracotta) !important;
}

.snipcart-cart-button--highlight {
    background: var(--terracotta) !important;
}

.snipcart-cart-button--highlight:hover {
    background: var(--terracotta-dark) !important;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .product-detail-grid {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .cursor, .cursor-dot {
        display: none;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-categories {
        justify-content: center;
    }

    .filter-sort {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

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

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .cart-item-price,
    .cart-item-remove {
        grid-column: 2;
    }

    .cart-item-remove {
        justify-self: end;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-header h1,
    .section-header h2 {
        font-size: 2.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .thank-you h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 2rem;
    }
}

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

    .filter-categories {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }
}
