/* 
* Crust Pizza Website Styles
* Modern and appetizing design for a pizza delivery brand
*/

/* Base Styles & Reset */
:root {
    --primary-color: #e63946;
    --secondary-color: #457b9d;
    --accent-color: #f1c40f;
    --dark-color: #1d3557;
    --light-color: #f1faee;
    --gray-color: #8d99ae;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: #ffffff;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 10px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

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

.cart-count {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -10px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: #d1d1d1;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('images/logo.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

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

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

.primary-btn:hover {
    background-color: #d32f2f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 57, 70, 0.2);
}

.secondary-btn {
    background-color: var(--secondary-color);
    color: white;
}

.secondary-btn:hover {
    background-color: #2a6f97;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(69, 123, 157, 0.2);
}

.tertiary-btn {
    background-color: transparent;
    color: var(--dark-color);
    border: 1px solid var(--gray-color);
}

.tertiary-btn:hover {
    background-color: var(--light-color);
    border-color: var(--dark-color);
}

.view-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 8px 15px;
    font-size: 0.9rem;
}

.view-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.add-to-cart-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.add-to-cart-btn:hover {
    background-color: #d32f2f;
    color: white;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--light-color);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 50px;
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.advantage-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    color: var(--secondary-color);
    border-radius: 50%;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--dark-color);
    font-weight: 600;
}

.cta {
    text-align: center;
    margin-top: 30px;
}

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

.about-products h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.about-products-content h3 {
    margin-top: 30px;
    font-size: 1.3rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.products h2 {
    text-align: center;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px 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: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-description {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

/* Products Row (for related products) */
.products-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
}

.products-row::-webkit-scrollbar {
    height: 6px;
}

.products-row::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.products-row::-webkit-scrollbar-thumb {
    background-color: var(--gray-color);
    border-radius: 6px;
}

.products-row .product-card {
    min-width: 280px;
    max-width: 280px;
}

/* Product Detail */
.product-detail {
    padding: 50px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

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

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

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    color: var(--gray-color);
}

.stars {
    color: var(--accent-color);
    margin-right: 5px;
}

.product-detail .product-price {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.product-options {
    margin: 30px 0;
}

.option-group {
    margin-bottom: 20px;
}

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

.radio-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-buttons label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-buttons input {
    margin-right: 8px;
}

.price-diff {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 5px;
}

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

.quantity-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.product-meta-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray-color);
}

.meta-item svg {
    margin-right: 10px;
}

/* Product Tabs */
.product-tabs {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--gray-color);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

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

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

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

.ingredients-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.ingredients-list li {
    margin-bottom: 8px;
}

.allergen-info {
    color: var(--error-color);
    font-size: 0.9rem;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table tr:nth-child(odd) {
    background-color: #f5f5f5;
}

.nutrition-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.nutrition-table td:first-child {
    font-weight: 600;
}

.serving-info {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.reviews-summary {
    margin-bottom: 20px;
}

.average-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

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

.review-count {
    color: var(--gray-color);
}

.review-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.review-stars {
    color: var(--accent-color);
}

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

.review-date {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Related Products */
.related-products {
    padding: 50px 0;
}

.related-products h2 {
    margin-bottom: 30px;
}

/* Fun Facts */
.fun-facts {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.fun-fact-content {
    max-width: 700px;
    margin: 0 auto;
}

#fun-fact {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Pizza Calculator */
.pizza-calculator {
    padding: 60px 0;
    background-color: var(--light-color);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.calculator-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--body-font);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.calculator-result {
    background-color: var(--dark-color);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.calculator-result h3 {
    color: white;
    margin-bottom: 20px;
}

#pizza-result {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Cart Styles */
.cart-section {
    padding: 50px 0;
}

.cart-empty-message {
    text-align: center;
    padding: 50px 20px;
}

.cart-empty-message svg {
    margin: 0 auto 20px;
    color: var(--gray-color);
}

.cart-items-container {
    margin-top: 30px;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    padding: 20px 15px;
    align-items: center;
    border-bottom: 1px solid #eee;
}

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

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

.cart-product-info h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

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

.cart-quantity input {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.cart-remove {
    color: var(--error-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    transform: scale(1.1);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.cart-summary {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: none;
    padding-top: 15px;
}

.free-delivery-message {
    text-align: right;
    font-size: 0.9rem;
    color: var(--secondary-color);
    border-bottom: none;
}

.checkout-button {
    margin-top: 20px;
    text-align: right;
}

/* Checkout Styles */
.checkout-section {
    padding: 50px 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
    margin-top: 30px;
}

.checkout-form-container {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.checkout-form h2 {
    margin-bottom: 30px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.form-check input {
    margin-top: 4px;
    margin-right: 10px;
}

.order-summary {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: var(--border-radius);
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    margin-bottom: 20px;
}

.checkout-empty {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.checkout-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

.checkout-item-info {
    flex-grow: 1;
}

.checkout-item-info h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.checkout-item-price {
    font-weight: 600;
    color: var(--dark-color);
}

.checkout-totals {
    margin-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.total-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 15px;
    border-bottom: none;
}

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

.success-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-content h1 {
    color: var(--success-color);
    margin-bottom: 20px;
}

.delivery-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
}

.success-actions {
    margin: 30px 0;
}

.follow-us {
    margin-top: 40px;
}

.follow-us .social-icons {
    justify-content: center;
    margin-top: 15px;
}

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

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

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: var(--border-radius);
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 20px;
    color: var(--secondary-color);
}

.contact-method h3 {
    margin-bottom: 5px;
}

.contact-detail {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.contact-social {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f1f1f1;
    color: var(--dark-color);
    border-radius: 50%;
    transition: var(--transition);
}

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

.contact-form-container {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-success {
    text-align: center;
    padding: 30px;
}

.form-success svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

.map-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.map-container {
    margin-top: 30px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e9e9e9;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.map-overlay p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-caption {
    font-size: 1rem !important;
    color: var(--gray-color);
}

.faq-section {
    padding: 80px 0;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

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

.faq-question h3 {
    margin-bottom: 0;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.faq-toggle .plus {
    display: block;
}

.faq-toggle .minus {
    display: none;
}

.faq-item.active .faq-toggle .plus {
    display: none;
}

.faq-item.active .faq-toggle .minus {
    display: block;
}

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

.faq-item.active .faq-answer {
    padding: 0 0 20px;
    max-height: 500px;
}

/* About Us Page */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/logo.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.about-hero h1 {
    color: white;
}

.our-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.story-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    text-align: center;
}

.our-mission {
    padding: 80px 0;
    background-color: var(--light-color);
}

.our-mission h2 {
    text-align: center;
    margin-bottom: 50px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.mission-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.our-team {
    padding: 80px 0;
}

.our-team h2 {
    text-align: center;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

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

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

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

.team-member h3 {
    margin: 20px 20px 5px;
}

.team-member p {
    margin: 0 20px 15px;
}

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

.team-social {
    padding: 0 20px 20px;
}

.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 350px;
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: #f1f1f1;
    line-height: 1;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.join-us {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

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

.join-us h2 {
    color: white;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 1000;
    padding: 15px;
    display: none;
}

.cookie-notice.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 15px;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Cart Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transform: translateY(-100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-links h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
}

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

.footer-social h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

footer .social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-social {
    justify-self: end;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 1100px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }

    .checkout-container {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-social {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 10;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .cart-header {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .cart-header .price-col,
    .cart-header .remove-col {
        display: none;
    }

    .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .cart-price,
    .cart-remove {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .join-us {
        padding: 60px 0;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        border: 1px solid #eee;
        margin-bottom: 15px;
        border-radius: var(--border-radius);
    }

    .cart-product {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-product img {
        width: 100%;
        height: auto;
        max-width: 150px;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .cart-quantity,
    .cart-total,
    .cart-price {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .cart-quantity::before {
        content: 'Quantity:';
        font-weight: 600;
    }

    .cart-total::before {
        content: 'Total:';
        font-weight: 600;
    }

    .cart-price::before {
        content: 'Price:';
        font-weight: 600;
    }

    .cart-remove {
        display: block;
        width: 100%;
        text-align: right;
    }

    .success-content {
        padding: 30px 20px;
    }
}
