
:root {
    --primary-color: #3a86ff;
    --success-color: #4cc9f0;
    --warning-color: #f8961e;
    --danger-color: #f94144;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
    --primary: #FF9F1C;
    --secondary: #2D936C;
    --dark: #0A0F0D;
    --light: #F5F5F5;
    --accent: #E71D36;
    --text: #1E1E24;
    --gold: #FFD166;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fullscreen Banner */
.fullscreen-banner {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Fullscreen Banner */
.innerpage-banner {
    height: 50vh;
    position: relative;
    overflow: hidden;
    color: white;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 13, 0.85) 0%, rgba(45, 147, 108, 0.4) 100%);
    display: flex;
    flex-direction: column;
}

/* Overlay Navigation */
.overlay-nav {
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition);
}

.overlay-nav.scrolled {
    background-color: rgba(10, 15, 13, 0.95);
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 101;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--primary);
    filter: drop-shadow(0 0 5px rgba(255, 159, 28, 0.5));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.mobile-nav-actions{
    display:none;
}

.cart-icon-nav {
    position: relative;
    font-size: 1.4rem;
    color: white;
    transition: var(--transition);
}

.cart-icon-nav:hover {
    color: var(--primary);
    transform: scale(1.1);
}

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

.nav-auth {
    display: flex;
    gap: 15px;
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.nav-login {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-login:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-signup {
    background-color: var(--primary);
    color: var(--dark);
}

.nav-signup:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 159, 28, 0.4);
}

.primary-btn {
    background-color: var(--primary);
    color: var(--dark);
}
.primary-btn:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 159, 28, 0.4);
}

.secondary-btn {
    background-color: var(--secondary);
    color: var(--dark);
}
.secondary-btn:hover {
    background-color: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 159, 28, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    z-index: 101;
}

/* Banner Content */
.banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
    max-width: 800px;
    z-index: 2;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.3s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.5s forwards;
}

.banner-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.7s forwards;
}

.cta-button {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.5s ease;
    z-index: -1;
}

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

.cta-primary {
    background-color: var(--primary);
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(255, 159, 28, 0.3);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 159, 28, 0.4);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.8;
    z-index: 10;
    cursor: pointer;
    animation: bounce 2s infinite;
}

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

.scroll-text {
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 1.5rem;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.video-btn {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Main Content Styles */
.main-content {
    background-color: var(--light);
}

.section-spacing {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 20px auto;
    border-radius: 5px;
}

/* Top Selling Section */
.top-selling {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

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

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(231, 29, 54, 0.3);
}

.product-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

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

.product-content {
    padding: 25px;
}

.product-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.product-title h3 {
    color: var(--dark);
    font-size: 1.4rem;
}

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

.product-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vendor {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vendor-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary);
}

.vendor-info h4 {
    font-size: 0.95rem;
    color: var(--dark);
}

.vendor-info p {
    font-size: 0.8rem;
    color: #777;
}

.add-to-cart {
    background: linear-gradient(135deg, var(--secondary), #1a7d5a);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #1a7d5a, var(--secondary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 147, 108, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.05) 0%, rgba(45, 147, 108, 0.05) 100%);
    z-index: 0;
}

.testimonial-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 0 40px;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
    min-width: 350px;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--primary);
}

.author-info h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.seller-rating {
    color: var(--primary);
}

/* Register Section */
.register-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: white;
    border-radius: 30px;
    padding: 80px;
    margin: 0 auto 100px;
    max-width: 1400px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.register-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.register-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.register-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
}

.register-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.register-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.register-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.register-card p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.register-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    color: var(--dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.register-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 159, 28, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 3.5rem;
    }

    .register-section {
        padding: 60px 40px;
        margin: 0 20px 80px;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: rgba(10, 15, 13, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 100px 40px 40px;
        transition: right 0.5s ease;
        z-index: 100;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-actions {
        display: none;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .banner-title {
        font-size: 2.8rem;
    }

    .overlay-nav {
        padding: 25px 30px;
    }

    .banner-content {
        padding: 0 30px;
    }

    .section-spacing {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.4rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .register-section {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .top-selling {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 30px;
    }

    .video-controls {
        bottom: 100px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.7rem;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Store Cards Grid */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.store-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

/* Store Header with Image */
.store-header {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.store-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.store-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.premium-badge {
    background: linear-gradient(135deg, var(--gold), #ffb347);
    color: var(--dark);
    box-shadow: 0 3px 10px rgba(255, 209, 102, 0.3);
}

.popular-badge {
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    color: white;
    box-shadow: 0 3px 10px rgba(231, 29, 54, 0.3);
}

/* Store Info Section */
.store-info {
    padding: 20px 25px 15px;
}

.store-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.store-title {
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 600;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.store-rating i {
    color: var(--gold);
}

.store-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.stat-label {
    font-size: 0.8rem;
    margin-top: 3px;
}

/* Products Section */
.store-products {
    padding: 0 25px 20px;
}

.products-title {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-title i {
    color: var(--secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: var(--transition);
}

.product-item:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

.product-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.product-details {
    flex: 1;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

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

/* Shipping & Reviews */
.store-details {
    padding: 0 25px 20px;
}

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

.detail-section {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
}

.detail-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-title i {
    color: var(--secondary);
}

.shipping-info {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.shipping-info span {
    display: block;
    margin-bottom: 5px;
}

.review-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e0e0e0;
}

.review-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.reviewer-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.review-rating {
    color: var(--primary);
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Store Footer */
.store-footer {
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
}

.store-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #777;
}

.store-location i {
    color: var(--secondary);
}

.view-store-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--secondary), #1a7d5a);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.view-store-btn:hover {
    background: linear-gradient(135deg, #1a7d5a, var(--secondary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 147, 108, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stores-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .store-info, .store-products, .store-details, .store-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .store-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .view-store-btn {
        align-self: stretch;
        text-align: center;
    }
}

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

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

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

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

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

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

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


.back-button {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.back-button:hover {
    color: var(--primary);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* All Products Section */
        .all-products-section {
            margin-bottom: 80px;
        }
        
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .products-count {
            color: var(--gray);
            font-weight: 500;
        }
        
        .sort-options {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .sort-label {
            color: var(--gray);
        }
        
        .sort-select {
            padding: 10px 20px;
            border-radius: 8px;
            border: 1px solid #ddd;
            background-color: white;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            cursor: pointer;
        }
        
        .store-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }