/* Base Styles */
:root {
    --primary-color: #50c878; /* Vibrant green for Pepe theme */
    --primary-dark: #40a060;
    --secondary-color: #34495e;
    --accent-color: #f1c40f;
    --text-color: #333333;
    --text-light: #777777;
    --text-white: #ffffff;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --border-color: #e1e1e1;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #2c3e50;
}

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

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

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

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

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

.cart-icon {
    position: relative;
}

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

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

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

/* Breadcrumb Styles */
.breadcrumb {
    background-color: var(--bg-light);
    padding: 0.75rem 0;
    margin-bottom: 2rem;
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb ul li {
    display: flex;
    align-items: center;
}

.breadcrumb ul li:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: var(--text-light);
}

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

.breadcrumb li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

/* Hero Section Styles */
.hero {
    padding: 4rem 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    text-align: center;
    margin-bottom: 3rem;
}

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

/* Image Slider */
.image-slider {
    margin-bottom: 3rem;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    display: block;
    height: 400px;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    padding: 1rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-white);
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    user-select: none;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dots-container {
    text-align: center;
    padding: 1rem 0;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

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

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Advantages Section Styles */
.advantages {
    padding: 4rem 0;
    background-color: var(--bg-light);
    margin-bottom: 3rem;
}

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

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

.advantage-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.advantage-card h3 {
    margin-bottom: 1rem;
}

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

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

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

.cta {
    text-align: center;
}

/* About Products Section */
.about-products {
    padding: 4rem 0;
    margin-bottom: 3rem;
}

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

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

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.quality-guarantees h3 {
    margin-bottom: 1.5rem;
}

.quality-guarantees ul {
    list-style: none;
}

.quality-guarantees li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quality-guarantees svg {
    color: var(--primary-color);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Products Section Styles */
.products {
    padding: 4rem 0;
    margin-bottom: 3rem;
}

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

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

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.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 {
    margin-bottom: 0.75rem;
}

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

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

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

/* Poll Section Styles */
.poll-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    margin-bottom: 3rem;
}

.poll-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.poll-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.poll-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.poll-options {
    margin-bottom: 2rem;
}

.poll-option {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.poll-option:hover {
    background-color: var(--bg-light);
}

.poll-option input {
    margin-right: 1rem;
}

.poll-results {
    margin-top: 2rem;
}

.poll-results h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.result-bar {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.result-bar .label {
    width: 30%;
    font-weight: 500;
}

.result-bar .bar {
    flex: 1;
    height: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 1rem;
}

.result-bar .fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.result-bar .percentage {
    width: 50px;
    text-align: right;
    font-weight: 500;
}

.thank-you {
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

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

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

.footer-links h4,
.footer-contact h4 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #b3b3b3;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #b3b3b3;
}

.footer-contact svg {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

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

.social-icons a {
    color: #b3b3b3;
    transition: var(--transition);
}

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

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

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-content h3 {
    margin-bottom: 0.75rem;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cookie-policy {
    font-size: 0.875rem;
}

.cookie-policy a {
    text-decoration: underline;
}

/* Product Detail Page Styles */
.product-detail {
    padding: 2rem 0;
    margin-bottom: 3rem;
}

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

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

.product-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.product-info-container h1 {
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.stars {
    display: flex;
    color: var(--accent-color);
    margin-right: 0.75rem;
}

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

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

.product-features {
    margin-bottom: 2rem;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.product-features h3 {
    margin-bottom: 1rem;
}

.product-features ul {
    padding-left: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
}

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

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

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

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

.quantity-decrease,
.quantity-increase {
    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.5rem;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

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

.product-meta-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.shipping-info,
.returns-info,
.secure-info {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.shipping-info svg,
.returns-info svg,
.secure-info svg {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

/* Related Products Section */
.related-products {
    padding: 3rem 0;
    background-color: var(--bg-light);
    margin-bottom: 3rem;
}

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

/* Cart Page Styles */
.cart-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

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

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

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

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

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

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

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

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

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

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

.cart-product-title {
    margin-bottom: 0.5rem;
}

.cart-product-id {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.cart-total {
    color: var(--primary-color);
}

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

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

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

.continue-shopping {
    align-self: flex-start;
}

.cart-totals {
    width: 350px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.subtotal,
.shipping,
.total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

.checkout-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.cart-recommendations {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

.cart-recommendations h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Checkout Page Styles */
.checkout-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

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

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

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

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

.form-group {
    margin-bottom: 1.5rem;
    width: calc(50% - 0.75rem);
    display: inline-block;
}

.form-group:nth-child(odd) {
    margin-right: 1.5rem;
}

.full-width {
    width: 100%;
}

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

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

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

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

.checkout-summary h2 {
    margin-bottom: 2rem;
}

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

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

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

.checkout-item-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.checkout-item-price-qty {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.subtotal-row,
.shipping-row,
.tax-row,
.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

.checkout-security {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.secure-checkout {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

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

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

/* Success Page Styles */
.success-section {
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.success-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.success-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.success-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    text-align: left;
}

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

.recommended-products {
    padding: 3rem 0;
    background-color: var(--bg-light);
}

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

/* Contact Page Styles */
.contact-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-card:hover {
    background-color: var(--bg-color);
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
}

.contact-icon {
    color: var(--primary-color);
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(80, 200, 120, 0.1);
    border-radius: 50%;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.social-media-contact {
    margin-top: 1.5rem;
}

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

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

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

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-form .form-group {
    width: calc(50% - 0.75rem);
    margin-right: 0;
}

.contact-form .full-width {
    width: 100%;
}

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

.form-success svg {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 3rem 0;
    background-color: var(--bg-light);
    margin-bottom: 3rem;
}

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

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

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

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* About Page Styles */
.about-hero {
    padding: 4rem 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    margin-bottom: 3rem;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1.5rem;
}

.about-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-values {
    padding: 4rem 0;
    margin-bottom: 3rem;
}

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

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

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

.value-card:hover {
    background-color: var(--bg-color);
    box-shadow: var(--box-shadow);
    transform: translateY(-10px);
}

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

.about-timeline {
    padding: 4rem 0;
    background-color: var(--bg-light);
    margin-bottom: 3rem;
}

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

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

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

.timeline-item {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-year {
    flex: 0 0 100px;
    font-weight: bold;
    color: var(--primary-color);
    position: relative;
    padding-top: 0.5rem;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-content {
    flex: 1;
    padding-left: 2rem;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
}

.team-section {
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

.team-member .social-icons {
    justify-content: center;
    margin: 0 0 1.5rem;
}

.testimonials {
    padding: 4rem 0;
    background-color: var(--bg-light);
    margin-bottom: 3rem;
}

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

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

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1.5rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    opacity: 0.3;
}

.testimonial-content p::before {
    left: 0;
    top: -10px;
}

.testimonial-content p::after {
    right: 0;
    bottom: -20px;
}

.testimonial-author {
    text-align: right;
}

.author-name {
    font-weight: 500;
}

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

.cta-section {
    padding: 4rem 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    margin-bottom: 3rem;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-content p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

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

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

    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .advantage-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cart-header,
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .cart-price {
        display: none;
    }

    .cart-summary {
        flex-direction: column;
        gap: 2rem;
    }

    .cart-totals {
        width: 100%;
    }

    .form-group,
    .form-group:nth-child(odd) {
        width: 100%;
        margin-right: 0;
    }

    .contact-form .form-group {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .cart-header,
    .cart-item {
        grid-template-columns: 2fr 1fr;
    }

    .cart-quantity {
        display: none;
    }

    .quantity-selector {
        max-width: 150px;
    }

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

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

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

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

/* Animation Styles */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}
