/* 
   Cheezario Pizza Online Ordering - Main Stylesheet
   Main theme colors:
   - Primary: #e63946 (Red)
   - Secondary: #f1faee (Off-white)
   - Dark: #1d3557 (Navy blue)
   - Accent: #a8dadc (Light blue)
   - Text: #457b9d (Medium blue)
*/

/* Base styles and reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: #e63946;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c1121f;
    text-decoration: underline;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: #1d3557;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #e63946;
    color: white;
}

.btn-primary:hover {
    background-color: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-secondary {
    background-color: #457b9d;
    color: white;
}

.btn-secondary:hover {
    background-color: #2a6f97;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-text {
    background: none;
    color: #457b9d;
    box-shadow: none;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: #1d3557;
    background-color: rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: #1d3557;
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #e63946;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    text-decoration: none;
    color: #e63946;
}

.cart-link {
    display: flex;
    align-items: center;
}

.cart-count {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #e63946;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    margin-left: 5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1d3557;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background-color: #1d3557;
    color: white;
    text-align: center;
    padding: 5rem 0;
    background-image: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.8)), url('https://via.placeholder.com/1600x900');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #f1faee;
}

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

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #f1faee;
    border-radius: 50%;
    color: #e63946;
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
}

.stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #457b9d;
}

.features .btn {
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

/* About Products Section */
.about-products {
    padding: 5rem 0;
    background-color: white;
}

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

.about-products p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.certifications h3 {
    margin-bottom: 1.5rem;
}

.cert-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #457b9d;
}

.cert-item svg {
    color: #e63946;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

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

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    height: 200px;
    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: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.price {
    color: #e63946;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    flex: 1;
}

/* Daily Inspiration Section */
.daily-inspiration {
    padding: 4rem 0;
    background-color: #a8dadc;
    color: #1d3557;
    text-align: center;
}

.daily-inspiration h2 {
    margin-bottom: 2rem;
}

.inspiration-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 2.5rem;
    position: absolute;
    color: #e63946;
    opacity: 0.3;
}

.quote::before {
    top: -0.5rem;
    left: 0;
}

.quote::after {
    bottom: -1.5rem;
    right: 0;
}

/* This Day in History Section */
.this-day-history {
    padding: 4rem 0;
    background-color: #f1faee;
    text-align: center;
}

.this-day-history h2 {
    margin-bottom: 2rem;
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #1d3557;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-links ul li a {
    color: #a8dadc;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #e63946;
    transform: translateY(-3px);
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #1d3557;
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.cookie-more-info {
    font-size: 0.9rem;
}

.cookie-more-info a {
    color: #a8dadc;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #1d3557;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(0);
}

.notification.hide {
    opacity: 0;
    transform: translateX(100%);
}

/* Page Header */
.page-header {
    background-color: #1d3557;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

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

.breadcrumb {
    margin-bottom: 2rem;
    color: #666;
}

.breadcrumb a {
    color: #457b9d;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-image-large {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-image-large img {
    width: 100%;
    height: auto;
}

.product-info-detail h1 {
    margin-bottom: 1rem;
}

.product-price {
    color: #e63946;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.stars {
    display: flex;
    color: #ffc107;
    margin-right: 0.5rem;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.product-description {
    margin-bottom: 2rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background-color: #f1faee;
    padding: 1.5rem;
    border-radius: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #457b9d;
}

.product-options {
    margin-bottom: 2rem;
}

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

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

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

.option-button {
    padding: 0.5rem 1rem;
    background-color: #f1faee;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-button:hover {
    background-color: #e9ecef;
}

.option-button.active {
    background-color: #457b9d;
    color: white;
    border-color: #457b9d;
}

.product-quantity {
    margin-bottom: 2rem;
}

.product-quantity label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quantity-control {
    display: flex;
    align-items: center;
    max-width: 150px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1faee;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.minus-btn {
    border-radius: 5px 0 0 5px;
}

.plus-btn {
    border-radius: 0 5px 5px 0;
}

.quantity-btn:hover {
    background-color: #e9ecef;
}

.quantity-control input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions .btn {
    flex: 1;
}

/* Product Details Tabs */
.product-details-tabs {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    position: relative;
    transition: color 0.3s ease;
}

.tab-button::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -1rem;
    left: 0;
    background-color: #e63946;
    transition: width 0.3s ease;
}

.tab-button.active {
    color: #e63946;
}

.tab-button.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
}

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

.ingredients-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.ingredients-list li {
    margin-bottom: 0.5rem;
}

.allergen-info {
    padding: 1rem;
    background-color: #f8d7da;
    border-radius: 5px;
    color: #721c24;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.nutrition-table th,
.nutrition-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.nutrition-table th {
    background-color: #f1faee;
    font-weight: 600;
}

.review-summary {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.average-rating {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 0.5rem;
}

.total-reviews {
    color: #666;
    font-size: 0.9rem;
}

.rating-breakdown {
    flex: 2;
    min-width: 300px;
}

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

.rating-label {
    width: 80px;
}

.bar-container {
    flex: 1;
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    margin: 0 1rem;
    overflow: hidden;
}

.bar {
    height: 100%;
    background-color: #ffc107;
}

.rating-count {
    width: 40px;
    text-align: right;
}

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

.review-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

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

.review-author {
    font-weight: 600;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

/* Related Products */
.related-products {
    padding: 4rem 0;
}

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

.product-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

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

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.empty-cart-icon {
    margin-bottom: 1.5rem;
    color: #e63946;
}

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

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

.cart-items {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.cart-header {
    background-color: #f1faee;
    padding: 1rem;
    font-weight: 600;
}

.cart-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.cart-body .cart-row:last-child {
    border-bottom: none;
}

.product-col {
    display: flex;
    align-items: center;
}

.product-info {
    margin-left: 1rem;
}

.product-name {
    font-weight: 600;
}

.remove-item {
    background: none;
    border: none;
    color: #e63946;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.cart-summary {
    min-width: 300px;
}

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

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
}

.checkout-button {
    margin-top: 1.5rem;
}

.checkout-button .btn {
    width: 100%;
}

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

.checkout-empty {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.empty-checkout-icon {
    margin-bottom: 1.5rem;
    color: #e63946;
}

.checkout-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.checkout-form-container {
    flex: 2;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-summary {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #457b9d;
    outline: none;
}

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

.form-group.checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.summary-content {
    margin-top: 1.5rem;
}

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

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.item-quantity {
    color: #666;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.summary-totals {
    margin-top: 1rem;
}

/* Success Page */
.success-section {
    padding: 5rem 0;
    text-align: center;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.success-icon {
    color: #28a745;
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.order-info {
    margin-bottom: 2rem;
    color: #666;
}

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

.what-next {
    padding: 4rem 0;
    background-color: #f1faee;
}

.what-next h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    color: #e63946;
    margin-bottom: 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-info {
    padding: 4rem 0;
}

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

.contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: #e63946;
    margin-bottom: 1.5rem;
}

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

.contact-description {
    color: #666;
    font-size: 0.9rem;
}

.contact-form {
    padding: 4rem 0;
    background-color: #f1faee;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.checkbox-label {
    display: flex;
    align-items: center;
}

.checkbox-label input {
    margin-right: 0.5rem;
}

/* About Page */
.about-story {
    padding: 4rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-values {
    padding: 4rem 0;
    background-color: #f1faee;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission h3,
.values h3 {
    margin-bottom: 1.5rem;
}

.values ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.team {
    padding: 4rem 0;
}

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

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

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
}

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.team-member .social-links {
    justify-content: center;
    margin: 0 0 1.5rem;
}

.team-member .social-links a {
    width: 32px;
    height: 32px;
    background-color: #f1faee;
    color: #457b9d;
}

.included-list {
    margin-bottom: 2rem;
}

.included-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-icon {
    color: #e63946;
    flex-shrink: 0;
}

.included-info h4 {
    margin-bottom: 0.5rem;
}

.special-notes {
    background-color: #f1faee;
    padding: 1.5rem;
    border-radius: 10px;
}

.special-notes h4 {
    margin-bottom: 1rem;
}

.special-notes ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.special-notes ul li {
    margin-bottom: 0.5rem;
}

.nutrition-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .story-content,
    .mission-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 1rem 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .cart-row {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .price-col {
        display: none;
    }
    
    .remove-col {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }
}

@media (max-width: 480px) {
    .cart-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .quantity-col,
    .total-col {
        justify-self: start;
    }
    
    .remove-col {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
        margin-top: 0.5rem;
    }
    
    .product-col {
        margin-bottom: 0.5rem;
    }
    
    .cart-footer {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
}
