/* ============================================
   Color System
   ============================================ */
:root {
    /* Background Gradient */
    --bg-gradient-start: #FEFEFE;
    --bg-gradient-end: #F5E6D3;
    
    /* Text Colors */
    --text-primary: #2C2C2C;
    --text-heading: #1A1A1A;
    --text-secondary: #666666;
    --text-light: #999999;
    
    /* Button Colors */
    --btn-primary: #8B6F47;
    --btn-primary-hover: #7A5F3F;
    --btn-secondary: rgba(255, 255, 255, 0.8);
    --btn-secondary-hover: rgba(255, 255, 255, 0.95);
    
    /* Card Colors */
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(139, 111, 71, 0.1);
    --card-shadow: rgba(0, 0, 0, 0.05);
    
    /* Accent Colors */
    --accent-gold: #FFD700;
    --accent-rating: #FFC107;
    --accent-success: #4CAF50;
    
    /* Shadows */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: visible;
}

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--btn-primary);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--btn-primary);
    color: white;
    transform: translateY(0);
}

.btn-primary:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0 1rem;
}

.header-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    gap: 1rem;
}

.header-top-text {
    flex: 1;
}

.header-top-actions {
    flex-shrink: 0;
}

.header-top-link {
    font-weight: 600;
    color: var(--btn-primary);
}

.header-top-link:hover {
    color: var(--btn-primary-hover);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--btn-primary);
    transition: transform var(--transition-normal);
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-domain {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    font-weight: 400;
}

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

.nav-list a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a.active {
    color: var(--btn-primary);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--btn-primary);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.cart-link {
    position: relative;
}

.cart-count {
    background-color: var(--btn-primary);
    color: white;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.75rem;
    margin-left: 5px;
    animation: pulse 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    transition: right var(--transition-normal);
    box-shadow: -2px 0 10px var(--shadow-medium);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 80px 20px 20px;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.mobile-nav-list a {
    display: block;
    padding: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background-color var(--transition-fast);
}

.mobile-nav-list a:hover {
    background-color: rgba(139, 111, 71, 0.1);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url("../images/Delicious Pizza Is Waiting For You.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 0.8s ease;
}

.hero-description {
    font-size: 1.2rem;
    color: #f5f5f5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

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

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-pizza-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-medium);
    object-fit: cover;
}

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

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

.pizza-animation {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 50%, #FFD700 100%);
    position: relative;
    animation: rotate 20s linear infinite, float 3s ease-in-out infinite;
    box-shadow: 0 10px 40px var(--shadow-medium);
}

.pizza-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* ============================================
   Sections
   ============================================ */
section {
    padding: 80px 0;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

/* ============================================
   Menu Page
   ============================================ */
.menu-page {
    padding: 60px 0 80px;
    min-height: calc(100vh - 200px);
    overflow: visible;
    opacity: 1;
    animation: none;
}

.menu-page .container {
    max-width: 1400px;
    overflow: visible;
}

.menu-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.menu-page .page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--btn-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-page .page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

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

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ============================================
   Pizza Grid & Cards
   ============================================ */
.pizza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    min-height: 400px;
    width: 100%;
    overflow: visible;
    align-items: start;
}

.menu-page .pizza-grid {
    margin-bottom: 4rem;
    padding: 0;
}

.pizza-grid:empty::before {
    content: 'Loading pizzas...';
    display: block;
    text-align: center;
    padding: 4rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
    grid-column: 1 / -1;
}

.pizza-grid:empty::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    margin: 2rem auto;
    border: 4px solid var(--card-border);
    border-top-color: var(--btn-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    grid-column: 1 / -1;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.pizza-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: all var(--transition-normal);
    cursor: default;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    width: 100%;
    box-sizing: border-box;
}

.pizza-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--btn-primary), var(--accent-gold));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.pizza-card:hover::before {
    transform: scaleX(1);
}

.pizza-card.pulse {
    animation: pulse 0.6s ease;
}

.pizza-card:nth-child(1) { animation-delay: 0.05s; }
.pizza-card:nth-child(2) { animation-delay: 0.1s; }
.pizza-card:nth-child(3) { animation-delay: 0.15s; }
.pizza-card:nth-child(4) { animation-delay: 0.2s; }
.pizza-card:nth-child(5) { animation-delay: 0.25s; }
.pizza-card:nth-child(6) { animation-delay: 0.3s; }
.pizza-card:nth-child(n+7) { animation-delay: 0.35s; }

.pizza-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.pizza-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pizza-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform var(--transition-normal);
}

.pizza-card:hover .pizza-emoji {
    transform: scale(1.1) rotate(5deg);
}

.pizza-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.pizza-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rating-star {
    color: var(--accent-rating);
    font-size: 1.2rem;
}

.rating-value {
    font-weight: 600;
    color: var(--text-primary);
}

.pizza-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
    line-height: 1.3;
    word-wrap: break-word;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.pizza-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    word-wrap: break-word;
    flex-grow: 1;
}

.pizza-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    flex-shrink: 0;
}

.pizza-price-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pizza-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--btn-primary);
    line-height: 1;
}

.pizza-size {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.add-to-cart-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    background-color: var(--btn-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 111, 71, 0.3);
    min-width: 100px;
}

.add-to-cart-btn .btn-icon {
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform var(--transition-normal);
}

.add-to-cart-btn .btn-text {
    transition: opacity var(--transition-normal);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.4);
    background-color: var(--btn-primary-hover);
}

.add-to-cart-btn:hover .btn-icon {
    transform: scale(1.2);
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(139, 111, 71, 0.3);
}

.add-to-cart-btn.added {
    background-color: var(--accent-success);
    animation: successPulse 0.5s ease;
}

.add-to-cart-btn.added .btn-icon {
    transform: scale(1.3);
}

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

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

/* ============================================
   Top List Section
   ============================================ */
.top-list {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Experience Section
   ============================================ */
.experience {
    background: rgba(255, 255, 255, 0.6);
}

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

.experience-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
    text-align: left;
}

.experience-card h3 {
    margin-bottom: 1rem;
    color: var(--btn-primary);
    font-size: 1.3rem;
}

.experience-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   About Section
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-image {
    width: 100%;
}

.about-image-photo {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    display: block;
}

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

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-success);
    margin-top: 0.5rem;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--btn-primary) 0%, var(--bg-gradient-end) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--btn-primary);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-item a {
    color: var(--btn-primary);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
    animation: fadeIn 0.8s ease;
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ============================================
   Cart Page
   ============================================ */
.cart-page {
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
    animation: slideInLeft 0.5s ease;
}

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

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 100%);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.cart-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--btn-primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--btn-primary);
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.quantity-btn:hover {
    background: var(--btn-primary-hover);
    transform: scale(1.1);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.remove-item-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.remove-item-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.cart-summary {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid var(--card-border);
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

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

.empty-cart-content h2 {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.empty-cart-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* ============================================
   Menu Page
   ============================================ */
.menu-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem;
    position: sticky;
    top: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--card-border);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--card-border);
    background: var(--card-bg);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 500;
    color: var(--text-primary);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    box-shadow: 0 2px 4px var(--shadow-light);
}

.filter-btn:hover {
    background: var(--btn-primary);
    color: white;
    border-color: var(--btn-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-medium);
}

.filter-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px var(--shadow-light);
}

.filter-btn.active {
    background: var(--btn-primary);
    color: white;
    border-color: var(--btn-primary);
    box-shadow: 0 4px 8px var(--shadow-medium);
    font-weight: 600;
}

.filter-btn:focus {
    outline: 2px solid var(--btn-primary);
    outline-offset: 2px;
}

/* ============================================
   Checkout Page
   ============================================ */
.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--btn-primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--btn-primary);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.checkout-summary {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
    position: sticky;
    top: 100px;
}

.checkout-items {
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.checkout-item-name {
    font-weight: 500;
}

.checkout-item-price {
    color: var(--text-secondary);
}

.checkout-form-error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #c62828;
    animation: slideIn 0.3s ease;
}

.checkout-page {
    padding: 60px 0;
    min-height: 60vh;
}

.checkout-form-container {
    position: relative;
}

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

/* ============================================
   Thank You Page
   ============================================ */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    animation: fadeInUp 0.8s ease;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--accent-success);
    position: relative;
    animation: scaleIn 0.5s ease;
}

.success-checkmark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid white;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thank-you-content h1 {
    margin-bottom: 1rem;
    color: var(--btn-primary);
}

.thank-you-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: rgba(255, 255, 255, 0.5);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--btn-primary);
}

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

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

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px var(--shadow-light);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: var(--text-primary);
    flex: 1;
}

.cookie-content a {
    color: var(--btn-primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ============================================
   Page Content (Privacy Policy, Terms)
   ============================================ */
.page-content {
    min-height: 60vh;
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
}

.content-wrapper h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--btn-primary);
    font-size: 1.5rem;
}

.content-wrapper h2:first-of-type {
    margin-top: 0;
}

.content-wrapper ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-wrapper ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.content-wrapper p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   Animations & Utilities
   ============================================ */
.fade-in {
    animation: fadeIn 0.8s ease;
}

.slide-up {
    animation: fadeInUp 0.8s ease;
}

.hidden {
    display: none !important;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(139, 111, 71, 0.3);
    border-radius: 50%;
    border-top-color: var(--btn-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    background: rgba(255, 255, 255, 0.3);
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    overflow: visible;
}

.review-card p,
.review-card span {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    word-wrap: break-word;
}

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

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--btn-primary) 0%, var(--bg-gradient-end) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--text-heading);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-rating .rating-star {
    color: var(--accent-rating);
    font-size: 0.9rem;
}

.review-rating .rating-value {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   FAQ / Accordion Section
   ============================================ */
.faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--card-border);
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    transition: all var(--transition-fast);
}

.accordion-header:hover {
    color: var(--btn-primary);
}

.accordion-header[aria-expanded="true"] {
    color: var(--btn-primary);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--btn-primary);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    padding: 0 1.5rem;
}

.accordion-content.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.accordion-content a {
    color: var(--btn-primary);
    text-decoration: underline;
}

/* ============================================
   Menu Page (duplicate removed - using styles from line 467)
   ============================================ */

/* ============================================
   Menu Info Section
   ============================================ */
.menu-info-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--card-border);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
    overflow: visible;
}

.info-card p,
.info-card li {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    word-wrap: break-word;
}

.info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--btn-primary);
    font-size: 1.5rem;
}

.info-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.size-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--card-border);
}

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

.size-name {
    font-weight: 600;
    color: var(--text-heading);
}

.size-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ingredients-list {
    list-style: none;
    margin-left: 0;
    margin-top: 1rem;
}

.ingredients-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.ingredients-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-success);
    margin-top: 0.5rem;
}

/* ============================================
   Delivery Info (Cart Page)
   ============================================ */
.delivery-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.delivery-info h4 {
    margin-bottom: 1rem;
    color: var(--btn-primary);
    font-size: 1.2rem;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 111, 71, 0.05);
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.delivery-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.delivery-item strong {
    display: block;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.delivery-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.delivery-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    color: var(--accent-success);
    font-size: 0.9rem;
    text-align: center;
}

/* ============================================
   Payment Methods Info (Checkout)
   ============================================ */
.payment-methods-info {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--card-border);
}

.payment-methods-info h3 {
    margin-bottom: 1rem;
    color: var(--btn-primary);
    font-size: 1.2rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-heading);
}

.security-note {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

/* ============================================
   Thank You Page Enhancements
   ============================================ */
.order-info-box {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
}

.order-info-box h3 {
    margin-bottom: 1.5rem;
    color: var(--btn-primary);
    text-align: center;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--btn-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.order-step strong {
    display: block;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.order-step p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.help-accordion {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.thank-you-actions .btn {
    min-width: 150px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page {
    padding: 60px 0;
    min-height: 60vh;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--btn-primary);
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--btn-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--card-border);
}

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

.hours-item .day {
    font-weight: 500;
    color: var(--text-heading);
}

.hours-item .time {
    color: var(--text-secondary);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-form-section {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
    color: var(--btn-primary);
}

.contact-form-wrapper > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-heading);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--btn-primary);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.contact-form-error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #c62828;
    animation: slideIn 0.3s ease;
}

.contact-form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2e7d32;
    animation: slideIn 0.3s ease;
}

.contact-map-section {
    margin-top: 4rem;
}

.contact-map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--btn-primary);
}

/* ============================================
   Cookie Policy Table
   ============================================ */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.cookie-table thead {
    background: var(--btn-primary);
    color: white;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--card-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: rgba(139, 111, 71, 0.05);
}

/* ============================================
   Cart Notification
   ============================================ */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 25px var(--shadow-medium);
    border: 1px solid var(--card-border);
    z-index: 1000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    min-width: 250px;
}

.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-text {
    font-weight: 500;
    color: var(--text-heading);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .cart-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        transform: translateY(-100px);
    }
    
    .cart-notification.show {
        transform: translateY(0);
    }
}

/* ============================================
   About Page
   ============================================ */
.about-page {
    padding: 60px 0;
    min-height: 60vh;
}

.about-page-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-story-section,
.about-mission-section,
.about-features-section,
.about-values-section,
.about-location-section {
    margin-bottom: 2rem;
}

.about-story-section .content-wrapper,
.about-mission-section .content-wrapper,
.about-features-section .content-wrapper,
.about-values-section .content-wrapper,
.about-location-section .content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.story-with-image {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    width: 100%;
}

.story-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    object-fit: cover;
}

.story-text {
    display: flex;
    flex-direction: column;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.about-story-section p,
.about-mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-mission-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-mission-section ul li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-mission-section ul li strong {
    color: var(--btn-primary);
}

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

.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--btn-primary);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

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

.value-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--btn-primary);
    transition: all var(--transition-normal);
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--btn-primary);
    font-size: 1.3rem;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.location-info {
    margin-top: 2rem;
}

.location-details {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--card-border);
}

.location-details h3 {
    margin-bottom: 1.5rem;
    color: var(--btn-primary);
}

.location-details p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.location-details a {
    color: var(--btn-primary);
    text-decoration: none;
}

.location-details a:hover {
    text-decoration: underline;
}

