/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e63946;
    --secondary-color: #457b9d;
    --accent-color: #f1faee;
    --dark-color: #1d3557;
    --light-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #f1f5f9 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(69, 123, 157, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(241, 250, 238, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-accept:hover {
    background: #c1121f;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.domain {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    opacity: 0.8;
    margin-left: 0.5rem;
}

.footer-section .domain {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.cart-link {
    background: var(--primary-color);
    color: var(--light-color) !important;
    padding: 8px 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-link:hover {
    background: #c1121f;
    transform: translateY(-2px);
}

.cart-link span {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

.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);
}

/* Hero Section */
.hero {
    background: var(--accent-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.hero h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    display: none;
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: var(--accent-color);
    display: block;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.category-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image:empty {
    display: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.product-description {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-details {
    padding: 0 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    display: inline-block;
    visibility: visible;
    opacity: 1;
    text-align: center;
    width: 100%;
    min-width: 120px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Deals Section */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.deal-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.deal-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
}

.deal-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.deal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.deal-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.deal-items {
    list-style: none;
    margin-bottom: 1.5rem;
}

.deal-items li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.deal-items li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.deal-price {
    margin-bottom: 1.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.discount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.deal-card .btn {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    opacity: 1 !important;
    visibility: visible !important;
    background: var(--primary-color) !important;
    color: var(--light-color) !important;
    border: 2px solid var(--primary-color);
}

.deal-card .btn:hover {
    background: #c1121f !important;
    border-color: #c1121f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.discount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* About Brand Section */
.about-brand {
    background: var(--accent-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
}

.about-icon {
    display: none;
}

.about-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Delivery Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    display: none;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--light-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--light-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: 1;
        height: 300px;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    .categories-grid,
    .products-grid,
    .deals-grid,
    .about-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-bottom: 1rem;
    }

    .domain {
        font-size: 0.75rem;
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }

    .logo a {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .product-card,
    .deal-card,
    .category-card {
        padding: 1.5rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-actions {
        width: 100%;
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

/* Filters Section */
.filters-section {
    background: var(--accent-color);
    padding: 2rem 0;
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.filter-select {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Menu Section */
.menu-section {
    padding: 60px 0;
}

/* Cart Page */
.cart-section {
    padding: 60px 0;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cart-item-price {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    padding: 5px;
}

.quantity-btn {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--accent-color);
    border-radius: 3px;
}

.quantity {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.remove-btn {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.remove-btn:hover {
    background: #c1121f;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cart-summary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.cart-summary h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid var(--dark-color);
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
}

.summary-row.discount {
    color: var(--primary-color);
}

.promo-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--accent-color);
    border-radius: 5px;
}

.promo-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.promo-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.promo-input-group input {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
}

.promo-info {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.promo-message {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.delivery-method {
    margin: 2rem 0;
}

.delivery-method h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.method-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.method-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.method-option:hover {
    border-color: var(--primary-color);
}

.method-option input[type="radio"] {
    margin-right: 1rem;
}

.method-content {
    flex: 1;
}

.method-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

.method-content span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pickup-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-large {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Product Page */
.product-details-section {
    padding: 60px 0;
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.product-image-large {
    position: sticky;
    top: 100px;
}

.product-display {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-display img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    max-height: 500px;
}

.product-display:empty {
    display: none;
}

.product-info {
    text-align: left;
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
    text-align: left;
    font-weight: 700;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.product-description-large {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: left;
}

.product-ingredients {
    margin-bottom: 1.5rem;
    text-align: left;
}

.product-ingredients h3 {
    margin-bottom: 0.5rem;
    color: #1a365d;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.product-ingredients p {
    text-align: left;
    color: #666;
    font-size: 1rem;
}

.customize-order-section {
    padding: 40px 0 60px;
}

.product-options {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: left;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-options h3 {
    margin-bottom: 1.5rem;
    color: #1a365d;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.option-select {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.option-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

.nutritional-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.nutritional-info h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.nutrition-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nutrition-label {
    color: var(--text-light);
}

.nutrition-value {
    font-weight: 600;
    color: var(--dark-color);
}

.allergens {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    text-align: center;
}

.fish-info {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.fish-info h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.fish-info p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
}

.product-info .product-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.product-options .product-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Store Page */
.store-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 80px 0 60px;
    text-align: center;
}

.store-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.map-section {
    padding: 60px 0;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.address-section {
    padding: 60px 0;
    background: var(--accent-color);
}

.address-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.address-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.address-card h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.address-info {
    margin-bottom: 2rem;
}

.address-line {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.parking-info {
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.parking-info h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.parking-info p {
    color: var(--text-light);
    line-height: 1.8;
}

.hours-section {
    padding: 60px 0;
}

.hours-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hours-grid {
    margin-bottom: 2rem;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.day {
    font-weight: 600;
    color: var(--dark-color);
}

.time {
    color: var(--text-light);
}

.peak-hours {
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.peak-hours h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.peak-hours ul {
    list-style: none;
    margin: 1rem 0;
}

.peak-hours li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.peak-hours li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.peak-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.pickup-delivery-section {
    padding: 60px 0;
    background: var(--accent-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.info-icon {
    display: none;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.info-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.delivery-conditions {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.delivery-conditions h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.delivery-conditions p {
    color: var(--text-light);
    line-height: 1.8;
}

.store-contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-icon {
    display: none;
}

.contact-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-icon-large {
    display: none;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    display: none;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.thank-you-message {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.order-info .info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.info-card p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.order-note,
.contact-note {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: left;
}

.order-note p,
.contact-note p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.order-note a,
.contact-note a {
    color: var(--primary-color);
    text-decoration: none;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--dark-color);
    color: var(--light-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    box-shadow: var(--shadow-hover);
    z-index: 10001;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive additions */
@media (max-width: 768px) {
    .cart-wrapper {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .product-details-wrapper {
        grid-template-columns: 1fr;
    }

    .product-image-large {
        position: static;
    }

    .product-display {
        min-height: 300px;
        padding: 1.5rem;
    }

    .product-display img {
        max-height: 300px;
    }

    .product-info {
        text-align: center;
    }

    .product-info h1,
    .product-info .product-description-large,
    .product-info .product-ingredients,
    .product-info .product-ingredients h3,
    .product-info .product-ingredients p,
    .product-info .product-price-large {
        text-align: center;
    }

    .product-options {
        text-align: center;
    }

    .product-options h3 {
        text-align: center;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-options .product-actions {
        flex-direction: column;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }

    .notification {
        right: 10px;
        left: 10px;
        bottom: 80px;
    }
}

/* Policy Pages */
.policy-section {
    padding: 80px 0;
}

.policy-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

.policy-date {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.policy-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }

    .policy-section h1 {
        font-size: 2rem;
    }
}

/* Checkout Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--light-color);
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid var(--border-color);
    background: var(--accent-color);
    border-radius: 10px 10px 0 0;
}

.modal-header h2 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.checkout-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.checkout-form .form-group input,
.checkout-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.checkout-form .form-group input:focus,
.checkout-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkout-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.order-summary-modal {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 8px;
}

.order-summary-modal .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-summary-modal .summary-row:last-child {
    border-bottom: none;
}

.order-summary-modal .summary-row.total {
    border-top: 2px solid var(--dark-color);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.form-actions .btn {
    min-width: 120px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .checkout-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }
}

