/* Base Styles */
:root {
    --primary-color: #d32f2f;
    --primary-dark: #9a0007;
    --primary-light: #ff6659;
    --secondary-color: #4caf50;
    --secondary-dark: #087f23;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f8f8;
    --bg-dark: #e0e0e0;
    --border-color: #dddddd;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

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

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

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(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary, 
.btn-secondary, 
.btn-outline {
    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;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

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

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

.btn-add-to-cart, 
.btn-view, 
.btn-buy-now {
    display: inline-block;
    padding: 10px 18px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

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

.btn-add-to-cart:hover {
    background-color: var(--primary-dark);
}

.btn-view {
    background-color: var(--bg-dark);
    color: var(--text-color);
    margin-right: 10px;
}

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

.btn-buy-now {
    background-color: var(--secondary-color);
    color: white;
    margin-left: 10px;
}

.btn-buy-now:hover {
    background-color: var(--secondary-dark);
}

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

.logo {
    display: flex;
    align-items: center;
}

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

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

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

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

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

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

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

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

.cart-link svg {
    margin-right: 5px;
}

#cart-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    position: absolute;
    top: -5px;
    right: -5px;
}

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

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: #f8f3e8;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://source.unsplash.com/random/1600x900/?pizza');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 60px;
}

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

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

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

/* Advantages Section */
.advantages {
    padding: 60px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.advantages h2 {
    margin-bottom: 40px;
}

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

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

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

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

.advantage-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.stat-item {
    padding: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
}

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

.stat-item p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-banner {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 8px;
    color: white;
    text-align: center;
}

.cta-banner h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* About Products Section */
.about-products {
    padding: 60px 0;
}

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

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge svg {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Data Visualization Section */
.data-visualization {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.chart-container {
    max-width: 800px;
    margin: 0 auto 20px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.chart-caption {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
}

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

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

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

.testimonial:before {
    content: '"';
    font-family: var(--font-secondary);
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: rgba(0, 0, 0, 0.05);
}

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

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

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

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

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

.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.4rem;
}

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

.product-description {
    color: var(--text-light);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-card.small {
    display: flex;
    flex-direction: column;
}

.product-card.small .product-image {
    height: 180px;
}

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

.related-products {
    margin-top: 40px;
}

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

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

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

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

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

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

.product-detail-image {
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.stars {
    display: flex;
    color: #ffc107;
    margin-right: 10px;
}

.rating-count {
    color: var(--text-light);
}

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

.product-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
}

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

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

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

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

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

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

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

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

#quantity {
    width: 60px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
}

.product-actions {
    display: flex;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 60px;
}

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

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

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

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

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

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

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

.tab-content h3 {
    margin-bottom: 20px;
}

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

.nutrition-table tr {
    border-bottom: 1px solid var(--border-color);
}

.nutrition-table td {
    padding: 12px 0;
}

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

.nutrition-table td:last-child {
    text-align: right;
}

/* Reviews */
.review {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.review:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.review-header {
    margin-bottom: 10px;
}

.review-stars {
    display: flex;
    color: #ffc107;
    margin-bottom: 10px;
}

.review-header h4 {
    margin-bottom: 5px;
}

.review-meta {
    display: flex;
    color: var(--text-light);
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    margin-right: 15px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

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

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

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

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

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact svg {
    margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
}

.btn-cookie.customize {
    background-color: var(--warning-color);
    color: white;
}

.btn-cookie.decline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.cookie-link {
    color: #ccc;
    text-decoration: underline;
}

.cookie-link:hover {
    color: white;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    animation: fadeIn 0.3s, fadeOut 0.3s 2.5s forwards;
}

.notification p {
    margin: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

/* About Us Page */
.page-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 60px;
}

.page-banner h1 {
    color: white;
    margin-bottom: 10px;
}

.about-story {
    padding-bottom: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

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

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

.values-list li {
    display: flex;
    margin-bottom: 30px;
}

.value-icon {
    margin-right: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.value-content h3 {
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

/* Achievements Section */
.achievements-section {
    padding: 60px 0;
}

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

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

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

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

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

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

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

/* History Timeline */
.history-timeline {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.history-timeline h2 {
    text-align: center;
    margin-bottom: 60px;
}

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

.timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
    left: 50px;
    top: 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

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

.timeline-year {
    width: 100px;
    font-weight: 700;
    font-size: 1.2rem;
    padding-right: 30px;
    text-align: right;
    position: relative;
}

.timeline-year:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    right: -10px;
    top: 5px;
    border: 3px solid white;
}

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

.timeline-content h3 {
    margin-bottom: 10px;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    margin-top: 60px;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

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

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

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

.contact-methods {
    margin: 40px 0;
}

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

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

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

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

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

.social-icons-small a {
    color: var(--text-color);
    transition: var(--transition);
}

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

.business-hours {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.business-hours h3 {
    margin-bottom: 15px;
}

.hours-table {
    width: 100%;
}

.hours-table tr {
    line-height: 2;
}

.hours-table td:last-child {
    font-weight: 600;
    text-align: right;
}

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

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

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

.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-size: 1rem;
    font-family: var(--font-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

.form-group.checkbox-group label {
    margin-bottom: 0;
}

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

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

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

.hidden {
    display: none !important;
}

/* Map Section */
.map-section {
    padding-bottom: 60px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

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

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

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

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

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

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

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 500px;
}

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

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.cart-headers {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 40px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

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

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

.cart-product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

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

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

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

.cart-quantity input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 5px;
}

.cart-quantity-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 5px;
}

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

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

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

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

.summary-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 15px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.promo-code {
    display: flex;
    margin-bottom: 15px;
}

.promo-code input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    border-right: none;
}

.promo-code button {
    padding: 10px 15px;
    border-radius: 0 4px 4px 0;
}

.promo-message {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.promo-message.success {
    color: var(--success-color);
}

.promo-message.error {
    color: var(--error-color);
}

.checkout-btn {
    width: 100%;
    margin-bottom: 20px;
}

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

.payment-methods p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

.checkout-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.breadcrumb-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.breadcrumb-divider {
    width: 60px;
    height: 2px;
    background-color: var(--bg-dark);
    margin: 0 20px 20px;
}

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

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

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

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

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

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

.checkout-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.checkout-product {
    display: flex;
}

.checkout-product-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

.checkout-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.checkout-product-price {
    font-weight: 600;
}

.discount {
    color: var(--success-color);
}

.secure-checkout {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    color: var(--success-color);
}

.secure-icon {
    margin-right: 10px;
}

.secure-checkout p {
    margin-bottom: 0;
}

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

.success-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.what-happens-next {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.what-happens-next h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

.step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step p {
    margin-bottom: 0;
}

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

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

.you-may-also-like {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.you-may-also-like h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .main-nav.show {
        display: flex;
    }
    
    .main-nav li {
        margin: 0 0 15px;
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .advantage-grid, 
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .cart-headers {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .cart-price::before {
        content: 'Price: ';
        font-weight: 600;
    }
    
    .cart-quantity::before {
        content: 'Quantity: ';
        font-weight: 600;
        margin-right: 10px;
    }
    
    .cart-subtotal::before {
        content: 'Subtotal: ';
        font-weight: 600;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-banner {
        padding: 30px 20px;
    }
    
    .cta-banner h3 {
        font-size: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    .cart-actions, 
    .form-actions, 
    .success-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, 
    .btn-secondary, 
    .btn-outline {
        width: 100%;
    }
}
