/* ===========================
   MARQUEE STRIP
   =========================== */
.trust-marquee {
    background: #f1f5f9;
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    min-height: 52px;
}
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
}
.marquee-item i {
    color: var(--primary);
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===========================
   SECTION HEADER
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header .eyebrow {
    display: inline-block;
    padding: 6px 18px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}
.section-header p {
    color: var(--muted);
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ===========================
   CATEGORY CARDS
   =========================== */
.cat-card-wrap { text-decoration: none; }
.cat-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eff6ff, #f5f3ff);
    opacity: 0;
    transition: opacity 0.3s;
}
.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #bfdbfe;
}
.cat-card:hover::before { opacity: 1; }
.cat-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-5deg); }
.cat-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1e293b;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}
.cat-count {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

/* Category icon colors */
.ci-blue { background: #dbeafe; color: #2563eb; }
.ci-purple { background: #ede9fe; color: #7c3aed; }
.ci-green { background: #d1fae5; color: #059669; }
.ci-orange { background: #ffedd5; color: #ea580c; }
.ci-red { background: #fee2e2; color: #dc2626; }
.ci-pink { background: #fce7f3; color: #db2777; }
.ci-teal { background: #ccfbf1; color: #0d9488; }
.ci-yellow { background: #fef9c3; color: #ca8a04; }
.ci-indigo { background: #e0e7ff; color: #4338ca; }
.ci-cyan { background: #cffafe; color: #0891b2; }
.ci-lime { background: #ecfccb; color: #65a30d; }
.ci-rose { background: #ffe4e6; color: #e11d48; }

/* ===========================
   FEATURED PRODUCTS
   =========================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 16px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}
.p-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
}
.p-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.p-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
    line-height: 1.4;
}
.p-title a { color: inherit; text-decoration: none; }
.p-title a:hover { color: #3b82f6; }
.p-price { font-size: 1.25rem; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.p-price .unit { font-size: 0.8rem; font-weight: 500; color: #64748b; }
.p-vendor {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.p-vendor i { color: #3b82f6; }
.p-actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.btn-p {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.2s;
    text-decoration: none !important;
    border: none;
}
.btn-p-whatsapp { background: #25d366; color: #fff; }
.btn-p-whatsapp:hover { background: #128c7e; color: #fff; }
.btn-p-view { background: #f1f5f9; color: #1e293b; border: 1px solid #e2e8f0; }
.btn-p-view:hover { background: #e2e8f0; }
.verified-tick { color: #10b981; font-size: 0.75rem; margin-left: 2px; }

@media (max-width: 576px) {
    .product-grid { gap: 10px; }
    .product-box { padding: 10px; }
    .p-title { font-size: 0.85rem; }
    .p-price { font-size: 1.1rem; }
}

/* ===========================
   PROMO BANNER
   =========================== */
.promo-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
    border-radius: 24px;
    padding: 50px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}
.promo-banner::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}
.promo-eyebrow {
    display: inline-block;
    background: rgba(250, 204, 21, 0.15);
    color: #fde047;
    border: 1px solid rgba(250, 204, 21, 0.3);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.promo-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 14px; }
.promo-subtitle { color: #94a3b8; font-size: 1rem; margin-bottom: 28px; max-width: 440px; line-height: 1.6; }
.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #1e293b;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: var(--primary);
}

/* ===========================
   HOW IT WORKS
   =========================== */
.hiw-step {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    position: relative;
    transition: all 0.3s;
}
.hiw-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.hiw-step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}
.hiw-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 16px auto 20px;
}
.hiw-title { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.hiw-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ===========================
   VENDOR STRIP
   =========================== */
.vendor-card {
    background: white;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    padding: 24px 16px;
    text-align: center;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vendor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #bfdbfe; }
.vendor-avatar {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff6ff, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 14px;
    color: var(--primary);
}
.vendor-name { font-weight: 700; font-size: 0.9rem; color: #1e293b; margin-bottom: 4px; }
.vendor-city { font-size: 0.78rem; color: var(--muted); }
.vendor-verified { font-size: 0.72rem; color: var(--success); font-weight: 600; margin-top: 8px; }

/* ===========================
   RFQ SECTION
   =========================== */
.rfq-section {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    border-radius: 24px;
    padding: 56px 48px;
    color: white;
    position: relative;
    overflow: hidden;
}
.rfq-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}
.rfq-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: 50px;
}
.rfq-form-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}
.rfq-form-card .form-control {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}
.rfq-form-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.rfq-form-card .btn-rfq {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
}
.rfq-form-card .btn-rfq:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991px) {
    .hero-section { min-height: auto; padding: 60px 0 40px; }
    .hero-right { display: none; }
    .hero-title { font-size: 2.2rem; }
    .rfq-section { padding: 36px 24px; }
    .promo-banner { padding: 36px 24px; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 1.9rem; }
    .hero-search-box { flex-direction: column; border-radius: 18px; padding: 14px; }
    .hero-search-btn { width: 100%; border-radius: 12px; }
    .hero-cta-row { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { justify-content: center; }
    .hero-stats-strip { gap: 20px; }
}
@keyframes addedPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.cart-added { animation: addedPop 0.4s ease; }

/* ===========================
   TRUST CARDS
   =========================== */
.trust-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}
.trust-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.bg-blue-lite { background: #eff6ff; color: #3b82f6; }
.bg-green-lite { background: #f0fdf4; color: #10b981; }
.bg-purple-lite { background: #f5f3ff; color: #8b5cf6; }
.bg-orange-lite { background: #fff7ed; color: #f59e0b; }
.trust-card h5 { font-size: 1.15rem; color: #0f172a; margin-top: 10px; }
.trust-card p { line-height: 1.6; color: #475569 !important; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonialSwiper { padding: 40px 10px 80px !important; }
.swiper-pagination-bullet-active { background: #e11d48 !important; }
.testimonial-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}
.swiper-slide-active .testimonial-card {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border-color: #f1f5f9;
    transform: scale(1.02);
}
.testimonial-card .comment {
    font-size: 1.1rem;
    font-style: normal;
    line-height: 1.8;
    color: #475569 !important;
}
.user-img-placeholder {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}
.testimonial-card::after {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: #f1f5f9;
    z-index: 0;
}

/* ===========================
   PREMIUM FAQ
   =========================== */
.eyebrow-premium {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}
.text-gradient {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.faq-premium-section .accordion-item {
    background: white;
    border-radius: 20px !important;
    border: 1px solid #eff6ff !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}
.faq-premium-section .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    border-color: #dbeafe !important;
}
.faq-premium-section .accordion-button {
    padding: 24px 30px;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.faq-icon-box {
    width: 36px;
    height: 36px;
    background: #f0f7ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.faq-premium-section .accordion-button:not(.collapsed) .faq-icon-box { background: #2563eb; }
.faq-premium-section .accordion-button:not(.collapsed) .faq-icon-box i { color: white !important; }
.faq-question-text { font-weight: 700; font-size: 1.15rem; color: #1e293b; }
.faq-premium-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 1.1rem;
    width: 1.1rem;
    height: 1.1rem;
    transition: transform 0.3s ease;
}
.faq-premium-section .accordion-body { padding: 0 30px 30px 78px; }
.faq-answer-inner { font-size: 1.05rem; line-height: 1.7; color: #64748b; animation: fadeIn 0.5s ease both; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    .faq-premium-section .accordion-button { padding: 18px 20px; }
    .faq-premium-section .accordion-body { padding: 0 20px 20px 20px; }
    .faq-question-text { font-size: 1rem; }
}
