/* Global Styles */
:root {
    --primary-color: #D73125;
    --primary-hover: #B92519;
    --secondary-color: #FFA700;
    --text-color: #333333;
    --light-text: #666666;
    --dark-bg: #222222;
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    --light-border: #E0E0E0;
    --medium-border: #CCCCCC;
    --dark-border: #999999;
    --success-color: #28a745;
    --error-color: #dc3545;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-sm: 4px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    line-height: 1.2;
    font-weight: 600;
    color: var(--dark-bg);
}

p {
    margin-bottom: 1em;
}

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

ul, ol {
    list-style-position: inside;
}

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

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

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

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

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

.btn-secondary:hover {
    background-color: #E69600;
    color: var(--dark-bg);
}

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

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

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

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

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-buttons .btn {
    padding: 8px 16px;
}

.cookie-link {
    margin-left: auto;
    font-size: 0.9rem;
}

/* Navigation */
header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

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

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

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

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

/* Parallax Effect */
.parallax-header,
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-header {
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1600x900/?burger');
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    color: var(--white);
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

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

.feature-box {
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: var(--light-bg);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 50px;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 1rem;
    color: var(--light-text);
}

.cta {
    margin-top: 30px;
}

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

.about-products h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
}

.about-products p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.quality-assurance,
.brand-story,
.certifications {
    margin-top: 40px;
}

.quality-assurance h3,
.brand-story h3,
.certifications h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.quality-assurance ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.quality-assurance li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-border);
}

.quality-assurance li:last-child {
    border-bottom: none;
}

.cert-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cert {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cert svg {
    color: var(--secondary-color);
}

/* Products Section */
.products {
    padding: 80px 0;
}

.products h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 20px;
}

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

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

.description {
    color: var(--light-text);
    margin-bottom: 20px;
    height: 4.8em;
    overflow: hidden;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
}

/* CTA Section */
.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x900/?food');
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

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

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

.footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    margin-right: 30px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-column a {
    color: #CCC;
}

.footer-column a:hover {
    color: var(--white);
}

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

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

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

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

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

address {
    font-style: normal;
    line-height: 1.8;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.9rem;
    color: var(--light-text);
    border-bottom: 1px solid var(--light-border);
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: var(--text-color);
}

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

/* Product Detail */
.product-detail-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 20px 80px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.product-image-large img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.product-info-detailed h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.rating-count {
    color: var(--light-text);
    font-size: 0.9rem;
}

.product-description p {
    margin-bottom: 15px;
}

.product-features,
.product-nutrition {
    margin-top: 30px;
}

.product-features h3,
.product-nutrition h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-features ul {
    list-style-type: disc;
    padding-left: 20px;
}

.product-features li {
    margin-bottom: 8px;
}

.product-nutrition table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.product-nutrition td {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-border);
}

.product-nutrition tr:last-child td {
    border-bottom: none;
}

.product-nutrition td:first-child {
    font-weight: 500;
}

.allergen-info {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
}

.product-actions-large {
    margin-top: 30px;
    border-top: 1px solid var(--light-border);
    padding-top: 30px;
}

.quantity-selector {
    margin-bottom: 20px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

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

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

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

input[type="number"] {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    -moz-appearance: textfield; /* Firefox */
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.action-buttons .btn {
    flex: 1;
    padding: 12px 0;
}

/* Related Products */
.related-products h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-card-small {
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.product-card-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.product-card-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
}

.product-card-small h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-card-small .price {
    margin-bottom: 15px;
}

/* Cart Page */
.cart-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 20px 80px;
}

.cart-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

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

.cart-empty p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

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

.cart-items {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-border);
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-right: 20px;
}

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

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

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

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

.cart-item-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.cart-quantity button {
    width: 30px;
    height: 30px;
    background-color: var(--light-bg);
    border: 1px solid var(--medium-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--medium-border);
    border-left: none;
    border-right: none;
}

.cart-summary {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    align-self: flex-start;
}

.cart-summary h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

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

.summary-row.total {
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--dark-border);
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Checkout Page */
.checkout-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 20px 80px;
}

.checkout-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

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

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 40px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light-text);
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: var(--light-border);
    margin: 0 10px;
    position: relative;
    top: -25px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-border);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-border);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.order-summary {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    align-self: flex-start;
}

.order-summary h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-border);
}

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

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-right: 15px;
}

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

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

.order-item-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.order-item-quantity {
    font-size: 0.9rem;
    color: var(--light-text);
}

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

.empty-cart-message {
    text-align: center;
    padding: 20px 0;
    color: var(--light-text);
}

/* Success Page */
.success-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.success-content {
    text-align: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 50px 30px;
}

.success-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    color: var(--success-color);
}

.success-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.success-info {
    color: var(--light-text);
    margin-bottom: 30px;
}

.success-details {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 30px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.success-details h3 {
    margin-bottom: 15px;
}

.success-details ol {
    padding-left: 20px;
}

.success-details li {
    margin-bottom: 10px;
}

.success-cta {
    margin-top: 30px;
}

/* About Page */
.about-container {
    overflow-x: hidden;
}

.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x900/?restaurant');
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.about-hero h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.subtitle {
    font-size: 1.4rem;
}

.about-intro {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
}

.values-list {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 25px;
}

.value-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item svg {
    color: var(--secondary-color);
    margin-top: 5px;
}

.value-item h4 {
    margin-bottom: 5px;
}

.about-mission {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x900/?burger-grill');
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.about-mission h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.about-mission p {
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
}

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

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

.team-member {
    text-align: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

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

.team-member .social-icons {
    justify-content: center;
    margin-top: 15px;
}

.achievements-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.achievements-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.achievement {
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 300px;
}

.achievement-icon {
    margin-bottom: 20px;
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
}

.achievement h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.achievement p {
    color: var(--light-text);
}

/* Contact Page */
.contact-intro {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x900/?contact');
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.contact-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

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

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

.contact-info h2,
.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 5px;
}

.info-item a {
    color: var(--text-color);
}

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

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

.social-connect .social-icons {
    margin-top: 15px;
}

.social-connect .social-icons a {
    background-color: var(--light-bg);
    color: var(--text-color);
}

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

.contact-form {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-container input {
    width: auto;
    margin-right: 8px;
}

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

.map-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.map-responsive {
    overflow: hidden;
    position: relative;
    height: 400px;
}

.map-placeholder {
    background-color: var(--white);
    height: 100%;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    padding: 20px;
}

.map-content svg {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map-content h3 {
    margin-bottom: 15px;
}

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

.faq-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    border-bottom: 1px solid var(--light-border);
    margin-bottom: 10px;
}

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

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 15px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo,
    .footer-links,
    .footer-social {
        text-align: center;
        align-items: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        margin-right: 0;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 80px;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 5;
        padding: 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links li {
        opacity: 0;
    }
    
    .burger {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .cart-items-container,
    .checkout-content,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-summary,
    .order-summary {
        margin-top: 30px;
    }
    
    .checkout-steps {
        padding: 0;
    }
    
    .step-title {
        display: none;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem !important;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .step-line {
        width: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Nav Active Class for Mobile */
.nav-active {
    transform: translateX(0%);
}

/* Animation for Nav Links */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Toggle Animation for Burger Menu */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}
