/* Color Variables */
:root {
    --primary-color: #D4B5A0;
    --primary-dark: #B8956F;
    --secondary-color: #F5E6D3;
    --accent-color: #E8D5C4;
    --text-dark: #5D4E37;
    --text-light: #8B7355;
    --background-light: #FAF7F2;
    --white: #ffffff;
    --shadow: rgba(212, 181, 160, 0.15);
    --beige-light: #F7F3EE;
    --beige-medium: #E8D5C4;
    --beige-dark: #D4B5A0;
    --brown-light: #B8956F;
    --brown-dark: #8B7355;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--beige-light);
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: var(--beige-light);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

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

.header-links {
    display: flex;
    gap: 2rem;
}

.header-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-links a:hover {
    color: var(--brown-light);
}

.header-actions-top .back-to-portfolio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: rgba(212, 181, 160, 0.15);
}

.header-actions-top .back-to-portfolio:hover {
    color: var(--brown-light);
    background: rgba(212, 181, 160, 0.25);
}

.header-main {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-brand h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--brown-light);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
    margin-top: -0.2rem;
    letter-spacing: 0.3px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav li {
    margin: 0;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav a:hover {
    color: var(--brown-light);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brown-light);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-section {
    position: relative;
}

.nav-category {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-category:hover {
    color: var(--brown-light);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -2rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 2rem;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    min-width: 800px;
    z-index: 1050;
}

.nav-section:hover .nav-dropdown {
    display: grid;
}

.nav-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--brown-light);
    margin: 0 0 1rem 0;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-column a:hover {
    color: var(--brown-light);
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--brown-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brown-light);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    padding: 0.8rem 1rem;
    border: 2px solid var(--brown-light);
    border-radius: 25px;
    background: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-input:focus {
    border-color: var(--brown-dark);
    box-shadow: 0 0 10px rgba(212, 181, 160, 0.3);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    right: 50px;
    width: 250px;
    background: white;
    border: 1px solid var(--brown-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
    margin-top: 5px;
}

.search-suggestion {
    padding: 0.8rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-suggestion:hover {
    background-color: rgba(212, 181, 160, 0.1);
}

.search-suggestion:last-child {
    border-bottom: none;
}

.suggestion-name {
    font-weight: 500;
    color: var(--text-dark);
}

.suggestion-price {
    color: var(--brown-light);
    font-size: 0.9rem;
    margin-left: auto;
}

.search-btn, .cart-btn, .account-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}

.search-btn:hover, .cart-btn:hover, .account-btn:hover {
    background: rgba(212, 181, 160, 0.1);
    color: var(--brown-light);
}

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

/* Hero Section */
.hero {
    margin-top: 100px;
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

/* Hero Background with Animations */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #faf7f4 0%, 
        #f0e8e8 25%, 
        #e8d5d5 50%, 
        #d4b8b8 75%, 
        #c4a4a4 100%);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(212, 181, 160, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 69, 19, 0.2) 0%, transparent 50%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(212, 181, 160, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(139, 69, 19, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(212, 181, 160, 0.5), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(139, 69, 19, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(10px); }
    66% { transform: translateY(-5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 181, 160, 0.2), rgba(139, 69, 19, 0.1));
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

.floating-element-4 {
    width: 30px;
    height: 30px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.floating-element-5 {
    width: 50px;
    height: 50px;
    top: 10%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.hero-banner {
    position: relative;
    height: 600px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide .hero-content {
    text-align: center;
    z-index: 3;
    color: var(--text-dark);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brown-dark);
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleFadeIn 1.5s ease-out;
}

.hero-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: subtitleFadeIn 1.5s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.6;
    animation: descriptionFadeIn 1.5s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsFadeIn 1.5s ease-out 0.9s both;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta.primary {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(184, 149, 111, 0.4);
}

.hero-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 149, 111, 0.6);
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-light));
}

.hero-cta.secondary {
    background: transparent;
    color: var(--brown-dark);
    border: 2px solid var(--brown-light);
}

.hero-cta.secondary:hover {
    background: var(--brown-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 149, 111, 0.3);
}

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

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

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

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

/* Hero Categories */
.hero-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #f0f8f4 50%, #f4f0f8 100%);
    position: relative;
    overflow: hidden;
}

.hero-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23b8956f" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23d4b5a0" opacity="0.15"/><circle cx="60" cy="80" r="1" fill="%23b8956f" opacity="0.1"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

.hero-categories .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero-categories .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: #6b4b6b;
    margin-bottom: 15px;
    position: relative;
}

.hero-categories .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b8956f, #d4b5a0);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    color: #8b6b7b;
    font-style: italic;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 149, 111, 0.05) 0%, rgba(212, 181, 160, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.category-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    height: 250px;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(184, 149, 111, 0.1) 0%, rgba(212, 181, 160, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #b8956f;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.category-card:hover .category-icon {
    opacity: 1;
    transform: translateY(0);
}

.category-content {
    padding: 30px 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.category-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #6b4b6b;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.category-card:hover .category-content h3 {
    color: #b8956f;
}

.category-content p {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    color: #8b6b7b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b8956f;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Crimson Text', serif;
    padding: 12px 25px;
    border: 2px solid #b8956f;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #b8956f, #d4b5a0);
    transition: left 0.3s ease;
    z-index: -1;
}

.category-link:hover::before {
    left: 0;
}

.category-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 149, 111, 0.3);
}

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

.category-link:hover i {
    transform: translateX(5px);
}

/* Hero CTA Bottom */
.hero-cta-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.hero-cta-bottom .hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.hero-cta-bottom .hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, var(--brown-dark), var(--brown-light));
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--beige-medium), var(--beige-dark));
    padding: 2rem 0;
    text-align: center;
}

.promo-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.promo-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 300;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 15px;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: linear-gradient(135deg, #fdfcfb 0%, #f8f6f4 50%, #f3f0ed 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
                radial-gradient(circle at 30% 70%, rgba(255, 107, 157, 0.02) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(212, 181, 160, 0.03) 0%, transparent 60%),
                linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    pointer-events: none;
    animation: gradientShift 20s ease-in-out infinite;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.products h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--text-dark), var(--brown-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.products .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 107, 157, 0.2);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.7);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    cursor: pointer;
    border: 1px solid rgba(212, 181, 160, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(20px);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.product-image {
    height: 320px;
    background: linear-gradient(135deg, #faf8f8 0%, #f0ebe8 50%, #e8ddd8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 157, 0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.product-card:hover .product-image::before {
    transform: translateX(100%);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(255, 107, 157, 0.02) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    opacity: 1;
}

.product-image svg {
    opacity: 0.85;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image svg {
    transform: scale(1.08);
    opacity: 1;
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 248, 248, 0.95) 100%);
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.4;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: #ff6b9d;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
}

.product-price::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    transition: width 0.3s ease;
}

.product-card:hover .product-price::before {
    width: 100%;
}

.size-selection {
    margin-bottom: 1.5rem;
}

.size-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #c44569, #ff6b9d);
}

/* New Arrivals Section */
.new-arrivals {
    padding: 5rem 0;
    background: var(--beige-light);
}

.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.arrival-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(212, 181, 160, 0.1);
    transition: all 0.3s ease;
}

.arrival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.2);
}

.arrival-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.new-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--brown-light);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arrival-info {
    padding: 1.5rem;
    text-align: center;
}

.arrival-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.arrival-info .price {
    font-size: 1.2rem;
    color: var(--brown-light);
    font-weight: 700;
}

.size-select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--beige-medium);
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    margin-bottom: 0.5rem;
}

.size-select:focus {
    outline: none;
    border-color: var(--beige-dark);
    box-shadow: 0 0 0 3px rgba(212, 181, 160, 0.1);
}

.size-chart-link {
    color: var(--brown-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.size-chart-link:hover {
    color: var(--brown-dark);
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, var(--beige-dark), var(--brown-light));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 181, 160, 0.3);
    margin-top: auto;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 181, 160, 0.4);
}

.add-to-cart:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(212, 181, 160, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-medium) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--brown-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.about .section-subtitle {
    font-size: 1.3rem;
    color: var(--brown-light);
    margin-bottom: 3rem;
    font-weight: 500;
}

.about p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 181, 160, 0.2);
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.1);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 181, 160, 0.2);
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 181, 160, 0.2);
}

.feature i {
    color: var(--brown-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.4rem;
    letter-spacing: 0.3px;
}

.feature p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    font-size: 1rem;
}

.about-brand-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-medium) 100%);
    border-radius: 15px;
    border: 2px solid rgba(212, 181, 160, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 1cm;
}

.about-brand-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(212, 181, 160, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(212, 181, 160, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-brand-display .brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--text-dark), var(--brown-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-brand-display .brand-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--brown-light);
    margin: 10px 0 0 0;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Size Guide Section */
.size-guide {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.size-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 181, 160, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 181, 160, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.size-guide h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--text-dark), var(--brown-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.size-guide .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.size-guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.size-guide-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.size-guide-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 181, 160, 0.1);
}

.size-guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.15);
}

.size-guide-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--beige-dark), var(--brown-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 181, 160, 0.3);
}

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

.size-guide-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.size-guide-cta {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    height: fit-content;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.size-guide-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.size-guide-cta p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.size-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--beige-dark), var(--brown-light));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 181, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.size-guide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.size-guide-btn:hover::before {
    left: 100%;
}

.size-guide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 181, 160, 0.4);
    color: white;
    text-decoration: none;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(248, 245, 242, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 181, 160, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 181, 160, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--text-dark), var(--brown-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.contact .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--brown-light);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 181, 160, 0.2);
    box-shadow: 0 15px 40px rgba(212, 181, 160, 0.15);
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid var(--beige-medium);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--beige-dark);
    box-shadow: 0 0 0 4px rgba(212, 181, 160, 0.15);
    background: white;
    transform: translateY(-2px);
}

.contact-form button {
    background: linear-gradient(135deg, var(--beige-dark), var(--brown-light));
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 181, 160, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.4);
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
}

/* Shopping Cart */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1999;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(212, 181, 160, 0.2);
    border-left: 1px solid rgba(212, 181, 160, 0.2);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2.5rem 2rem;
    border-bottom: 1px solid rgba(212, 181, 160, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--beige-light), rgba(248, 245, 242, 0.8));
}

.cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin: 0;
    background: linear-gradient(135deg, var(--text-dark), var(--brown-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3px;
}

.close-cart {
    background: rgba(212, 181, 160, 0.1);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    background: rgba(212, 181, 160, 0.2);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-cart svg {
    opacity: 0.3;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
}

.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.empty-cart .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--beige-dark), var(--brown-light));
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(212, 181, 160, 0.1);
    transition: all 0.3s ease;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.cart-item:hover {
    background: rgba(248, 245, 242, 0.5);
    transform: translateX(5px);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--beige-medium), var(--beige-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 181, 160, 0.2);
}

.cart-item-image svg {
    opacity: 0.8;
    width: 35px;
    height: 35px;
}

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

.cart-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.3px;
}

.cart-item-details {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.cart-item-price {
    font-weight: 700;
    color: var(--brown-light);
    font-size: 1.1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.8rem;
    background: rgba(248, 245, 242, 0.5);
    padding: 0.5rem;
    border-radius: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.8rem;
    background: rgba(248, 245, 242, 0.5);
    padding: 0.5rem;
    border-radius: 10px;
}

.quantity-btn {
    background: var(--beige-medium);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 181, 160, 0.2);
}

.quantity-btn:hover {
    background: var(--beige-dark);
    color: white;
    transform: scale(1.1);
}

.quantity {
    font-weight: 600;
    min-width: 25px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-dark);
}

.remove-item {
    background: rgba(255, 71, 87, 0.1);
    border: none;
    color: #ff4757;
    cursor: pointer;
    padding: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.remove-item:hover {
    background: #ff4757;
    color: white;
    transform: scale(1.1);
}

.cart-footer {
    padding: 2.5rem 2rem;
    border-top: 1px solid rgba(212, 181, 160, 0.2);
    background: linear-gradient(135deg, var(--beige-light), rgba(248, 245, 242, 0.8));
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(212, 181, 160, 0.2);
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--beige-dark), var(--brown-light));
    color: white;
    border: none;
    padding: 1.3rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 181, 160, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.checkout-btn:hover::before {
    left: 100%;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 181, 160, 0.4);
}

.checkout-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 181, 160, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--beige-light);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section.brand-section {
    padding-right: 2rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--beige-light);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-section h4 {
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--beige-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: var(--beige-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 181, 160, 0.1);
    color: var(--brown-light);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--brown-light);
    color: white;
    transform: translateY(-2px);
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul a {
    color: var(--beige-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-section ul a:hover {
    color: var(--brown-light);
    padding-left: 5px;
}

.newsletter-section {
    background: rgba(212, 181, 160, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 181, 160, 0.1);
}

.newsletter-form {
    margin: 1.5rem 0;
}

.newsletter-input {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    background: transparent;
    color: var(--text-dark);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--brown-light);
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--brown-dark);
}

.newsletter-benefits {
    margin-top: 1.5rem;
}

.newsletter-benefits p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--beige-medium);
}

.newsletter-benefits i {
    color: var(--brown-light);
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 181, 160, 0.2);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--beige-medium);
    font-size: 0.9rem;
    margin: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--beige-medium);
    font-size: 0.9rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--brown-light);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--beige-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header-main {
        padding: 0.8rem 0;
    }
    
    .header-main-content {
        padding: 0 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .header .container {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .nav ul {
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    .header-actions {
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .back-to-portfolio {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .search-btn, .cart-btn {
        padding: 0.6rem;
    }
    
    .hero {
        margin-top: 60px;
    }
    
    .hero-banner {
        padding: 20px 0 40px;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .arrivals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .promo-banner {
        padding: 3rem 0;
    }
    
    .promo-content h2 {
        font-size: 2rem;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about h2 {
        font-size: 2.2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .size-guide {
        padding: 60px 0;
    }
    
    .size-guide h2 {
        font-size: 2.2rem;
    }
    
    .size-guide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .size-guide-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .size-guide-item {
        padding: 1.5rem;
    }
    
    .size-guide-cta {
        padding: 2rem;
    }
    
    .size-guide-cta h3 {
        font-size: 1.5rem;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .products {
        padding: 60px 0;
    }
    
    .products h2 {
        font-size: 2.2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-card {
        border-radius: 20px;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .new-arrivals {
        padding: 60px 0;
    }
    
    .new-arrivals h2 {
        font-size: 2.2rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section.brand-section {
        padding-right: 0;
        text-align: center;
    }
    
    .newsletter-section {
        padding: 1.5rem;
    }
    
    .newsletter-input {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .newsletter-form input {
        border-radius: 10px 10px 0 0;
    }
    
    .newsletter-form button {
        border-radius: 0 0 10px 10px;
        padding: 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .product-filters {
        flex-wrap: wrap;
        gap: 0.3rem;
        margin-bottom: 3rem;
    }
    
    .filter-btn {
        margin: 0.2rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .view-all-btn {
        padding: 1rem 2.5rem;
        font-size: 0.8rem;
    }
}

/* Size Selector Styles */
.size-selector {
    margin: 15px 0;
}

.size-selector label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.size-selector select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid var(--beige-light);
    border-radius: 8px;
    background: white;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.size-selector select:hover {
    border-color: var(--beige-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
}

.size-selector select:focus {
    outline: none;
    border-color: var(--beige-dark);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    transform: translateY(-2px);
}

.size-selector select:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Size Chart Link Styles */
.size-chart-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--beige-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.size-chart-link:hover {
    color: white;
    background-color: var(--beige-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.size-chart-link:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Product actions */
.product-actions {
    margin: 15px 0;
    text-align: center;
}

.details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.details-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Product Detail Page Styles */
.product-detail-page {
    padding: 100px 0 50px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--background-light) 0%, rgba(248, 245, 242, 0.8) 100%);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 181, 160, 0.1);
}

.breadcrumb a {
    color: var(--brown-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--brown-dark);
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--text-light);
}

.product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    align-items: start;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image {
    width: 100%;
    height: 550px;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-medium) 50%, var(--beige-dark) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(212, 181, 160, 0.2);
    border: 1px solid rgba(212, 181, 160, 0.1);
    position: relative;
}

.main-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.main-image:hover::before {
    transform: translateX(100%);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.main-image img:hover {
    transform: scale(1.02);
}

.thumbnail-gallery {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.thumbnail {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--beige-medium), var(--beige-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(212, 181, 160, 0.15);
}

.thumbnail:hover {
    border-color: var(--brown-light);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 181, 160, 0.3);
}

.thumbnail.active {
    border-color: var(--brown-light);
    box-shadow: 0 8px 25px rgba(212, 181, 160, 0.3);
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(212, 181, 160, 0.15);
    border: 1px solid rgba(212, 181, 160, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-dark), var(--brown-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brown-light);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-description {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 1.5rem;
    background: rgba(248, 245, 242, 0.5);
    border-radius: 15px;
    border-left: 4px solid var(--beige-dark);
}

.product-description h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-description h4 {
    font-size: 1.2rem;
    color: var(--brown-light);
    margin: 20px 0 10px;
    font-weight: 500;
}

.product-description p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.product-description li {
    color: var(--text-light);
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.product-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brown-light);
    font-weight: bold;
}

.purchase-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 30px;
}

.add-to-cart-detail,
.buy-now {
    width: 100%;
    padding: 1.3rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.add-to-cart-detail {
    background: linear-gradient(135deg, var(--beige-dark), var(--brown-light));
    color: white;
    box-shadow: 0 6px 20px rgba(212, 181, 160, 0.3);
}

.add-to-cart-detail:hover {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.4);
}

.buy-now {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    color: white;
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.buy-now:hover {
    background: linear-gradient(135deg, var(--brown-dark), #654321);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
}

.add-to-cart-detail:active,
.buy-now:active {
    transform: translateY(-1px);
}

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-price {
        font-size: 1.5rem;
    }
    
    .purchase-section {
        flex-direction: column;
    }
    
    .thumbnail-gallery {
        flex-wrap: wrap;
    }
    
    .thumbnail {
        width: 80px;
        height: 64px;
    }
}

/* Size Chart Table Styles */
.size-chart-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 120px);
}

.size-charts {
    margin-bottom: 3rem;
}

.size-chart-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.size-chart-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--beige-medium), var(--beige-dark));
}

.size-chart-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.size-chart-section h2 {
    color: var(--beige-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.size-chart-section h2 i {
    color: var(--beige-medium);
    font-size: 1.5rem;
}

.table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    background: white;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.size-table th {
    background: linear-gradient(135deg, var(--beige-dark) 0%, var(--beige-medium) 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 1.2rem 1rem;
    text-align: center;
    position: relative;
    border: none;
}

.size-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

.size-table td {
    padding: 1rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.size-table td:first-child {
    font-weight: 700;
    color: var(--beige-dark);
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(139, 69, 19, 0.02) 100%);
}

.size-table tr:hover td {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.08) 0%, rgba(139, 69, 19, 0.04) 100%);
    transform: scale(1.02);
}

.size-table tr:hover td:first-child {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15) 0%, rgba(139, 69, 19, 0.08) 100%);
    color: var(--beige-dark);
}

.size-table td strong {
    color: var(--beige-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Measurement Guide Styles */
.measurement-guide {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
    position: relative;
    overflow: hidden;
}

.measurement-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--beige-medium), var(--beige-dark));
}

.measurement-guide h2 {
    color: var(--beige-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.measurement-guide h2 i {
    color: var(--beige-medium);
    font-size: 1.5rem;
}

.measurement-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(139, 69, 19, 0.02) 100%);
    padding: 1.8rem;
    border-radius: 15px;
    border-left: 4px solid var(--beige-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--beige-light), transparent);
    border-radius: 0 0 0 50px;
    opacity: 0.3;
}

.tip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    border-left-color: var(--beige-dark);
}

.tip h3 {
    color: var(--beige-dark);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.tip p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

/* Size Help Section */
.size-help {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.size-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--beige-medium), var(--beige-dark));
}

.size-help h2 {
    color: var(--beige-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.size-help h2 i {
    color: var(--beige-medium);
    font-size: 1.5rem;
}

.size-help p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(139, 69, 19, 0.02) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(139, 69, 19, 0.05) 100%);
    transform: translateY(-2px);
}

.contact-info i {
    color: var(--beige-medium);
    width: 20px;
    font-size: 1.1rem;
}

/* Responsive Design for Size Charts */
@media (max-width: 768px) {
    .size-chart-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .size-chart-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .size-table th,
    .size-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .measurement-tips {
        grid-template-columns: 1fr;
    }
    
    .tip {
        padding: 1.2rem;
    }
    
    .measurement-guide,
    .size-help {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.hero-particles div {
    animation: pulse 4s ease-in-out infinite;
    animation-delay: calc(var(--particle-delay, 0) * 0.5s);
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--brown-light);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    box-shadow: 0 4px 15px var(--shadow);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1002;
}

.notification.show {
    transform: translateX(0);
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

/* Mobile fixes for white edges */
@media (max-width: 480px) {
    /* Remove white edges on mobile */
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .nav {
        max-width: 100%;
    }
    
    .hero {
        padding: 120px 1rem 80px;
    }
}