/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cool sophisticated color palette - Lighter backgrounds */
    --color-black: #0a0f1a;
    --color-dark-navy: #151b2e;
    --color-slate-blue: #1e2a42;
    --color-steel-gray: #2a3a55;
    --color-cool-gray: #3a4a6a;
    
    /* Metallic accents - Higher contrast */
    --color-platinum: #e8ecf0;
    --color-silver: #d0d8e0;
    --color-metallic-blue: #7fa8c4;
    --color-teal: #5ab3c4;
    --color-cool-gold: #d4c4a8;
    --color-metallic-gold: #f0e6d2;
    
    /* Accent colors - Vibrant pops */
    --color-ice-blue: #8fc4e0;
    --color-powder-blue: #a8c8e8;
    --color-mist-blue: #c0d8f0;
    --color-coral: #ff6b7a;
    --color-rose: #ff8fa3;
    --color-lavender: #b8a8e8;
    --color-purple: #9d7fd8;
    --color-emerald: #4ecdc4;
    --color-mint: #7fdfd4;
    --color-amber: #ffb84d;
    --color-peach: #ffb8a3;
    
    /* Text colors - Higher contrast */
    --color-white: #ffffff;
    --color-text-light: #f5f7fa;
    --color-text-muted: #c5d0e0;
    --color-text-dark: #8fa0b8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark-navy) 100%);
    color: var(--color-text-light);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(21, 27, 46, 0.95) 0%, rgba(15, 22, 32, 0.9) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 160, 130, 0.2);
    box-shadow: 0 2px 20px rgba(90, 179, 196, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.8rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-icon-container {
    position: relative;
}

.cart-icon {
    background: transparent;
    border: 1px solid var(--color-metallic-gold);
    color: var(--color-metallic-gold);
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.cart-icon:hover {
    background: var(--color-metallic-gold);
    color: var(--color-black);
}

.cart-count {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-rose) 100%);
    color: var(--color-white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 2px 8px rgba(255, 107, 122, 0.4);
}

.logo h1 {
    font-size: 1.4rem;
    color: var(--color-metallic-gold);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--color-metallic-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-metallic-gold), var(--color-coral), var(--color-teal));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-navy) 30%, var(--color-slate-blue) 60%, var(--color-steel-gray) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(143, 196, 224, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(90, 179, 196, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 122, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(184, 168, 232, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(184,160,130,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 200;
    color: var(--color-metallic-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 2px 30px rgba(240, 230, 210, 0.4);
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-powder-blue);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 15px rgba(168, 200, 232, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-rose) 50%, var(--color-peach) 100%);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(255, 107, 122, 0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
    border: 1px solid rgba(255, 107, 122, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(255, 107, 122, 0.6);
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-emerald) 50%, var(--color-ice-blue) 100%);
    color: var(--color-white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Products Section */
.products-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-dark-navy) 0%, var(--color-slate-blue) 50%, var(--color-black) 100%);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(184, 168, 232, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--color-metallic-gold) 0%, var(--color-coral) 50%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    font-weight: 200;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 5rem;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Gallery - Grid Layout */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    background: linear-gradient(135deg, var(--color-slate-blue) 0%, var(--color-dark-navy) 100%);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(184, 160, 130, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-coral), var(--color-rose), var(--color-peach), var(--color-amber));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(255, 107, 122, 0.25);
    border-color: rgba(255, 107, 122, 0.4);
    background: linear-gradient(135deg, var(--color-steel-gray) 0%, var(--color-slate-blue) 100%);
}

.product-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--color-steel-gray) 0%, var(--color-slate-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(122, 168, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(74, 155, 168, 0.1) 0%, transparent 50%);
}

.product-image-placeholder::after {
    content: '🍖';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    opacity: 0.3;
}

.product-label {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-peach) 100%);
    color: var(--color-black);
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1;
    border: 1px solid rgba(255, 184, 77, 0.4);
    box-shadow: 0 2px 10px rgba(255, 184, 77, 0.3);
}

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--color-metallic-gold);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.9;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 160, 130, 0.2);
    gap: 1rem;
}

.product-price {
    font-size: 1.8rem;
    color: var(--color-metallic-gold);
    font-weight: 400;
    letter-spacing: 1px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-emerald) 100%);
    border: 1px solid var(--color-teal);
    color: var(--color-white);
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(90, 179, 196, 0.3);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-rose) 100%);
    border-color: var(--color-coral);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 122, 0.5);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Product Categories */
.product-category {
    margin-bottom: 6rem;
}

.product-category:last-of-type {
    margin-bottom: 0;
}

.category-title {
    font-size: 2.2rem;
    color: var(--color-metallic-gold);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    font-weight: 200;
    position: relative;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-coral), var(--color-rose), var(--color-teal), var(--color-emerald), transparent);
}

.category-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Premium Cards for Grazing Tables */
.premium-card {
    border: 1px solid rgba(184, 160, 130, 0.3);
    background: linear-gradient(135deg, var(--color-slate-blue) 0%, var(--color-steel-gray) 50%, var(--color-dark-navy) 100%);
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--color-lavender), var(--color-purple), var(--color-coral), var(--color-amber));
    border-radius: 0;
    z-index: -1;
    opacity: 0.2;
}

.premium-card:hover {
    border-color: rgba(184, 168, 232, 0.6);
    box-shadow: 0 20px 55px rgba(184, 168, 232, 0.35);
    background: linear-gradient(135deg, var(--color-steel-gray) 0%, var(--color-slate-blue) 100%);
}

.premium-label {
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-purple) 100%);
    box-shadow: 0 3px 12px rgba(184, 168, 232, 0.5);
    color: var(--color-white);
}

/* Special Card for Super Bowl Board */
.special-card {
    border: 1px solid rgba(255, 107, 122, 0.4);
    background: linear-gradient(135deg, var(--color-slate-blue) 0%, var(--color-steel-gray) 100%);
    position: relative;
    animation: pulse-glow 3s ease-in-out infinite;
}

.special-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-rose), var(--color-amber), var(--color-coral));
    z-index: -1;
    opacity: 0.25;
}

.special-card:hover {
    border-color: rgba(255, 107, 122, 0.7);
    box-shadow: 0 18px 50px rgba(255, 107, 122, 0.4);
    background: linear-gradient(135deg, var(--color-steel-gray) 0%, var(--color-slate-blue) 100%);
}

.special-label {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-rose) 100%);
    box-shadow: 0 3px 15px rgba(255, 107, 122, 0.6);
    color: var(--color-white);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 25px rgba(255, 107, 122, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(255, 107, 122, 0.5);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Extras Section */
.extras-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-slate-blue) 0%, var(--color-dark-navy) 50%, var(--color-black) 100%);
    position: relative;
}

.extras-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 184, 77, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(78, 205, 196, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.extras-category {
    margin-bottom: 5rem;
}

.extras-category:last-of-type {
    margin-bottom: 0;
}

.extras-category-title {
    font-size: 2rem;
    color: var(--color-metallic-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.extras-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-coral), var(--color-teal), transparent);
}

.crackers-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 0.8rem;
    background: rgba(90, 179, 196, 0.1);
    border-left: 3px solid var(--color-teal);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.extra-item {
    background: linear-gradient(135deg, var(--color-slate-blue) 0%, var(--color-dark-navy) 100%);
    border: 1px solid rgba(184, 160, 130, 0.2);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.extra-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-amber), var(--color-peach));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.extra-item:hover::before {
    opacity: 1;
}

.extra-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 184, 77, 0.2);
    border-color: rgba(255, 184, 77, 0.4);
}

.extra-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(184, 160, 130, 0.15);
}

.extra-item-header h4 {
    color: var(--color-metallic-gold);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.extra-price {
    color: var(--color-ice-blue);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.extra-item-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.size-selector,
.quantity-selector,
.quantity-selector-full {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.size-selector label,
.quantity-selector label,
.quantity-selector-full label {
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.size-select,
.quantity-select {
    background: var(--color-black);
    border: 1px solid rgba(184, 160, 130, 0.3);
    color: var(--color-text-light);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: inherit;
    cursor: pointer;
}

.size-select:focus,
.quantity-select:focus {
    outline: none;
    border-color: var(--color-metallic-gold);
    box-shadow: 0 0 0 2px rgba(212, 196, 162, 0.2);
}

.size-select:hover,
.quantity-select:hover {
    border-color: rgba(184, 160, 130, 0.5);
}

.add-extra-btn {
    background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-peach) 100%);
    border: 1px solid var(--color-amber);
    color: var(--color-black);
    padding: 0.9rem 1.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 2px 10px rgba(255, 184, 77, 0.3);
}

.add-extra-btn:hover {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-emerald) 100%);
    border-color: var(--color-teal);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 179, 196, 0.4);
}

.add-extra-btn:active {
    transform: translateY(0);
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark-navy) 50%, var(--color-slate-blue) 100%);
    position: relative;
}

.reviews-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 30%, rgba(184, 168, 232, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 160, 130, 0.3), transparent);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.review-card {
    background: linear-gradient(135deg, var(--color-dark-navy) 0%, var(--color-slate-blue) 100%);
    border: 1px solid rgba(184, 160, 130, 0.2);
    border-left: 3px solid var(--color-teal);
    border-radius: 0;
    padding: 2.5rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--color-metallic-gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(90, 179, 196, 0.3);
    border-left-color: var(--color-coral);
    background: linear-gradient(135deg, var(--color-slate-blue) 0%, var(--color-dark-navy) 100%);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
}

.review-rating {
    display: flex;
    gap: 0.3rem;
}

.review-rating .star {
    color: var(--color-metallic-gold);
    font-size: 1.1rem;
    line-height: 1;
}

.review-date {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.review-text {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 160, 130, 0.1);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-rose) 50%, var(--color-peach) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1rem;
    flex-shrink: 0;
    letter-spacing: 1px;
    box-shadow: 0 3px 12px rgba(255, 107, 122, 0.3);
}

.author-info h4 {
    color: var(--color-metallic-gold);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.author-info p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: 5rem 0 2.5rem;
    border-top: 1px solid rgba(184, 160, 130, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--color-metallic-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-section h4 {
    color: var(--color-ice-blue);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--color-text-muted);
    line-height: 1.9;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.footer-section ul li a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-metallic-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(184, 160, 130, 0.1);
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Shopping Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark-navy) 100%);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.4s ease;
    border-left: 1px solid rgba(184, 160, 130, 0.2);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(184, 160, 130, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    color: var(--color-metallic-gold);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart-close {
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.cart-close:hover {
    color: var(--color-metallic-gold);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    color: var(--color-text-muted);
    text-align: center;
    padding: 3rem 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.cart-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(184, 160, 130, 0.1);
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.cart-item-info h4 {
    color: var(--color-metallic-gold);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.cart-item-info p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    grid-column: 1 / -1;
}

.quantity-btn {
    background: transparent;
    border: 1px solid var(--color-metallic-gold);
    color: var(--color-metallic-gold);
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 300;
}

.quantity-btn:hover {
    background: var(--color-metallic-gold);
    color: var(--color-black);
}

.quantity {
    color: var(--color-text-light);
    font-size: 1rem;
    min-width: 30px;
    text-align: center;
    font-weight: 400;
}

.remove-btn {
    background: transparent;
    border: 1px solid var(--color-text-muted);
    color: var(--color-text-muted);
    padding: 0.4rem 1rem;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-left: auto;
}

.remove-btn:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}

.cart-item-total {
    color: var(--color-ice-blue);
    font-size: 1.2rem;
    font-weight: 400;
    text-align: right;
}

/* Event Scheduling Section */
.event-scheduling {
    padding: 2rem;
    border-top: 1px solid rgba(184, 160, 130, 0.2);
    border-bottom: 1px solid rgba(184, 160, 130, 0.2);
    background: linear-gradient(135deg, var(--color-dark-navy) 0%, var(--color-slate-blue) 100%);
}

.event-scheduling-header h3 {
    color: var(--color-metallic-gold);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.setup-notice {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.15) 0%, rgba(90, 179, 196, 0.15) 100%);
    border-left: 3px solid var(--color-coral);
    padding: 0.8rem 1rem;
    color: var(--color-powder-blue);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input[type="date"],
.form-group select {
    background: var(--color-black);
    border: 1px solid rgba(184, 160, 130, 0.3);
    color: var(--color-text-light);
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input[type="date"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-metallic-gold);
    box-shadow: 0 0 0 2px rgba(212, 196, 162, 0.2);
}

.form-group input[type="date"]:hover,
.form-group select:hover {
    border-color: rgba(184, 160, 130, 0.5);
}

.setup-window-info {
    background: rgba(184, 160, 130, 0.1);
    border: 1px solid rgba(184, 160, 130, 0.2);
    padding: 1rem 1.2rem;
    margin-top: 0.5rem;
}

.setup-window-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.setup-window-info strong {
    color: var(--color-metallic-gold);
    font-weight: 400;
}

.setup-window-info span {
    color: var(--color-ice-blue);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(184, 160, 130, 0.2);
    background: var(--color-dark-navy);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(184, 160, 130, 0.1);
}

.cart-total span:first-child {
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-total span:last-child {
    color: var(--color-metallic-gold);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.checkout-button {
    width: 100%;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-rose) 50%, var(--color-peach) 100%);
    border: 1px solid var(--color-coral);
    color: var(--color-white);
    padding: 1.2rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 122, 0.3);
}

.checkout-button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-emerald) 50%, var(--color-ice-blue) 100%);
    border-color: var(--color-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 179, 196, 0.5);
}

.checkout-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-button:active:not(:disabled) {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .product-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .extras-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .extra-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 2rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .add-to-cart-btn {
        width: 100%;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-sidebar.active {
        right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .review-card {
        padding: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
