/* Base Styles */
:root {
    --primary-color: #2c4f8a;
    --primary-dark: #1c3c6a;
    --primary-light: #4a6da0;
    --secondary-color: #e74c3c;
    --secondary-dark: #c0392b;
    --secondary-light: #f5b8b2;
    --accent-color: #27ae60;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --bg-lighter: #f1f3f5;
    --border-color: #ddd;
    --border-light: #eee;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

button, .btn {
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    display: inline-block;
    text-align: center;
}

.btn {
    font-weight: 600;
}

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

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

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

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

.text-btn {
    background: none;
    color: var(--text-light);
    padding: 0.5rem 1rem;
}

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

.view-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.add-to-cart-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

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

.buy-now-btn {
    background-color: var(--accent-color);
    color: white;
}

.buy-now-btn:hover {
    background-color: #219653;
    color: white;
}

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

section {
    padding: 60px 0;
}

/* Header Styles */
header {
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: white;
}

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

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

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

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: var(--radius);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 1.5rem;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 5px;
    color: var(--text-lighter);
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
}

.cart-icon, .account-icon {
    position: relative;
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

.cart-icon.active, .account-icon.active {
    color: var(--primary-color);
}

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

nav {
    background-color: var(--bg-light);
}

.main-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    margin-right: 1.5rem;
}

.main-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

.main-nav a.active::after, .main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 79, 138, 0.8), rgba(44, 79, 138, 0.9)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

/* Benefits Section */
.benefits {
    background-color: var(--bg-light);
}

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

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

.benefit-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

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

.benefit-item h3 {
    margin-bottom: 1rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.cta {
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.cta h3 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

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

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

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

.quality-assurance {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.quality-assurance h3 {
    margin-bottom: 1rem;
}

.quality-assurance ul {
    list-style-type: none;
    padding: 0;
}

.quality-assurance li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.quality-assurance li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Products Section */
.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

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

.product-rating .stars {
    color: #f39c12;
}

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

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

.product-actions .btn {
    flex: 1;
}

/* Beginner Mistakes Section */
.beginner-mistakes {
    background-color: var(--bg-light);
}

.beginner-mistakes h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.mistake-item {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.mistake-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-text p {
    position: relative;
    padding: 0 1rem;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-light);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author .name {
    font-weight: 600;
}

.testimonial-author .location,
.testimonial-author .title {
    font-size: 0.9rem;
    color: var(--text-light);
}

.professional .testimonial {
    background-color: white;
    border: 1px solid var(--border-light);
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: var(--radius);
}

.footer-logo span {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
}

address {
    font-style: normal;
}

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

/* Product Detail Page */
.breadcrumbs {
    margin: 1rem 0 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

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

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

.main-image {
    height: 400px;
    background-color: white;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.product-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.product-stock {
    font-size: 0.9rem;
}

.in-stock {
    color: var(--accent-color);
    font-weight: 600;
}

.product-price {
    margin-bottom: 1.5rem;
}

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

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

.discount {
    background-color: var(--accent-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.product-short-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.product-variants {
    margin-bottom: 1.5rem;
}

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

.variant-options {
    display: flex;
    gap: 0.5rem;
}

.variant-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background-color: white;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.variant-btn:hover:not(.active) {
    border-color: var(--primary-light);
}

.product-quantity {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

.product-guarantee {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.guarantee-item svg {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.product-details-tabs {
    margin-bottom: 3rem;
}

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

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

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

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

.tab-content {
    display: none;
}

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

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

.ingredient h3, .ingredient h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.other-ingredients {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.badge svg {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

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

.rating-average .stars {
    color: #f39c12;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

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

.rating-bars {
    flex: 1;
}

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

.rating-bar .stars {
    width: 40px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin: 0 1rem;
}

.bar {
    height: 100%;
    background-color: #f39c12;
    border-radius: 4px;
}

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

.review-list {
    margin-bottom: 2rem;
}

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

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

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

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

.reviewer-name {
    font-weight: 600;
    margin-right: 0.5rem;
}

.verified-purchase {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    padding: 0.1rem 0.5rem;
    border-radius: var(--radius);
}

.review-rating {
    color: #f39c12;
}

.review-title {
    margin-bottom: 0.25rem;
}

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

.review-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.review-pagination button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background-color: white;
    border-radius: var(--radius);
    cursor: pointer;
}

.review-pagination button.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.review-pagination button.next {
    width: auto;
    padding: 0 1rem;
}

.faq-list {
    margin-top: 1.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: var(--bg-light);
    cursor: pointer;
}

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

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

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

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

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

/* About Page */
.page-header {
    background-color: var(--bg-light);
    text-align: center;
    padding: 60px 0;
}

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

.about-text p {
    margin-bottom: 1.5rem;
}

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

.value-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

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

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

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

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

.team-member h3 {
    margin: 1.5rem 0 0.25rem;
    padding: 0 1.5rem;
}

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

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

.team-member .social-links {
    padding: 0 1.5rem 1.5rem;
}

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

.process-step {
    display: flex;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.about-testimonials {
    background-color: var(--bg-light);
}

.cta-section {
    background: linear-gradient(rgba(44, 79, 138, 0.9), rgba(44, 79, 138, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

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

.info-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.5rem;
}

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

.customer-commitment {
    margin-bottom: 2rem;
}

.social-connect h3 {
    margin-bottom: 1rem;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

.privacy-consent {
    display: flex;
    align-items: flex-start;
}

.privacy-consent input {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.privacy-consent label {
    margin: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.faq-section {
    background-color: var(--bg-light);
}

/* Cart Page */
.cart-empty {
    text-align: center;
    padding: 3rem 0;
}

.empty-cart-icon {
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.cart-empty h2 {
    margin-bottom: 1rem;
}

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

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

.cart-table th {
    text-align: left;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-weight: 600;
}

.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
}

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

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

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

.cart-product-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

.cart-summary {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

.checkout-button {
    margin: 1.5rem 0;
}

.checkout-button .btn {
    width: 100%;
}

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

.secure-checkout p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.secure-checkout svg {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.featured-products {
    background-color: var(--bg-light);
}

/* Checkout Page */
.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

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

.special-instructions textarea {
    resize: vertical;
}

.order-summary {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    align-self: start;
    position: sticky;
    top: 160px;
}

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

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

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

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

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

.checkout-item-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

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

.shipping-info, .guarantees {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.shipping-info h3, .guarantees h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.customer-support {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

.success-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.success-content h1 {
    margin-bottom: 1.5rem;
}

.success-content p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}

.success-steps {
    max-width: 800px;
    margin: 3rem auto;
    text-align: left;
}

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

.customer-support {
    max-width: 800px;
    margin: 3rem auto;
}

.support-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

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

.contact-item svg {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.success-actions {
    margin-top: 3rem;
}

.recommended-products {
    background-color: var(--bg-light);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

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

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    display: none;
    animation: fadeInOut 3s ease;
}

.notification.success {
    background-color: var(--accent-color);
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-20px); }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .header-top .container {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        max-width: none;
        margin: 1rem 0 0;
    }
    
    .main-nav {
        flex-wrap: wrap;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .benefits-container, .stats-container {
        grid-template-columns: 1fr;
    }
    
    .support-contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cart-table {
        font-size: 0.9rem;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
