/* Global Variables */
:root {
    --primary-color: #065a82;
    --secondary-color: #ffb347;
    --accent-color: #e66767;
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-text: #777;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --hover-color: #043e5a;
    --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --border-radius: 8px;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --header-height: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border: 3px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color);
}

/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul {
    list-style: none;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
}

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

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

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

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

.view-btn {
    background-color: #f8f9fa;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
}

.view-btn:hover {
    background-color: #e9ecef;
}

.add-to-cart-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
}

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

.cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-left: 10px;
}

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

.cookie-btn.secondary:hover {
    background-color: #f1f1f1;
    color: var(--text-color);
}

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

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

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

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

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

.nav-links li {
    margin: 0 1rem;
}

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

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

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

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

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

.cart-icon i {
    font-size: 1.25rem;
    margin-right: 5px;
}

#cart-count {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    text-align: center;
    line-height: 20px;
}

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

.hamburger .line1,
.hamburger .line2,
.hamburger .line3 {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(6, 90, 130, 0.9), rgba(6, 90, 130, 0.8)), url('images/1.jpg') no-repeat center center/cover;
    padding: 5rem 0;
    color: white;
    text-align: center;
}

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

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

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

.admin-preview {
    margin-top: 3rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.admin-iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--border-radius);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 500"><rect width="800" height="500" fill="%23f5f5f5"/><text x="400" y="250" font-family="Arial" font-size="20" text-anchor="middle" fill="%23777">Admin Dashboard Preview</text></svg>');
    background-size: cover;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: white;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.benefit-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.stat {
    text-align: center;
    padding: 1rem;
}

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

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

.cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Products Section */
.about-products {
    padding: 5rem 0;
    background-color: #f3f8fa;
}

.about-products h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.product-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.product-info h3 {
    margin-top: 2rem;
    color: var(--primary-color);
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: white;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.product-info .description {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

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

.product-actions .btn {
    flex: 1;
    margin: 0 5px;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background-color: #f3f8fa;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

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

/* Footer */
footer {
    background-color: #06394f;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.footer-column p {
    margin-bottom: 0.5rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icons svg {
    color: white;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

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

.cookie-policy {
    width: 100%;
    font-size: 0.875rem;
    color: var(--light-text);
    margin-top: 10px;
}

/* Product Detail Page */
.product-details {
    padding: 4rem 0;
    background-color: white;
}

.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--light-text);
}

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

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

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

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

.product-info-detailed h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-info-detailed .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.rating span {
    margin-left: 0.5rem;
    color: var(--light-text);
}

.product-description {
    margin-bottom: 2rem;
}

.product-description ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.quantity {
    margin-bottom: 1.5rem;
}

.quantity label {
    display: block;
    margin-bottom: 0.5rem;
}

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

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

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

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions button {
    flex: 1;
}

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

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

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

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

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

.tab-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.tab-pane {
    display: none;
}

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

.tab-pane h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.tab-pane h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tab-pane ul, .tab-pane ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.specs-table th, .specs-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th {
    width: 30%;
    font-weight: 600;
    color: var(--primary-color);
}

.review-summary {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.average-rating {
    text-align: center;
    min-width: 150px;
}

.rating-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-distribution {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rating-level {
    width: 60px;
    margin-right: 1rem;
}

.progress {
    flex: 1;
    height: 8px;
    background-color: #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #ffc107;
}

.rating-percent {
    width: 40px;
    margin-left: 1rem;
    text-align: right;
}

.review {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.review-rating {
    color: #ffc107;
}

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

/* Related Products */
.related-products {
    padding: 4rem 0;
    background-color: white;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* About Us Page */
.about-hero {
    background: linear-gradient(rgba(6, 90, 130, 0.9), rgba(6, 90, 130, 0.8)), url('images/3.jpg') no-repeat center center/cover;
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.about-hero h1 {
    color: white;
}

.subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

.about-mission, .about-story {
    padding: 5rem 0;
    background-color: white;
}

.mission-content, .story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-text {
    font-size: 1.125rem;
}

.mission-values {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.mission-values ul {
    list-style: none;
}

.mission-values li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.value-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.value-text {
    flex: 1;
}

.about-story {
    background-color: #f8f9fa;
}

.story-content {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.milestones {
    margin-top: 3rem;
}

.timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
}

.timeline-date {
    min-width: 80px;
    font-weight: 700;
    color: var(--primary-color);
}

.timeline-content {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--primary-color);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
}

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

.team-section {
    padding: 5rem 0;
    background-color: white;
}

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

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

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

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

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

.team-card h3 {
    margin: 1.5rem 0 0.5rem;
}

.team-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.team-card p:nth-child(3) {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    background-color: #f8f9fa;
}

.social-links a {
    color: var(--light-text);
    transition: var(--transition);
}

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

.testimonials-section {
    padding: 5rem 0;
    background-color: #f3f8fa;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.testimonial-content {
    position: relative;
    padding-top: 30px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-author {
    margin-top: 1.5rem;
    text-align: right;
}

.author-name {
    display: block;
    font-weight: 600;
}

.author-title {
    display: block;
    font-size: 0.875rem;
    color: var(--light-text);
}

.partners-section {
    padding: 5rem 0;
    background-color: white;
}

.partners-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.partner {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.partner h3 {
    color: var(--primary-color);
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(6, 90, 130, 0.9), rgba(6, 90, 130, 0.8)), url('images/5.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    color: white;
}

.cta-form {
    display: flex;
    max-width: 600px;
    margin: 2rem auto 0;
}

.cta-form input {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border: none;
    font-size: 1rem;
}

.cta-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(6, 90, 130, 0.9), rgba(6, 90, 130, 0.8)), url('images/2.jpg') no-repeat center center/cover;
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    color: white;
}

.contact-info {
    padding: 5rem 0;
    background-color: white;
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: #f3f8fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.form-container h2 {
    margin-bottom: 1rem;
}

.form-container p {
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.checkbox-group label {
    flex: 1;
    margin: 0;
    font-weight: normal;
}

.form-actions {
    grid-column: 1 / 3;
    display: flex;
    justify-content: flex-end;
}

.form-success {
    text-align: center;
    padding: 3rem;
    display: none;
}

.form-success i {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.map-section {
    padding: 5rem 0;
    background-color: white;
}

.map-container {
    margin-top: 2rem;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.map-content {
    text-align: center;
}

.map-content i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 5rem 0;
    background-color: #f3f8fa;
}

.faq-container {
    margin-top: 2rem;
}

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

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

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

.faq-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Cart Page */
.cart-section {
    padding: 4rem 0;
    background-color: white;
}

.cart-section h1 {
    text-align: center;
    margin-bottom: 3rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
}

.cart-empty i {
    font-size: 5rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

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

.cart-items-container {
    display: none;
}

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

.cart-items {
    margin: 2rem 0;
}

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

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

.cart-product-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 1rem;
}

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

.cart-product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

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

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

.cart-quantity-btn {
    background: none;
    border: none;
    color: var(--text-color);
    width: 30px;
    height: 30px;
    cursor: pointer;
}

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

.cart-price, .cart-subtotal {
    font-weight: 600;
}

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

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

.cart-summary {
    display: flex;
    justify-content: flex-end;
    margin-top: 3rem;
}

.cart-totals {
    width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

/* Checkout Page */
.checkout-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

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

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-text);
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 50px;
    height: 2px;
    background-color: var(--light-text);
    z-index: -1;
}

.step:last-child .step-number::after {
    display: none;
}

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

.step-text {
    font-size: 0.875rem;
}

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

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

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.checkout-summary {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    align-self: start;
}

.checkout-items {
    margin: 2rem 0;
}

.checkout-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 1rem;
}

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

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

.checkout-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.checkout-item-price {
    font-size: 0.875rem;
    color: var(--light-text);
}

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

.checkout-totals {
    margin-top: 2rem;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

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

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 2rem 0;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
}

.secure-checkout i {
    color: var(--success-color);
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

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

/* Success Page */
.success-section {
    padding: 5rem 0;
    background-color: white;
}

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

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.next-steps {
    margin: 3rem 0;
}

.step-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.support-info {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.support-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.recommended-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.recommended-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transform: translateY(-100vh);
        transition: transform 0.5s ease;
        z-index: 999;
    }

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

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .cart-headers {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        background-color: #f8f9fa;
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }

    .cart-product {
        margin-bottom: 1rem;
    }

    .cart-quantity, .cart-price, .cart-subtotal, .cart-remove {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-top: 1px solid var(--border-color);
    }

    .cart-quantity::before, .cart-price::before, .cart-subtotal::before, .cart-remove::before {
        content: attr(data-label);
        font-weight: 600;
    }

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

    .cart-totals {
        width: 100%;
    }

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

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

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }

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

    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
}
