:root {
    --primary-color: #5a7d4a; /* Dark green for nav and primary buttons */
    --secondary-color: #a3c94f; /* Modern lime green for buttons and badges */
    --accent-color: #88b04b;
    --bg-color: #f4f7f2; /* Soft off-white with green tint */
    --text-color: #2d3527;
    --text-light: #5b6751;
    --white: #ffffff;
    --sale-color: #e67e22; /* Orange-red for sale prices */
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
header {
    background: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.logo-bottom {
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    background: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    opacity: 0.8;
}

nav ul li a:hover,
nav ul li a.active {
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-bar {
    display: flex;
    background: #e9f0e4;
    border-radius: 50px;
    padding: 0.4rem 0.5rem 0.4rem 1.2rem;
    align-items: center;
    width: 250px;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 0.85rem;
    color: var(--text-color);
}

.search-bar button {
    background: var(--secondary-color);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-bar button:hover {
    transform: scale(1.1);
    background: var(--primary-color);
}

.user-actions {
    display: flex;
    gap: 1rem;
}

.user-btn, .cart-btn {
    background: var(--secondary-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.cart-btn .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(163, 201, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(163, 201, 79, 0.4);
    background: var(--primary-color);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.circular-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 30px solid var(--secondary-color);
    border-bottom-color: transparent;
    border-left-color: transparent;
    z-index: -1;
    animation: rotateCircle 20s linear infinite;
}

.hero-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.floating-leaf {
    position: absolute;
    color: var(--secondary-color);
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.leaf-1 { top: 10%; left: 0; animation-delay: 0s; }
.leaf-2 { bottom: 20%; left: 10%; animation-delay: 1s; }
.leaf-3 { top: 30%; right: 0; animation-delay: 2s; }

/* Today's Deal Section */
.todays-deal {
    padding: 6rem 0;
    background: var(--white);
    border-radius: 60px 60px 0 0;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.02);
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    border-bottom: 2px dashed #e1e9db;
    padding-bottom: 2rem;
}

.deal-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.deal-title p {
    color: var(--text-light);
}

.countdown {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-num {
    background: var(--secondary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.time-separator {
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-container {
    position: relative;
    border-radius: 50%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 2rem;
}

.image-bg-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #e1e9db;
    z-index: 1;
}

.product-image-container img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image-container img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 3;
}

.quick-add {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    z-index: 4;
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .quick-add {
    opacity: 1;
    bottom: 5px;
}

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.price {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.current-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.old-price {
    text-decoration: line-through;
    color: #e74c3c;
    font-size: 0.9rem;
}

.delivery {
    font-size: 0.75rem;
    color: #8da17f;
    font-weight: 500;
}

.delivery i {
    margin-right: 5px;
}

/* Page Header */
.page-header {
    background: var(--white);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
}

.filters {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
    box-shadow: var(--shadow);
}

.filter-group {
    margin-bottom: 2.5rem;
}

.filter-group h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 10px;
}

.filter-group ul {
    list-style: none;
}

.filter-group li {
    margin-bottom: 0.8rem;
}

.filter-group label {
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-slider {
    width: 100%;
    accent-color: var(--secondary-color);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-top: 5px;
    color: var(--text-light);
}

/* Shop Display */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.sort-bar select {
    border: 1px solid #eee;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    outline: none;
}

.shop-page-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.pagination a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.pagination a.active,
.pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* About Page styles */
.about-hero {
    background: linear-gradient(rgba(90, 125, 74, 0.05), rgba(163, 201, 79, 0.05)), url('hero.png');
    background-size: cover;
    background-position: center;
    padding: 10rem 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 8rem 2rem;
}

.story-image {
    position: relative;
}

.image-accent-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 30px;
    z-index: -1;
}

.story-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.story-content h2 {
    font-size: 2.5rem;
    margin: 1rem 0 2rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.our-mission {
    background: var(--primary-color);
    padding: 10rem 0;
    text-align: center;
    color: var(--white);
    border-radius: 100px;
    margin: 4rem 2rem;
}

.mission-card i {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.mission-card h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.mission-card p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.why-choose-us {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 6rem 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 25px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--white);
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-links {
    margin-top: 2rem;
    padding: 2rem;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e9f0e4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Form Styles */
.contact-form-container {
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.form-title {
    margin-bottom: 3rem;
}

.form-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.form-title p {
    color: #8da17f;
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #f0f4f0;
    border-radius: 15px;
    background: #fcfdfc;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(163, 201, 79, 0.1);
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
}

/* Map Section */
.map-section {
    padding: 4rem 0 8rem;
}

.map-container {
    height: 450px;
    background: #e9f0e4;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid #dce6d8;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #8da17f;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 2.5rem;
    }
}

/* Blog Page Styles */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    padding: 6rem 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 3rem;
}

.featured-blog {
    display: flex;
    align-items: center;
    gap: 0;
}

.featured-blog .blog-image {
    width: 50%;
    height: 100%;
}

.featured-blog .blog-content {
    width: 50%;
    padding: 4rem;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.blog-date span {
    display: block;
    font-size: 1.2rem;
}

.blog-content {
    padding: 2.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.blog-content h2, 
.blog-content h3 {
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.read-more {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 15px;
    color: var(--secondary-color);
}

.blog-grid-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Sidebar Widget Styles */
.sidebar-widget {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #f9f9f9;
    padding-bottom: 1.2rem;
}

.sidebar-list a {
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    transition: var(--transition);
}

.sidebar-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-widget {
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
}

.newsletter-widget i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.newsletter-widget h3::after {
    left: 50%;
    transform: translateX(-50%);
}

.newsletter-widget p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.sidebar-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    margin-bottom: 1rem;
}

/* Responsive Blog */
@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .featured-blog {
        flex-direction: column;
    }
    .featured-blog .blog-image, 
    .featured-blog .blog-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-grid-secondary {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Page Styles */
.testimonial-wall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 6rem 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 40px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9f0e4;
}

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.video-testimonials {
    padding: 8rem 0;
    background: rgba(90, 125, 74, 0.03);
    border-radius: 80px;
    margin: 4rem 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 4rem;
}

.video-placeholder {
    height: 350px;
    border-radius: 40px;
    background: linear-gradient(45deg, #1d251d, #3e503e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.video-placeholder i {
    font-size: 4.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.video-placeholder:hover i {
    transform: scale(1.2);
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.review-cta {
    padding: 8rem 0;
    text-align: center;
}

.cta-content {
    background: var(--white);
    padding: 5rem;
    border-radius: 60px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonial-wall {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .testimonial-wall, .video-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

/* Discounts Page Styles */
.promo-banners {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 6rem 2rem;
}

.promo-card {
    border-radius: 40px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-promo {
    background: linear-gradient(135deg, #f4f7f2 0%, #e9f0e4 100%);
    display: flex;
    align-items: center;
    border: 1px solid #dce6d8;
}

.main-promo .promo-text {
    width: 60%;
    z-index: 2;
}

.main-promo .promo-visual {
    width: 40%;
    transform: rotate(10deg);
}

.main-promo .promo-visual img {
    width: 130%;
}

.tag {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.promo-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.promo-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.promo-sidebar-offers {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mini-promo {
    background: var(--white);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.mini-promo.alt {
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

.mini-promo.alt p {
    color: rgba(255,255,255,0.8);
}

.mini-promo .icon {
    font-size: 2.5rem;
    margin-top: 1.5rem;
    display: block;
    color: var(--secondary-color);
}

.sale-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

/* Coupon Styles */
.coupons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 6rem;
    padding-bottom: 8rem;
}

.coupon-box {
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    border: 2px dashed #e1e9db;
    text-align: center;
    transition: var(--transition);
}

.coupon-box:hover {
    border-color: var(--secondary-color);
    background: #fcfdfb;
}

.coupon-box.gold {
    background: linear-gradient(135deg, #fffcf5 0%, #fff7e6 100%);
    border-color: #f1c40f;
}

.coupon-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.coupon-code {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #f4f7f2;
    border-radius: 15px;
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0;
    letter-spacing: 3px;
    border: 1px solid #dce6d8;
}

.btn-copy {
    display: block;
    margin: 0 auto;
    background: none;
    border: none;
    color: var(--secondary-color);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Responsive Discounts */
@media (max-width: 992px) {
    .promo-banners, .coupons-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--white);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.footer-bottom {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animations */
@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Scroll Revelations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        transition: 0.5s ease-in-out;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    nav.nav-active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        background: none;
        padding: 0;
        border-radius: 0;
        gap: 2rem;
        align-items: center;
    }

    nav ul li a {
        color: var(--primary-color);
        font-size: 1.5rem;
    }

    .search-bar {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
        z-index: 3000;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .deal-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    /* About Page Mobile */
    .about-hero {
        padding: 6rem 0;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .story-grid {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
        gap: 3rem;
    }
    .story-content h2 {
        font-size: 2rem;
    }
    .stats-row {
        gap: 1.5rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .our-mission {
        padding: 5rem 1.5rem;
        border-radius: 40px;
        margin: 3rem 1rem;
    }
    .mission-card h2 {
        font-size: 2rem;
    }
    .mission-card p {
        font-size: 1.1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    /* Shop Page Mobile */
    .shop-layout {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }
    .filters {
        padding: 1.5rem;
    }
    .sort-bar {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        border-radius: 20px;
        text-align: center;
    }
    .shop-page-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
