/* Base Styles */
:root {
    --primary-color: #2b9348;
    --primary-light: #55a630;
    --primary-dark: #1b512d;
    --secondary-color: #1e88e5;
    --secondary-light: #42a5f5;
    --secondary-dark: #0d47a1;
    --accent-color: #ffab00;
    --text-color: #333333;
    --light-text: #666666;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #e0e0e0;
    --dark-gray: #9e9e9e;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --border-radius: 4px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --font-main: 'Roboto', 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', sans-serif;
}

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

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

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;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
}

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

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-view, .btn-add-to-cart, .btn-buy-now {
    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;
}

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

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

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

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

.btn-view {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

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

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('https://source.unsplash.com/random/1200x600/?green,energy');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

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

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

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

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

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

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

.benefit-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

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

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

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

.stat-item p {
    color: var(--light-text);
}

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

/* Product Info Section */
.product-info {
    padding: 80px 0;
    background-color: var(--white);
}

.product-info h2 {
    text-align: center;
    margin-bottom: 30px;
}

.product-info p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: justify;
}

.certificates, .company-history {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.certificates h3, .company-history h3 {
    margin-bottom: 20px;
}

.certificates ul {
    list-style: disc;
    margin-left: 20px;
}

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

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

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

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

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

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

.product-image {
    height: 200px;
    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-card h3 {
    padding: 15px 20px 10px;
    font-size: 1.2rem;
}

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

.product-description {
    padding: 10px 20px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.product-features {
    padding: 5px 20px 15px;
    color: var(--light-text);
    font-size: 0.9rem;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

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

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

.testimonial-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: -10px;
    top: -20px;
    color: var(--primary-light);
    opacity: 0.3;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

/* View Counter */
.view-counter {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
}

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

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

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

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

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

.footer-column address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

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

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

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

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

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.btn-cookie-accept {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-cookie-customize {
    padding: 8px 16px;
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-customize:hover {
    background-color: var(--light-gray);
}

.btn-cookie-reject {
    padding: 8px 16px;
    background-color: var(--white);
    color: var(--text-color);
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    background-color: var(--light-gray);
}

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

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

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

/* Page Header */
.page-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.9rem;
    color: var(--light-text);
}

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

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

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

/* Product Detail */
.product-header {
    background-color: var(--light-gray);
}

.product-detail {
    padding: 50px 0;
}

.product-detail .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.product-image-large img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

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

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.product-price, .product-return {
    margin-bottom: 15px;
}

.price-label, .return-label {
    font-weight: normal;
    color: var(--light-text);
}

.price-amount, .return-amount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-left: 5px;
}

.product-summary {
    margin-bottom: 20px;
}

.product-features-highlight {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

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

.feature-icon {
    margin-right: 15px;
    color: var(--primary-color);
}

.product-actions {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.quantity {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.quantity label {
    margin-right: 10px;
}

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

.quantity-decrease, .quantity-increase {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.quantity-decrease:hover, .quantity-increase:hover {
    background-color: var(--gray);
}

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

/* Product Details Tabs */
.product-details-tabs {
    padding: 30px 0 60px;
    background-color: var(--light-gray);
}

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

.tab-button {
    padding: 15px 25px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.tab-button.active, .tab-button:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

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

.tab-pane {
    display: none;
}

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

.tab-pane h2 {
    margin-bottom: 20px;
}

.tab-pane p {
    margin-bottom: 15px;
}

.tab-pane ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.tab-pane ul li {
    margin-bottom: 5px;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.details-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.details-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Risk Meter */
.risk-meter {
    margin-bottom: 30px;
}

.risk-level {
    margin: 20px 0;
}

.risk-bar {
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    margin-bottom: 5px;
    overflow: hidden;
}

.risk-indicator {
    height: 100%;
    background: linear-gradient(to right, var(--success), var(--warning), var(--error));
}

.risk-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Risk Factors */
.risk-factors {
    margin-bottom: 30px;
}

.risk-factor {
    margin-bottom: 20px;
}

.risk-factor h4 {
    color: var(--text-color);
    margin-bottom: 5px;
}

.risk-disclaimer {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid var(--gray);
}

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

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

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

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

.accordion-item.active .accordion-content {
    padding-bottom: 20px;
}

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

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

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

.related-product {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.related-image {
    height: 200px;
    overflow: hidden;
}

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

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

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

.related-product p {
    padding: 0 20px 15px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.related-product .btn-view {
    margin: 0 20px 20px;
    display: inline-block;
}

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

.cart-empty {
    text-align: center;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cart-empty-icon {
    font-size: 3rem;
    color: var(--dark-gray);
}

.cart-table {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

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

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

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

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

.cart-product-info h4 {
    margin-bottom: 5px;
}

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

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

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

.remove-item:hover {
    color: #d32f2f;
}

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

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

.cart-totals h3 {
    margin-bottom: 20px;
}

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

.summary-item.total {
    margin-top: 20px;
    font-weight: 700;
    border-top: 1px solid var(--gray);
    padding-top: 15px;
}

.summary-note {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-top: 20px;
}

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

/* Checkout Section */
.checkout-section {
    padding: 50px 0;
    background-color: var(--light-gray);
}

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

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

.checkout-form {
    margin-top: 20px;
}

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

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(43, 147, 72, 0.2);
}

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

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
}

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

.checkout-summary {
    position: sticky;
    top: 100px;
}

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

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

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

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

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

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

.checkout-totals {
    margin-top: 20px;
}

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

.checkout-total-row.final {
    margin-top: 20px;
    font-weight: 700;
    border-top: 1px solid var(--gray);
    padding-top: 15px;
}

.checkout-notes {
    margin-top: 30px;
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Checkout Benefits */
.checkout-benefits {
    padding: 60px 0;
    background-color: var(--white);
}

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

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

.benefit-card-small {
    text-align: center;
    padding: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-color);
}

.benefit-card-small h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-card-small p {
    color: var(--light-text);
    font-size: 0.9rem;
}

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

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

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

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--success);
}

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

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

/* Next Steps */
.next-steps {
    padding: 60px 0;
    background-color: var(--light-gray);
}

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

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

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

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-card h3 {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Other Products */
.other-products {
    padding: 60px 0;
    background-color: var(--white);
}

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

/* Contact Section */
.contact-section {
    padding: 50px 0;
}

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

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

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

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

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

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

.about-content h2 {
    margin-bottom: 30px;
}

.about-content p {
    max-width: 800px;
    margin-bottom: 20px;
}

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

.value-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

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

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

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

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

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

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

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

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

.social-links {
    display: flex;
    gap: 15px;
    padding: 0 20px 20px;
}

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

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

/* Certifications Section */
.certifications {
    padding: 60px 0;
}

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

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

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

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

.certification-item h3 {
    margin-bottom: 10px;
}

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

/* Product Header for Product Pages */
.product-header {
    padding: 20px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .cart-header, .cart-row {
        grid-template-columns: 2fr 1fr 1fr 0.5fr;
    }
    
    .cart-quantity {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .btn-add-to-cart, .btn-buy-now {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1 0 50%;
        text-align: center;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .product-grid, .benefits-grid, .testimonial-grid, .related-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-header, .cart-row {
        grid-template-columns: 2fr 1fr 0.5fr;
    }
    
    .cart-total {
        display: none;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-button {
        flex: 1 0 100%;
    }
}
