/* Main Styles for Swiss Chalet Website */

/* Reset and Base Styles */
:root {
    --primary-color: #e63c30;
    --secondary-color: #742f2f;
    --accent-color: #ffc107;
    --text-color: #333333;
    --light-text: #777777;
    --lighter-text: #999999;
    --dark-bg: #231f20;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --gray-bg: #f1f1f1;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --header-height: 80px;
    --font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --heading-font: 'Playfair Display', Georgia, serif;
    --border-radius: 4px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

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: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    line-height: 1.5;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

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

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

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

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

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

.btn-outline:hover {
    background-color: var(--light-bg);
    border-color: var(--text-color);
}

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

.btn svg {
    vertical-align: middle;
    margin-right: 8px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: relative;
    z-index: 100;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    max-width: 120px;
}

.logo img {
    border-radius: 50%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 16px;
    position: relative;
}

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

.main-nav li a.active:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.hero-section {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1200x600/?fried-chicken');
    background-size: cover;
    background-position: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.page-banner {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1200x400/?chicken');
    background-size: cover;
    background-position: center;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* Parallax Section */
.parallax-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1200x400/?cooking');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin: 50px 0;
}

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

.parallax-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.parallax-content p {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

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

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

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

.feature-item h3 {
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quality-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.badge {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 12px 20px;
    border-radius: 50px;
}

.badge svg {
    margin-right: 10px;
    color: var(--success-color);
}

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

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

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

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

.description {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.product-actions .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

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

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

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

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

.product-images {
    position: relative;
}

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

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

.product-info h1 {
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    color: var(--accent-color);
    margin-right: 10px;
}

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

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 15px;
}

.original-price {
    font-size: 1.25rem;
    color: var(--light-text);
    text-decoration: line-through;
}

.product-badge {
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: 15px;
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    line-height: 1.8;
}

.product-features {
    margin-bottom: 30px;
}

.product-features ul {
    padding-left: 20px;
}

.product-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.product-features li:before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

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

.option-group h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.options-grid,
.sauce-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.option-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.option-item input[type="checkbox"] {
    margin-right: 10px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper:after {
    content: "▼";
    font-size: 0.8rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    appearance: none;
    font-family: var(--font-family);
    font-size: 1rem;
    background-color: var(--white);
}

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

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

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

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: bold;
}

.quantity-btn.minus {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.quantity-btn.plus {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.quantity-input input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    font-family: var(--font-family);
    font-size: 1rem;
}

/* Remove default number input arrows */
.quantity-input input::-webkit-outer-spin-button,
.quantity-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input input[type=number] {
    -moz-appearance: textfield;
}

.product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.meta-item svg {
    margin-right: 15px;
    color: var(--primary-color);
}

.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 24px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    color: var(--light-text);
}

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

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

.tab-content {
    display: none;
}

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

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.nutrition-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    width: 40%;
}

.nutrition-disclaimer {
    font-size: 0.85rem;
    color: var(--light-text);
    font-style: italic;
}

.nutrition-note {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--light-text);
}

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

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

.allergen-info {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.allergen-info h4 {
    margin-bottom: 10px;
    color: var(--error-color);
}

.reviews-summary {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    align-items: flex-start;
}

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

.average-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.reviews-average .stars {
    justify-content: center;
    margin: 10px 0;
}

.reviews-average p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.rating-breakdown {
    flex-grow: 1;
}

.rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.rating-label {
    width: 60px;
    margin-right: 10px;
}

.rating-bar {
    flex-grow: 1;
    height: 8px;
    background-color: var(--light-bg);
    border-radius: 4px;
    overflow: hidden;
    margin-right: 10px;
}

.rating-fill {
    height: 100%;
    background-color: var(--accent-color);
}

.rating-percent {
    width: 40px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--light-text);
}

.reviews-list {
    margin-top: 30px;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.reviewer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-info h4 {
    margin-bottom: 0;
}

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

.review-rating {
    margin-bottom: 15px;
}

.review-content p {
    margin-bottom: 0;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background-color: var(--light-bg);
}

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

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

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

.cart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

.empty-cart-message {
    text-align: center;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-text);
}

.empty-cart-message svg {
    color: var(--lighter-text);
    margin-bottom: 20px;
}

.empty-cart-message h2 {
    margin-bottom: 10px;
}

.empty-cart-message p {
    margin-bottom: 30px;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

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

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

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

.item-details h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    color: var(--error-color);
}

.cart-summary {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    position: sticky;
    top: 30px;
}

.cart-summary h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

.summary-row.total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.cart-actions {
    margin-top: 30px;
}

.cart-actions .btn {
    margin-bottom: 10px;
}

.order-notes {
    margin-top: 30px;
}

.order-notes h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.order-notes textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 0.95rem;
    resize: vertical;
}

.estimated-delivery {
    margin-top: 30px;
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.estimated-delivery svg {
    margin-right: 15px;
    color: var(--primary-color);
}

.estimated-delivery p {
    margin-bottom: 0;
}

.might-like {
    padding: 60px 0;
    background-color: var(--white);
}

.might-like h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.checkout-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: center;
    color: var(--light-text);
}

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

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

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

.step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 15px;
}

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

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

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

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

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

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

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

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

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

.form-checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.order-summary {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    position: sticky;
    top: 30px;
}

.order-summary h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-items {
    margin-bottom: 30px;
    max-height: 300px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.item-info {
    display: flex;
}

.item-quantity {
    margin-right: 10px;
    font-weight: 600;
}

.order-totals {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.grand-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.delivery-info {
    margin-top: 30px;
}

.delivery-time,
.contact-support {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.delivery-time svg,
.contact-support svg {
    margin-right: 15px;
    color: var(--primary-color);
}

.delivery-text h4,
.contact-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.delivery-text p,
.contact-text p {
    margin-bottom: 0;
    color: var(--light-text);
}

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

/* Success Page */
.success-section {
    padding: 60px 0;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.success-content h1 {
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.order-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    position: relative;
}

.status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    width: 140px;
}

.status-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--light-text);
    border: 2px solid var(--border-color);
}

.status-step.active .status-icon {
    background-color: var(--success-color);
    color: var(--white);
    border-color: var(--success-color);
}

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

.status-text h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.status-text p {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 0;
}

.status-connector {
    flex-grow: 1;
    height: 2px;
    background-color: var(--border-color);
    position: relative;
    z-index: 1;
}

.delivery-info {
    margin: 40px 0;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.info-item svg {
    margin-right: 20px;
    color: var(--primary-color);
}

.info-text h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-text p {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.success-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.post-order-suggestion {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.post-order-suggestion h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.suggestion-item h3 {
    margin-bottom: 15px;
}

.suggestion-item p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary-color);
    transition: var(--transition);
}

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

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: none;
    font-family: var(--font-family);
}

.newsletter-form .btn {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

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

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

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

.contact-text h4 {
    margin-bottom: 8px;
}

.contact-text p {
    margin-bottom: 5px;
    color: var(--light-text);
}

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

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

.social-contact h4 {
    margin-bottom: 15px;
}

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

.contact-form-container h2 {
    margin-bottom: 25px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form .btn {
    margin-top: 10px;
}

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

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

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

.form-success p {
    margin-bottom: 30px;
}

.hidden {
    display: none;
}

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

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

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

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

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

.faq-toggle {
    color: var(--primary-color);
}

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

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

/* About Page */
.about-section {
    padding: 60px 0;
}

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

.about-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.about-timeline {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
    flex-wrap: wrap;
}

.about-timeline:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
    width: 16.666%;
    min-width: 150px;
    margin-bottom: 20px;
}

.timeline-item h4 {
    background-color: var(--primary-color);
    color: var(--white);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.timeline-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

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

.value-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.sustainability-initiatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.initiative {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: var(--border-radius);
}

.initiative svg {
    margin-right: 15px;
    color: var(--success-color);
}

.initiative p {
    margin-bottom: 0;
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 10px;
}

.team-intro {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

.testimonials {
    padding: 60px 0;
}

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

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

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

.testimonial:before {
    content: """;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: var(--light-bg);
    font-family: serif;
    z-index: 0;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

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

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

.testimonial-author p {
    margin-bottom: 0;
    font-style: italic;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 150px;
}

.footer-logo img {
    margin-bottom: 15px;
    border-radius: 50%;
}

.footer-logo p {
    color: var(--light-text);
    font-size: 0.9rem;
}

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

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

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

.footer-column ul li a {
    color: var(--light-text);
}

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

.footer-column address {
    font-style: normal;
    color: var(--light-text);
}

.footer-column address p {
    margin-bottom: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: var(--light-text);
    font-size: 0.9rem;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px var(--shadow-color);
    padding: 15px 0;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.cookie-link {
    display: inline-block;
    margin-left: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 15px 20px;
}

.notification-content svg {
    margin-right: 15px;
    color: var(--success-color);
}

.notification-content p {
    margin-bottom: 0;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cart-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .products-grid,
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-header,
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-column:nth-child(4),
    .cart-column:nth-child(5),
    .cart-item > div:nth-child(4),
    .cart-item > div:nth-child(5) {
        display: none;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step {
        width: 100%;
    }
    
    .step-connector {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .order-status {
        flex-direction: column;
        gap: 30px;
    }
    
    .status-connector {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .main-nav li a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        border-right: 1px solid var(--border-color);
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        border-radius: var(--border-radius);
    }
    
    .app-links {
        flex-direction: column;
    }
}
