/* Base Styles */
:root {
    --primary-color: #003da5; /* Pizza 73 blue */
    --secondary-color: #ffc600; /* Pizza 73 yellow */
    --accent-color: #e63946;
    --dark-color: #333333;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-add-to-cart, .btn-buy-now, .btn-checkout {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: #002d7c;
    color: var(--light-color);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: var(--light-color);
    width: 100%;
}

.btn-add-to-cart:hover {
    background-color: #002d7c;
}

.btn-buy-now {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    width: 100%;
    margin-top: 1rem;
}

.btn-buy-now:hover {
    background-color: #e5b200;
}

.btn-checkout {
    background-color: var(--success-color);
    color: var(--light-color);
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.2rem;
    font-size: 1.8rem;
}

.btn-checkout:hover {
    background-color: #3d8b40;
}

/* Header */
header {
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 5rem;
    width: auto;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.6rem;
    position: relative;
}

.nav-menu li a:hover, .nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

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

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 61, 165, 0.8), rgba(0, 61, 165, 0.8)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: blur(5px);
}

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

.hero h1 {
    font-size: 4.8rem;
    color: var(--light-color);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 2rem;
    max-width: 70rem;
    margin: 0 auto 3rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 50rem;
    margin: 0 auto;
}

.postal-code-form {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.postal-code-form input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

.postal-code-form button {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.postal-code-form button:hover {
    background-color: #e5b200;
}

.app-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: var(--light-color);
    font-weight: 600;
    transition: var(--transition);
}

.app-download:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1.6rem;
    font-weight: 600;
}

.benefit-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

.products h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
    gap: 3rem;
}

.product-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-card a {
    color: var(--text-color);
    display: block;
}

.product-image {
    height: 20rem;
    overflow: hidden;
}

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

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

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 1.4;
    height: 6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

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

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.original-price {
    font-size: 1.6rem;
    text-decoration: line-through;
    color: #999;
}

.product-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bestseller {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.keto {
    background-color: #3d9970;
    color: var(--light-color);
}

.veggie {
    background-color: #2ecc40;
    color: var(--light-color);
}

.gluten-free {
    background-color: #ff851b;
    color: var(--light-color);
}

.spicy {
    background-color: #ff4136;
    color: var(--light-color);
}

.value {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

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

/* App Download Section */
.app-download-section {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.app-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
    align-items: center;
}

.app-text {
    flex: 1;
    min-width: 30rem;
}

.app-text h2 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.app-text p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
}

.app-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.app-button:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.store-locator {
    flex: 1;
    min-width: 30rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.store-locator h3 {
    color: var(--light-color);
    margin-bottom: 2rem;
}

.store-locator-form {
    display: flex;
    gap: 1rem;
}

.store-locator-form input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

.store-locator-form button {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.store-locator-form button:hover {
    background-color: #e5b200;
}

/* About Products Section */
.about-products {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.about-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.about-content p {
    font-size: 1.7rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.quality-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--gray-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
}

.quality-item svg {
    color: var(--primary-color);
}

.quality-item span {
    font-weight: 600;
}

/* Daily Inspiration Section */
.daily-inspiration {
    padding: 6rem 0;
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.daily-inspiration h2 {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.inspiration-content {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto;
}

.inspiration-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.inspiration-content blockquote {
    font-size: 2.4rem;
    font-style: italic;
    font-weight: 700;
    position: relative;
    padding: 0 4rem;
    margin: 3rem 0;
}

.inspiration-content blockquote::before,
.inspiration-content blockquote::after {
    content: '"';
    font-size: 6rem;
    position: absolute;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.inspiration-content blockquote::before {
    left: 0;
    top: -1rem;
}

.inspiration-content blockquote::after {
    right: 0;
    bottom: -4rem;
    transform: rotate(180deg);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 5rem;
    width: auto;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--light-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

address p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 30rem;
    margin: 0;
}

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

.btn-accept-cookies, .btn-customize-cookies, .btn-decline-cookies {
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-accept-cookies {
    background-color: var(--success-color);
    color: var(--light-color);
}

.btn-accept-cookies:hover {
    background-color: #3d8b40;
}

.btn-customize-cookies {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.btn-customize-cookies:hover {
    background-color: var(--gray-color);
}

.btn-decline-cookies {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.btn-decline-cookies:hover {
    background-color: var(--gray-color);
}

.cookie-policy-link {
    display: block;
    margin-top: 1rem;
    font-size: 1.4rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: var(--success-color);
    color: var(--light-color);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-2rem);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Product Detail Page */
.product-detail {
    padding: 6rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #666;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.product-detail-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 3.2rem;
    margin: 1.5rem 0;
}

.discount-badge {
    display: inline-block;
    background-color: var(--success-color);
    color: var(--light-color);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 1rem;
}

.product-description {
    font-size: 1.7rem;
    line-height: 1.7;
    margin: 2rem 0;
}

.product-options {
    margin: 3rem 0;
}

.option-group {
    margin-bottom: 2rem;
}

.option-group h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.option-button {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.option-button.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: var(--light-color);
}

.option-button:hover:not(.active) {
    border-color: var(--primary-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    width: 4rem;
    height: 4rem;
    background-color: var(--gray-color);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--border-color);
}

.quantity-selector input {
    width: 6rem;
    height: 4rem;
    border: none;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

.product-meta {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.meta-item svg {
    color: var(--primary-color);
}

.product-tabs {
    margin-top: 6rem;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1.5rem 3rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    padding: 2rem 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.nutrition-table th, .nutrition-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.nutrition-table th {
    font-weight: 600;
    width: 50%;
}

.nutrition-disclaimer {
    font-size: 1.4rem;
    color: #666;
    font-style: italic;
}

.reviews-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.rating-average {
    flex: 1;
    min-width: 20rem;
}

.rating {
    margin-bottom: 1rem;
}

.stars {
    color: var(--secondary-color);
    font-size: 2.4rem;
    margin-right: 1rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
}

.rating-breakdown {
    flex: 2;
    min-width: 30rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.rating-label {
    min-width: 4rem;
}

.progress-bar {
    flex: 1;
    height: 1rem;
    background-color: var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 1rem;
}

.rating-percent {
    min-width: 4rem;
    text-align: right;
}

.reviews-list {
    margin-top: 4rem;
}

.review-item {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.review-author {
    font-weight: 700;
    font-size: 1.8rem;
}

.review-rating {
    color: var(--secondary-color);
}

.review-date {
    color: #666;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.related-products {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

/* Cart Page */
.cart-section {
    padding: 6rem 0;
}

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

.cart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.cart-empty svg {
    color: var(--border-color);
    margin-bottom: 2rem;
    width: 8rem;
    height: 8rem;
}

.cart-empty h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.cart-empty p {
    color: #666;
    margin-bottom: 3rem;
}

.cart-filled {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.cart-item {
    display: flex;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    gap: 2rem;
}

.cart-item-image {
    width: 12rem;
    height: 12rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

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

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

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-quantity-btn {
    width: 3rem;
    height: 3rem;
    background-color: var(--gray-color);
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
}

.cart-quantity input {
    width: 4rem;
    height: 3rem;
    border: none;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
}

.cart-remove {
    color: var(--error-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    border: none;
    background: none;
}

.cart-sidebar {
    position: sticky;
    top: 10rem;
    align-self: flex-start;
}

.cart-summary, .promo-section, .delivery-info {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.cart-summary h3, .promo-section h3 {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.summary-row.total {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.continue-shopping {
    text-align: center;
    margin-top: 2rem;
}

.continue-shopping a {
    color: var(--primary-color);
    text-decoration: underline;
}

.promo-form {
    display: flex;
    gap: 1rem;
}

.promo-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.4rem;
}

.promo-form button {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.promo-form button:hover {
    background-color: var(--primary-color);
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.delivery-icon, .secure-icon, .satisfaction-icon {
    color: var(--primary-color);
}

.delivery-text h4, .secure-text h3, .satisfaction-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.delivery-text p, .secure-text p, .satisfaction-text p {
    color: #666;
    margin-bottom: 0;
    font-size: 1.4rem;
}

.suggestions-section {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

.suggestions-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Checkout Page */
.checkout-section {
    padding: 6rem 0;
}

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

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.form-section {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.form-section h2 {
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 10rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
}

.order-items {
    margin-bottom: 3rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item-image {
    width: 8rem;
    height: 8rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

.order-item-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.order-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.order-item-quantity {
    font-size: 1.4rem;
    color: #666;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
}

.checkout-sidebar {
    position: sticky;
    top: 10rem;
    align-self: flex-start;
}

.secure-checkout, .delivery-guarantee, .satisfaction-guarantee, .need-help {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.need-help {
    display: block;
}

.need-help h3 {
    margin-bottom: 1.5rem;
}

.need-help p {
    margin-bottom: 1rem;
}

/* Success Page */
.success-section {
    padding: 6rem 0;
}

.success-content {
    text-align: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 4rem;
    max-width: 80rem;
    margin: 0 auto 4rem;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
}

.success-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.success-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 35rem;
    text-align: left;
}

.success-info svg {
    color: var(--primary-color);
}

.info-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    margin-bottom: 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.app-promo {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: left;
    max-width: 80rem;
    margin: 0 auto;
}

.app-icon {
    font-size: 3rem;
}

.app-text h3 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.app-text p {
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 6rem 0;
    text-align: center;
}

.contact-hero h1 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.8rem;
    max-width: 70rem;
    margin: 0 auto;
}

.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 4rem;
}

.contact-form-container {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
}

.contact-form-container h2 {
    margin-bottom: 3rem;
}

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

.contact-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    color: var(--primary-color);
}

.contact-details h3 {
    margin-bottom: 1rem;
}

.contact-details p, .contact-details address p {
    margin-bottom: 0.5rem;
    color: #666;
}

.hours {
    font-size: 1.4rem;
    font-style: italic;
    color: #999;
}

.contact-social {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

.contact-social h3 {
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

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

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 50rem;
}

.store-locator-section {
    padding: 6rem 0;
    text-align: center;
}

.store-locator-section h2 {
    margin-bottom: 3rem;
}

.store-locator {
    max-width: 60rem;
    margin: 0 auto;
}

.form-success {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: var(--success-color);
    color: var(--light-color);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    display: none;
}

/* About Page */
.about-hero {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 6rem 0;
    text-align: center;
}

.about-hero h1 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.8rem;
    max-width: 70rem;
    margin: 0 auto;
}

.about-history, .about-values, .about-ingredients, .about-team, .about-community {
    padding: 6rem 0;
}

.about-history {
    background-color: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 4rem;
}

.about-content h2 {
    margin-bottom: 2.5rem;
}

.about-content p {
    font-size: 1.7rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-values {
    background-color: var(--gray-color);
}

.about-values h2, .about-ingredients h2, .about-team h2, .about-community h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.value-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.value-card h3 {
    margin-bottom: 1.5rem;
}

.value-card p {
    color: #666;
}

.ingredients-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.ingredients-content p {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.ingredient-item {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
}

.ingredient-item h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.ingredient-item p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.team-intro {
    text-align: center;
    font-size: 1.8rem;
    max-width: 70rem;
    margin: 0 auto 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 4rem;
}

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
}

.team-member h3, .team-member p {
    padding: 0 2rem;
}

.team-member h3 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin: 0 2rem 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--gray-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.community-content {
    max-width: 80rem;
    margin: 0 auto;
}

.community-content p {
    font-size: 1.7rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.community-initiatives {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.initiative-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
}

.initiative-item h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.initiative-item p {
    margin-bottom: 0;
}

.join-team {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.join-content {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto;
}

.join-content h2 {
    color: var(--light-color);
    margin-bottom: 2rem;
}

.join-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.join-content .btn-primary {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.join-content .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

/* Custom Select Styling */
.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    cursor: pointer;
}

/* Detail List Styling */
.detail-list {
    margin: 2rem 0;
}

.detail-list li {
    margin-bottom: 2rem;
}

.detail-list li strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.substitution-options {
    background-color: var(--gray-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.substitution-options h4 {
    margin-bottom: 1.5rem;
}

.substitution-options ul {
    list-style: disc;
    padding-left: 2rem;
}

.substitution-options ul li {
    margin-bottom: 0.8rem;
}

/* Semi-transparent Elements */
.app-download, .store-locator, .daily-inspiration, .inspiration-content {
    background-color: rgba(255, 255, 255, 0.9);
}

.benefit-item, .quality-item, .initiative-item {
    background-color: rgba(255, 255, 255, 0.9);
}

.cookie-banner {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Responsive Design */
@media (max-width: 1024px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-filled, .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar, .checkout-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 7rem;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1.5rem 0;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .app-promo {
        flex-direction: column;
        text-align: center;
    }
    
    .app-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 45%; /* 7.2px */
    }
    
    .logo img {
        height: 4rem;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cart-item-actions {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-info {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
