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

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Critical CSS - Above the fold content */
.navbar {
    will-change: transform;
}

.hero-store-image,
.profile-photo,
.product-image {
    will-change: transform;
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c59;
    --accent-color: #f4d03f;
    --text-color: #333;
    --bg-color: #ffffff;
    --card-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-color: #4a7c59;
    --secondary-color: #2d5016;
    --accent-color: #f4d03f;
    --text-color: #e0e0e0;
    --bg-color: #1a1a1a;
    --card-bg: #2d2d2d;
    --border-color: #404040;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: var(--transition);
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    background: var(--bg-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.theme-toggle button {
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.theme-toggle button:hover {
    background: var(--primary-color);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Enhanced Hero Section */
.hero {
    margin-top: 70px;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--card-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f4d03f" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%232d5016" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color), #f7dc6f);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.badge-icon {
    font-size: 1.1rem;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    animation: fadeInUp 1s ease 0.4s both;
}

.tagline {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.6s both;
}

.welcome-message {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
    animation: fadeInUp 1s ease 0.8s both;
}

.welcome-message strong {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: fadeInRight 1s ease 0.8s both;
}

.store-illustration {
    font-size: 15rem;
    opacity: 0.8;
}

.hero-store-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.hero-store-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: var(--card-bg);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .store-illustration {
        font-size: 8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* Highlights Page Styles */

.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.highlights-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.highlights-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlights-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Offers Section */
.offers-section {
    padding: 60px 0;
    background: var(--card-bg);
}

.offers-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.offer-card {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    max-width: 400px;
    width: 100%;
    transition: var(--transition);
}

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

.offer-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.offer-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.offer-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.offer-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.1rem;
}

.new-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 5px;
}

.next-btn {
    right: 5px;
}

/* Best Sellers Section */
.bestsellers-section {
    padding: 60px 0;
}

.bestsellers-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.product-card {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-card.bestseller {
    border-color: var(--accent-color);
    position: relative;
}

.product-card.bestseller::before {
    content: '🏆';
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.product-image {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-rating {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.product-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Weekly Deals Section */
.weekly-deals {
    padding: 60px 0;
    background: var(--card-bg);
}

.weekly-deals h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.deals-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.deal-item {
    background: var(--bg-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.deal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.deal-day {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.deal-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.deal-content p {
    color: #666;
    line-height: 1.5;
}

/* Responsive Design for Highlights */
@media (max-width: 768px) {
    .highlights-hero h1 {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: -20px;
    }
    
    .next-btn {
        right: -20px;
    }
    
    .offer-card {
        padding: 1.5rem;
    }
    
    .bestsellers-grid {
        grid-template-columns: 1fr;
    }
    
    .deals-timeline {
        grid-template-columns: 1fr;
    }
}



/* About Page Styles */

.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story {
    padding: 60px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.story-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.story-image {
    text-align: center;
}

.store-front {
    font-size: 8rem;
    margin-bottom: 1rem;
}

.image-caption {
    font-style: italic;
    color: #666;
}

.values-section {
    padding: 60px 0;
    background: var(--card-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

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

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    line-height: 1.6;
}

.journey-section {
    padding: 60px 0;
}

.journey-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

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

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

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    white-space: nowrap;
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 45%;
    margin-top: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.dedication-section {
    padding: 60px 0;
    background: var(--card-bg);
}

.dedication-content h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.dedication-content p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-item {
    text-align: center;
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.stat-label {
    color: #666;
    font-size: 1rem;
}



/* Products Page Styles */

.products-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.products-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.products-section {
    padding: 60px 0;
}

.products-controls {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.search-container {
    display: flex;
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.search-input {
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    outline: none;
    min-width: 300px;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1.2rem;
}

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

.filter-container {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.category-select,
.price-select {
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    outline: none;
    background: transparent;
    cursor: pointer;
    min-width: 150px;
}

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

.product-item {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.product-item.out-of-stock {
    opacity: 0.6;
    border-color: #ccc;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-image-container {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 10px;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

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

.product-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
}

.product-name {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

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

.product-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-status.available {
    background: #d4edda;
    color: #155724;
}

.product-status.unavailable {
    background: #f8d7da;
    color: #721c24;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-products-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}





/* Profile Page Styles */

.profile-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.profile-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.profile-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.profile-section {
    padding: 60px 0;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.profile-image {
    text-align: center;
}

.avatar {
    font-size: 8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.profile-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.profile-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.bio-section {
    padding: 60px 0;
    background: var(--card-bg);
}

.bio-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.experience-section {
    padding: 60px 0;
}

.experience-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.experience-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.exp-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.experience-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.message-section {
    padding: 60px 0;
    background: var(--card-bg);
}

.message-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.message-card h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.message-content blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: #555;
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 0;
}

.goals-section {
    padding: 60px 0;
}

.goals-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.goal-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.goal-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

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

.contact-form-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.thank-you-message {
    background: #d4edda;
    color: #155724;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

.thank-you-message h3 {
    margin-bottom: 1rem;
}

.map-section {
    padding: 60px 0;
    background: var(--card-bg);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.map-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    line-height: 1.6;
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .store-front {
        font-size: 5rem;
    }
    
    .values-grid,
    .experience-grid,
    .goals-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        padding-left: 50px;
    }
    
    .timeline-year {
        left: 20px;
        transform: none;
    }
    
    .timeline-content {
        width: 100%;
        margin: 1rem 0 0 0;
    }
    
    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .avatar {
        width: 150px;
        height: 150px;
        font-size: 6rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .search-input {
        min-width: 250px;
    }
}/*
 Map Fallback Styles */
.map-wrapper {
    position: relative;
    min-height: 400px;
}

.map-fallback {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: white;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-content {
    max-width: 500px;
}

.location-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.fallback-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.location-address {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.map-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.map-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.contact-quick {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-quick p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-quick strong {
    color: var(--accent-color);
}

/* Responsive Map Fallback */
@media (max-width: 768px) {
    .map-fallback {
        padding: 2rem;
        min-height: 350px;
    }
    
    .location-icon {
        font-size: 3rem;
    }
    
    .fallback-content h3 {
        font-size: 1.5rem;
    }
    
    .location-address {
        font-size: 1.1rem;
    }
    
    .map-actions {
        gap: 0.8rem;
    }
    
    .map-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}/* Social 
Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Responsive Social Links */
@media (max-width: 768px) {
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}/* Filte
r Summary Styles */
.filter-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.filter-summary p {
    margin: 0;
    font-weight: 500;
    color: var(--text-color);
}

#filter-info {
    color: var(--primary-color);
    font-weight: bold;
}

.clear-filters-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.clear-filters-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* Enhanced Product Item Styles */
.product-item {
    position: relative;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
}

.product-item[data-price-range="0-50"]::before {
    content: 'Budget';
    background: #28a745;
    color: white;
}

.product-item[data-price-range="51-100"]::before {
    content: 'Value';
    background: #17a2b8;
    color: white;
}

.product-item[data-price-range="101-150"]::before {
    content: 'Quality';
    background: #ffc107;
    color: #333;
}

.product-item[data-price-range="151-200"]::before {
    content: 'Premium';
    background: #fd7e14;
    color: white;
}

.product-item[data-price-range="200+"]::before {
    content: 'Luxury';
    background: #6f42c1;
    color: white;
}

/* Responsive Filter Summary */
@media (max-width: 768px) {
    .filter-summary {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .products-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-container,
    .filter-container {
        width: 100%;
        max-width: 300px;
    }
    
    .category-select,
    .price-select {
        width: 100%;
    }
}/* Pr
oduct Dropdown Styles */
.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.product-menu-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-menu-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.product-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--card-bg);
    color: var(--primary-color);
}

.dropdown-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Product Modal Styles */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-color);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--card-bg);
    color: var(--primary-color);
}

.modal-body {
    padding: 1.5rem;
}

.modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.modal-details p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    justify-content: flex-end;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 3000;
    opacity: 0;
    transform: translateX(100%);
    transition: var(--transition);
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Product Dropdown */
@media (max-width: 768px) {
    .product-dropdown {
        min-width: 160px;
        right: -10px;
    }
    
    .dropdown-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}/* P
rice Dropdown Styles */
.price-section {
    margin: 1rem 0;
}

.price-dropdown-container {
    margin-bottom: 0.5rem;
}

.price-dropdown {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.price-dropdown:hover {
    border-color: var(--primary-color);
}

.price-dropdown:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.selected-price {
    text-align: center;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--accent-color), #f9e79f);
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.main-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.price-details {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.2;
}

.per-unit-price {
    font-weight: 500;
    color: var(--secondary-color);
}

.size-info {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.savings-info {
    color: #28a745;
    font-weight: bold;
    margin-top: 0.2rem;
    animation: pulse 2s infinite;
}

.selected-price.price-updated {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

/* Modal Variants Display */
.all-variants {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.variant-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.variant-option:hover {
    border-color: var(--primary-color);
    background: rgba(45, 80, 22, 0.05);
}

.variant-size {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.variant-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Enhanced Product Item for Price Display */
.product-item {
    transition: var(--transition);
}

.product-item:hover .price-dropdown {
    border-color: var(--secondary-color);
}

.product-item:hover .selected-price {
    background: linear-gradient(135deg, #f4d03f, #f7dc6f);
}

/* Enhanced Price Dropdown Options */
.price-dropdown option {
    padding: 8px;
    background: var(--bg-color);
    color: var(--text-color);
    font-weight: normal;
}

.price-dropdown option[data-popular="true"] {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    font-weight: bold;
}

.price-dropdown option[data-best="true"] {
    background: linear-gradient(135deg, #d4edda, #a8e6cf);
    color: #155724;
    font-weight: bold;
}

.price-dropdown:focus option[data-popular="true"] {
    background: #ffeaa7;
}

.price-dropdown:focus option[data-best="true"] {
    background: #a8e6cf;
}

/* Responsive Price Dropdown */
@media (max-width: 768px) {
    .price-dropdown {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .selected-price {
        font-size: 1.2rem;
        padding: 0.4rem;
    }
    
    .variants-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.6rem;
    }
    
    .variant-option {
        padding: 0.6rem;
    }
    
    .variant-size {
        font-size: 0.8rem;
    }
    
    .variant-price {
        font-size: 0.9rem;
    }
}

/* Price Animation Effects */
@keyframes priceHighlight {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.price-updated {
    animation: priceHighlight 0.3s ease;
}

.price-updated .main-price {
    color: #28a745;
    animation: pulse 0.5s ease;
}

/* Price Dropdown Hover Effects */
.price-dropdown:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.15);
}

/* Multi-tier Pricing Visual Indicators */
.price-dropdown-container::before {
    content: "💰 Multiple Sizes Available";
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.7rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.price-dropdown-container {
    position: relative;
    margin-top: 20px;
}

/* Value Indicators */
.price-dropdown option[data-value="best"] {
    background: #d4edda;
    color: #155724;
}

.price-dropdown option[data-value="popular"] {
    background: #fff3cd;
    color: #856404;
}/* Enh
anced Hero Elements */
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 1s both;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 16px;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.highlight-icon {
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.cta-button.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.cta-button.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-icon {
    font-size: 1.1rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease 1.4s both;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

/* Enhanced Hero Image */
.hero-image {
    flex: 1;
    position: relative;
    animation: fadeInRight 1s ease 1.6s both;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-store-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.image-container:hover .hero-store-image {
    transform: scale(1.05);
}

.overlay-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.overlay-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.overlay-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.card-1 {
    top: 20%;
    right: -10px;
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    left: -20px;
    animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 30%;
    right: 10px;
    animation: float 3s ease-in-out infinite 2s;
}

.card-icon {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Hero Enhancements */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        justify-content: center;
        gap: 1rem;
    }
    
    .highlight-item {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 1.5rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}