﻿:root {
    --primary: #6f4acd;
    --secondary: #f7931e;
    --soft-primary: rgba(111, 74, 205, 0.12);
    --body-font: 'Poppins', sans-serif;
    --text-color: #2b2a35;
    --muted-color: #6f6c80;
    --card-radius: 24px;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: #f5f6fb;
}

.top-banner {
    background: linear-gradient(90deg, #6f4acd 0%, #9351d8 50%, #6f4acd 100%);
    letter-spacing: 0.6px;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary);
}

.navbar-brand:hover {
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--muted-color) !important;
    transition: color 0.2s ease;
}

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

.hero-section {
    background: radial-gradient(circle at top left, rgba(111, 74, 205, 0.18), transparent 45%),
                radial-gradient(circle at bottom right, rgba(247, 147, 30, 0.12), transparent 50%);
}

.hero-media {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 80px -50px rgba(15, 14, 28, 0.45);
}

.info-strip {
    background: #fff;
    box-shadow: 0 18px 45px -22px rgba(26, 24, 40, 0.25);
}

.badge.bg-soft-primary {
    background: rgba(111, 74, 205, 0.12);
    color: var(--primary);
    font-weight: 600;
    padding: 0.55em 1.1em;
}

.section-title {
    font-weight: 600;
    color: #211f2d;
}

.feature-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: 0 18px 50px -35px rgba(0, 0, 0, 0.3);
}

.feature-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.product-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 22px 65px -40px rgba(31, 29, 43, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px -45px rgba(31, 29, 43, 0.45);
}

.product-card__image {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.product-card__body {
    padding: 1.5rem;
}

.product-card__title {
    font-size: 1rem;
    font-weight: 600;
    min-height: 48px;
}

.product-card__meta {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.testimonial-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 1.5rem;
    box-shadow: 0 35px 70px -55px rgba(20, 18, 30, 0.4);
}

.testimonial-card .stars {
    color: #ffb400;
    letter-spacing: 0.2rem;
    font-size: 0.9rem;
}

.support-card {
    background: #fff;
    box-shadow: 0 22px 60px -45px rgba(0, 0, 0, 0.25);
    border-radius: var(--card-radius);
}

.support-card .bi-whatsapp {
    font-size: 2.5rem;
    color: #25D366;
}

footer {
    background: #2d1f5e;
}

.footer-top a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer-top a:hover {
    color: #fff;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form .form-control {
    border-radius: 999px 0 0 999px;
}

.newsletter-form .btn {
    border-radius: 0 999px 999px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-hero .product-media {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #fff;
}

.order-heading {
    background: linear-gradient(135deg, rgba(111, 74, 205, 0.16), rgba(247, 147, 30, 0.12));
    border-radius: var(--card-radius);
    padding: 1.5rem;
}

.order-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: 0 35px 80px -50px rgba(20, 18, 40, 0.35);
    padding: 2rem;
}

.order-card h5 {
    font-weight: 600;
}

.order-card .form-label {
    font-weight: 600;
    color: #221f30;
}

.order-card .helper-text {
    color: var(--muted-color);
    font-size: 0.85rem;
}

.counter {
    font-size: 0.8rem;
    color: var(--muted-color);
    text-align: right;
}

.option-pill {
    border: 1px solid rgba(111, 74, 205, 0.25);
    border-radius: 16px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.option-pill span {
    font-weight: 500;
    color: var(--text-color);
}

.delivery-card {
    background: rgba(111, 74, 205, 0.08);
    border-radius: 18px;
    padding: 1rem 1.25rem;
}

.catalog-hero {
    background: radial-gradient(circle at top right, rgba(111, 74, 205, 0.12), transparent 55%),
                radial-gradient(circle at bottom left, rgba(247, 147, 30, 0.08), transparent 60%);
}

.filter-pill {
    border: 1px solid rgba(111, 74, 205, 0.25);
    background: rgba(111, 74, 205, 0.06);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    background: rgba(111, 74, 205, 0.14);
}

.filter-pill.is-active {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.pagination .page-link {
    border-radius: 999px;
    border: none;
    margin: 0 0.1rem;
    color: var(--muted-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    color: #fff;
}

.pagination .page-link:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .product-card__image {
        height: 200px;
    }

    .hero-section {
        padding-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .info-strip {
        flex-direction: column;
    }
}
.gallery-thumbs .gallery-thumb{width:90px;height:90px;border-radius:14px;overflow:hidden;border:2px solid transparent;background:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:.85;transition:.2s}
.gallery-thumbs .gallery-thumb img{width:100%;height:100%;object-fit:cover}
.gallery-thumbs .gallery-thumb i{font-size:2rem;color:#fff;background:#0006;width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.gallery-thumbs .gallery-thumb:hover,.gallery-thumbs .gallery-thumb.active{opacity:1;border-color:var(--primary)}
/* Product media sizing */
.product-media{border-radius:var(--card-radius);overflow:hidden;background:#fff;box-shadow:0 25px 80px -50px rgba(15,14,28,.45)}
.product-media img{width:100%;height:420px;object-fit:cover;display:block}
@media (max-width: 991.98px){.product-media img{height:320px}}
@media (max-width: 575.98px){.product-media img{height:240px}}
/* Thumbnails tweaks */
.gallery-thumbs .gallery-thumb{width:80px;height:80px}
