/* Base Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #457b9d;
    --accent-color: #f1c40f;
    --text-color: #333333;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --gray-color: #e0e0e0;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --border-radius: 8px;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

ul, ol {
    list-style: none;
}

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

section {
    padding: 60px 0;
}

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

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

.primary-btn:hover {
    background-color: #c5303e;
    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: #3a6b8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(69, 123, 157, 0.2);
}

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

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

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

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

.cookie-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
    margin: 0 5px;
}

.cookie-btn:hover {
    background-color: #c5303e;
}

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

.cookie-btn.secondary:hover {
    background-color: rgba(29, 53, 87, 0.1);
}

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

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

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

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

.main-nav li a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

.main-nav li a.active,
.main-nav li a:hover {
    color: var(--primary-color);
    background-color: rgba(230, 57, 70, 0.1);
}

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

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

.language-selector {
    margin-left: 20px;
}

.language-selector button {
    background: transparent;
    border: 1px solid var(--gray-color);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.language-selector button:hover {
    background-color: var(--gray-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(29, 53, 87, 0.7), rgba(29, 53, 87, 0.7)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

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

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

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

/* Features Section */
.features {
    background-color: white;
    text-align: center;
}

.features h2 {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.features h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

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

.feature-item {
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

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

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

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

.cta-container h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* About Products Section */
.about-products {
    background-color: #f9f9f9;
}

.about-products h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.about-products h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

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

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

.about-content h3 {
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

/* Products Section */
.products {
    text-align: center;
}

.products h2 {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.products h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

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

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

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.product-card .price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    padding: 0 20px 10px;
}

.product-card .description {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.9rem;
    height: 60px;
    overflow: hidden;
}

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

.product-actions a, 
.product-actions button {
    flex: 1;
}

/* Fun Fact Section */
.fun-fact {
    background-color: var(--light-color);
    text-align: center;
    padding: 40px 0;
}

.fun-fact-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--accent-color);
}

.fun-fact h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.fun-fact p {
    font-size: 1.1rem;
}

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

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

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

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4:after,
.footer-contact h4:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

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

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

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

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

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

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

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

.cookie-more-info a {
    text-decoration: underline;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    display: none;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.breadcrumbs {
    margin-bottom: 30px;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #666;
}

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

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

.product-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.product-rating i {
    color: var(--accent-color);
    margin-right: 2px;
}

.product-rating span {
    margin-left: 10px;
    color: #666;
    font-size: 0.9rem;
}

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

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

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

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

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

.option-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.option-btn:hover {
    border-color: var(--secondary-color);
}

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

.product-description,
.product-ingredients {
    margin-bottom: 25px;
}

.product-description h3,
.product-ingredients h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-description p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.product-ingredients ul li {
    margin-bottom: 5px;
    color: #666;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.quantity-selector label {
    margin-right: 15px;
    font-weight: 600;
}

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

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.delivery-info {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: var(--border-radius);
}

.delivery-info p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
}

.delivery-info p i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1rem;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.related-products h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

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

.related-product {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 15px;
}

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

.related-product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-product h3 {
    padding: 10px 10px 5px;
    font-size: 1.1rem;
}

.related-product p {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.cart-section h1 {
    text-align: center;
    margin-bottom: 40px;
}

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

.empty-cart i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h2 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
}

.cart-items-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: none;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

.cart-header-product,
.cart-header-price,
.cart-header-quantity,
.cart-header-total,
.cart-header-action {
    text-align: center;
}

.cart-header-product {
    text-align: left;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
}

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

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-name {
    font-weight: 600;
}

.cart-item-price,
.cart-item-quantity,
.cart-item-total {
    text-align: center;
}

.cart-item-quantity {
    display: flex;
    justify-content: center;
}

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

.cart-item-quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

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

.cart-item-remove {
    text-align: center;
}

.cart-item-remove-btn {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-summary {
    padding: 20px;
    background-color: #f9f9f9;
}

.cart-totals {
    margin-bottom: 30px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
    padding: 10px 0;
}

.cart-grand-total {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
}

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

.cart-actions a {
    flex: 1;
    text-align: center;
}

.delivery-notice {
    margin-top: 40px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.delivery-notice p {
    display: inline-block;
    margin: 0 20px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.delivery-notice p i {
    color: var(--primary-color);
    margin-right: 5px;
}

.cross-sell {
    margin-top: 40px;
}

.cross-sell h2 {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.cross-sell h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

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

.cross-sell-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    padding-bottom: 20px;
}

.cross-sell-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.cross-sell-item h3 {
    padding: 15px 15px 5px;
}

.cross-sell-item .price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cross-sell-item .btn {
    width: 80%;
}

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

.checkout-section h1 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.checkout-form-container h2 {
    margin-bottom: 25px;
    color: var(--dark-color);
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

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

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

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

.order-summary h2 {
    margin-bottom: 25px;
    color: var(--dark-color);
}

.checkout-items {
    margin-bottom: 30px;
}

.checkout-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.checkout-item-image {
    flex: 0 0 80px;
    margin-right: 15px;
}

.checkout-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

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

.checkout-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.checkout-item-price {
    color: #666;
}

.checkout-item-quantity {
    margin-left: auto;
    color: #666;
}

.checkout-totals {
    margin-bottom: 30px;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
    padding: 8px 0;
}

.checkout-grand-total {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.secure-checkout-info {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-align: center;
}

.secure-checkout-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #666;
}

.secure-checkout-info p:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

.secure-checkout-info p i {
    color: var(--success-color);
    margin-right: 5px;
}

.delivery-info {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
}

.delivery-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #666;
}

.delivery-info p i {
    color: var(--secondary-color);
    margin-right: 5px;
}

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

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

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

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

.success-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.success-info {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: var(--border-radius);
}

.success-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.success-info p i {
    color: var(--secondary-color);
    margin-right: 10px;
}

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

.after-purchase {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.after-purchase h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.after-purchase h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

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

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

.after-purchase-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.after-purchase-item h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.after-purchase-item p {
    color: #666;
    margin-bottom: 20px;
}

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

.app-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: var(--dark-color);
    color: white;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.app-button i {
    font-size: 1.1rem;
}

.app-button:hover {
    background-color: #16293f;
    color: white;
}

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

.social-share-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    transition: var(--transition);
}

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

/* Contact Page */
.page-banner {
    background: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-banner h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

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

.contact-icon {
    flex: 0 0 60px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-details h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.contact-details p {
    margin-bottom: 5px;
    color: #666;
}

.contact-details .subtext {
    font-size: 0.9rem;
    color: #999;
}

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

.social-contact h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.business-hours {
    margin-top: 30px;
}

.business-hours h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.business-hours ul li {
    margin-bottom: 10px;
    color: #666;
}

.business-hours ul li span {
    font-weight: 600;
    margin-right: 10px;
    color: var(--dark-color);
}

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

.contact-form-container h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-form {
    display: block;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
    flex-direction: column;
    align-items: center;
}

.form-success i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success p {
    font-size: 1.2rem;
    color: #333;
}

.map-container {
    margin-top: 60px;
    text-align: center;
}

.map-container h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.map-placeholder {
    background-color: #f5f5f5;
    border-radius: var(--border-radius);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: #666;
}

.faq-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.faq-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

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

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

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

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

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

.about-story-text h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
}

.about-story-text h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.about-story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.about-story-text h3 {
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

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

.about-values {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.about-values h2 {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.about-values h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

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

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

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.value-item p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 60px 0;
    text-align: center;
}

.team-section h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.team-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.team-intro {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 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(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

.team-member p {
    color: #666;
    padding: 0 20px;
    margin-bottom: 10px;
}

.team-member p:nth-child(3) {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member .social-icons {
    margin: 20px 0;
    justify-content: center;
}

.milestones {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.milestones h2 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.milestones h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ddd;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

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

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    color: #666;
}

.testimonials {
    padding: 60px 0;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.testimonials h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 20px;
    position: relative;
}

.testimonial-slide {
    display: none;
}

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

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid white;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.testimonial-author p {
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-rating {
    margin-top: 10px;
    color: var(--accent-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

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

.join-us {
    background: linear-gradient(rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.9)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 60px 0;
}

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

.join-us h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.join-us p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

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

    .product-detail-content {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 60px 0;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .feature-grid,
    .product-grid,
    .values-grid,
    .team-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-item-info {
        justify-content: center;
        margin-bottom: 15px;
    }

    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total {
        margin-bottom: 10px;
    }

    .cart-actions {
        flex-direction: column;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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