/* =============================================
   MAAVIYOO | Global Stylesheet (Merged)
   Premium B2B T-Shirt Manufacturer
   ============================================= */

/* ---------- CSS Variables (Brand Colors) ---------- */
:root {
    --primary-color: #16294A;
    --primary-hover: #1d3557;
    --secondary-color: #3BB8C9;
    --secondary-hover: #6ECFE0;
    --accent-color: #3BB8C9;
    --bg-color: #ffffff;
    --bg-light: #f8f9fb;
    --bg-section: #f4f6fa;
    --text-dark: #16294A;
    --text-muted: #5a6e8c;
    --border-color: #e9ecef;
    --btn-primary-bg: #16294A;
    --btn-primary-hover: #1d3557;
    --btn-secondary-bg: #3BB8C9;
    --btn-secondary-hover: #2a9db0;
    --shadow-sm: 0 2px 10px rgba(22, 41, 74, 0.06);
    --shadow-md: 0 4px 20px rgba(22, 41, 74, 0.08);
    --shadow-lg: 0 8px 30px rgba(22, 41, 74, 0.12);
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 50px;
    /* Additional from single-product */
    --brand-blue: #16294A;
    --brand-cyan: #3BB8C9;
    --brand-navy: #16294A;
    --brand-light: #f8f9fb;
    --brand-border: #e9ecef;
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-color);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; }

/* ---------- Utility Classes ---------- */
.section-label {
    display: inline-block;
    background: rgba(59, 184, 201, 0.12);
    color: var(--secondary-color);
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.text-grad {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-head {
    margin-bottom: 50px;
}
.section-head h2 {
    font-size: 2.2rem;
    font-weight: 700;
}
.section-head p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 12px auto 0;
}
.section-padding {
    padding: 90px 0;
}

/* ---------- Buttons ---------- */
.btn-primary-cta {
    background: var(--btn-primary-bg);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 4px 14px rgba(22, 41, 74, 0.25);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-cta:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 41, 74, 0.35);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-link {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Special buttons (WhatsApp, etc.) */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background: #1EBE5A;
    color: #fff;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 10px rgba(22, 41, 74, 0.04);
}
.site-header .navbar { padding: 14px 0; }
.site-header .navbar-brand { display: flex; align-items: center; }
.site-header .brand-logo { height: 42px; width: auto; }
.site-header .nav-link {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin: 0 12px;
    position: relative;
    padding: 8px 0;
}
.site-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}
.site-header .nav-link:hover::after,
.site-header .nav-link.active::after { width: 100%; }
.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--secondary-color); }
.navbar-toggler { border: none; font-size: 1.5rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- Page Hero (unified) ---------- */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8f9fb, #eef2f7 50%, #e8f4f6);
}
.page-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 20px 0;
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
}
/* Hero specific (homepage) */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero-badge {
    display: inline-block;
    background: rgba(59, 184, 201, 0.15);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-item i { color: var(--secondary-color); }

/* Hero visual card */
.hero-visual { position: relative; padding: 20px; }
.hero-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotate(2deg);
}
.hero-card-img {
    height: 280px;
    background: linear-gradient(135deg, #dbe4ee, #e8f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-card-img::after {
    content: 'BULK T-SHIRT';
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: rgba(22, 41, 74, 0.3);
    letter-spacing: 4px;
}
.hero-card-info { padding: 20px; }
.hero-card-info h5 { font-size: 1.1rem; font-weight: 700; }
.hero-card-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}
.hero-bg-shape {
    position: absolute;
    top: -50px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 184, 201, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}
.trust-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.trust-bar-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}
.trust-bar-item h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-dark);
}

/* ---------- About Section ---------- */
.about-section {
    padding: 90px 0;
    background: #fff;
}
.about-img-placeholder {
    background: linear-gradient(135deg, #f0f4f8, #e8f4f6);
    height: 420px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.about-img-placeholder i {
    font-size: 4rem;
    color: rgba(22, 41, 74, 0.2);
    margin-bottom: 15px;
}
.about-img-placeholder span {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: rgba(22, 41, 74, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.about-list {
    margin: 20px 0 30px;
}
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.about-list li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* ---------- Products Section (generic) ---------- */
.products-section {
    padding: 90px 0;
    background: var(--bg-light);
}

/* Unified Product Card */
.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.product-card-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-img .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-img span {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: rgba(22, 41, 74, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.product-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: #fff;
}

.product-card-body .product-title {
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 3;
    margin: 0 0 8px;
    color: #222;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-card-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.product-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.moq {
    background: rgba(59, 184, 201, 0.12);
    color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.category-tag {
    color: var(--text-muted);
    font-style: italic;
}
.btn-product-cta {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-full);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-product-cta:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* ---------- Why Choose ---------- */
.why-choose {
    padding: 90px 0;
    background: #fff;
}
.why-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
.why-card:hover {
    border-bottom-color: var(--secondary-color);
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.why-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 18px;
    display: block;
}
.why-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Process ---------- */
.process-section {
    padding: 90px 0;
    background: var(--bg-light);
}
.process-step {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.process-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.step-num {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.6;
    margin-bottom: 15px;
}
.process-step h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Private Label ---------- */
.private-label-section {
    padding: 90px 0;
    background: #fff;
}
.private-label-list {
    margin: 20px 0 30px;
}
.private-label-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.private-label-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}
.private-label-img-placeholder {
    background: linear-gradient(135deg, #e8f4f6, #f0f4f8);
    height: 380px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.private-label-img-placeholder i {
    font-size: 4rem;
    color: rgba(22, 41, 74, 0.2);
    margin-bottom: 15px;
}
.private-label-img-placeholder span {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: rgba(22, 41, 74, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-section {
    padding: 90px 0;
    background: var(--bg-light);
}
.faq-section .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-section .accordion-button {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    background: #fff;
    padding: 20px 24px;
    border: none;
}
.faq-section .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--secondary-color);
    box-shadow: none;
}
.faq-section .accordion-button:focus { box-shadow: none; }
.faq-section .accordion-body {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.faq-section .accordion-button::after { background-size: 1.2rem; }

/* ---------- Final CTA (generic) ---------- */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #1d3557);
    position: relative;
    overflow: hidden;
}
.final-cta-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.final-cta-inner h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.final-cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0e1a2b;
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}
.site-footer .footer-brand { margin-bottom: 20px; }
.site-footer .footer-brand p {
    font-size: 0.9rem;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}
.site-footer h6 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--secondary-hover);
    padding-left: 5px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-contact li i {
    color: var(--secondary-color);
    margin-top: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 40px;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.footer-bottom a { color: var(--secondary-hover); }

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* ---------- Breadcrumb (unified) ---------- */
.breadcrumb-section {
    background: #f8f9fb;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}
.breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
}
.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}
.breadcrumb a:hover { color: var(--secondary-color); }
.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================================
   PAGE-SPECIFIC STYLES (minimal overrides)
   ============================================================ */

/* ---------- About Page ---------- */
.story-placeholder {
    background: linear-gradient(135deg, #f0f4f8, #e8f4f6);
    height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.story-placeholder i,
.export-placeholder i,
.private-label-img-placeholder i,
.about-img-placeholder i {
    font-size: 4rem;
    color: rgba(22, 41, 74, 0.2);
    margin-bottom: 15px;
}
.story-placeholder span,
.export-placeholder span,
.private-label-img-placeholder span,
.about-img-placeholder span {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: rgba(22, 41, 74, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.company-story h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}
.company-story p { color: var(--text-muted); }

.mission-card,
.vision-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.mission-card i,
.vision-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}
.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}
.mission-card p,
.vision-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.value-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
.value-card:hover {
    border-bottom-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.value-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}
.value-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.approach-step {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.approach-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.approach-step .num {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.7;
    margin-bottom: 15px;
}
.approach-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.approach-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.custom-chip {
    background: #fff;
    border-radius: var(--radius-full);
    padding: 16px 24px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.custom-chip i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}
.custom-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--secondary-color);
}

.private-feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.private-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.private-feature-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: block;
}
.private-feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.private-feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.export-placeholder {
    background: linear-gradient(135deg, #f0f4f8, #e8f4f6);
    height: 350px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.export-list { margin-top: 20px; }
.export-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.export-list li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.partner-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.partner-card i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 18px;
    display: block;
}
.partner-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.partner-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---------- Products Page ---------- */
.products-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.filter-label {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 10px;
    font-size: 0.95rem;
}
.filter-label i {
    color: var(--secondary-color);
    margin-right: 6px;
}
.filter-btn {
    background: var(--bg-light);
    border: none;
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.filter-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}
.products-grid-section { background: var(--bg-light); }

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), #1d3557);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.cta-banner h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}
.cta-banner .btn-light {
    background: #fff;
    color: var(--primary-color);
    border-radius: var(--radius-full);
    padding: 12px 28px;
    font-weight: 600;
}
.cta-banner .btn-light:hover {
    background: var(--secondary-hover);
    color: #fff;
}

/* ---------- Product Detail Page ---------- */
.product-main-section {
    background: #fff;
    padding: 60px 0;
}
.product-gallery {
    position: sticky;
    top: 100px;
}
.main-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f4f8;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: background 0.3s ease;
}
.main-image .image-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: rgba(22, 41, 74, 0.4);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
}
.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: background 0.1s;
    pointer-events: none;
}
.zoom-hint {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}
.thumbnails-wrapper {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}
.thumbnail {
    width: 100px;
    height: 100px;
    position: relative;
    overflow: hidden;
    flex: 0 0 100px;
    border-radius: 8px;
    border: 2px solid transparent;
    background-color: #f0f4f8;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Sora', sans-serif;
}
.thumbnail-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
}
.thumbnail:hover {
    transform: translateY(-2px);
}
.thumbnail:hover .thumbnail-image { transform: scale(1.05); }
.thumbnail.active {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(59, 184, 201, 0.3);
}
.thumbnail span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5px 4px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    background: rgba(22, 41, 74, 0.72);
    pointer-events: none;
}

.product-info { padding-left: 20px; }

.product-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f8c14d;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.product-rating span {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.price-label { font-weight: 600; color: var(--text-dark); }
.price-value {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 100%;
}
.product-short-desc { margin-bottom: 25px; }
.product-short-desc p { color: var(--text-muted); line-height: 1.7; }

.customization-options {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}
.customization-options h6 { font-weight: 700; margin-bottom: 15px; }
.option-group { margin-bottom: 15px; }
.option-label {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}
.quantity-selector .btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
}
.quantity-selector .btn:hover {
    background: var(--secondary-color);
    color: #fff;
}
.quantity-selector input {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}
.product-cta-buttons { margin-bottom: 25px; }
.product-cta-buttons .btn-primary-cta {
    background: var(--primary-color);
    border: none;
    font-size: 1.1rem;
    padding: 14px;
}
.product-cta-buttons .btn-outline-primary {
    border: 2px solid var(--primary-color);
    font-size: 1.1rem;
    padding: 12px;
}
.product-cta-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
}

.key-features {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
}
.key-features h6 { font-weight: 700; margin-bottom: 12px; }
.key-features ul { list-style: none; padding: 0; }
.key-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    margin-bottom: 10px;
}
.key-features li i {
    color: var(--secondary-color);
    margin-top: 2px;
}

/* Product Description Section */
.product-description-section {
    background: #fff;
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
}
.product-description-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.product-description-section h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 20px;
}
.product-description-section p { color: var(--text-muted); margin-bottom: 20px; }
.benefits-box,
.suitable-buyers {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}
.benefits-box h4,
.suitable-buyers h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.benefits-box ul,
.suitable-buyers ul {
    list-style: none;
    padding: 0;
}
.benefits-box li,
.suitable-buyers li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.benefits-box li::before,
.suitable-buyers li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 800;
}

/* Related Products in detail */
.related-products-section {
    background: var(--bg-light);
    padding: 70px 0;
}
.related-products-section .section-head { margin-bottom: 40px; }

/* Product FAQ */
.product-faq-section {
    background: #fff;
    padding: 70px 0;
}
.product-faq-section .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(22, 41, 74, 0.05);
    overflow: hidden;
}
.product-faq-section .accordion-button {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 18px 20px;
}
.product-faq-section .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--secondary-color);
}
.product-faq-section .accordion-body {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none; /* hidden by default, shown on mobile */
    gap: 10px;
    z-index: 1000;
}
.mobile-cta-bar .btn { flex: 1; border-radius: 30px; font-size: 0.9rem; padding: 12px 0; }
.mobile-cta-bar .btn-success {
    flex: 0 0 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Blog Page ---------- */
.blog-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.search-box {
    position: relative;
    width: 280px;
}
.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.search-box input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    outline: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.search-box input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 184, 201, 0.2);
}
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cat-tag {
    background: var(--bg-light);
    border: none;
    border-radius: 30px;
    padding: 8px 18px;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}
.cat-tag:hover {
    background: var(--secondary-color);
    color: #fff;
}
.cat-tag.active {
    background: var(--primary-color);
    color: #fff;
}

/* Featured Article */
.featured-article {
    background: var(--bg-light);
    padding: 60px 0;
}
.featured-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.featured-img {
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-img span {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: rgba(22, 41, 74, 0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.featured-content { padding: 40px; }
.featured-content .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.featured-content .cat {
    background: rgba(59, 184, 201, 0.2);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.featured-content .date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.featured-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Blog Grid */
.blog-grid-section {
    background: #fff;
    padding: 70px 0;
}
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.blog-card-img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-img .cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.blog-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-body .article-meta {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.blog-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-grow: 1;
}
.blog-card-body .btn-link { font-size: 0.85rem; font-weight: 600; }

/* Pagination */
.blog-pagination .page-link {
    border: none;
    margin: 0 5px;
    border-radius: 30px;
    color: var(--text-dark);
    background: var(--bg-light);
    padding: 8px 16px;
    font-weight: 500;
}
.blog-pagination .page-link:hover {
    background: var(--secondary-color);
    color: #fff;
}
.blog-pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: #fff;
}

/* ---------- Single Blog ---------- */
.article-header {
    background: #fff;
    padding: 50px 0 20px;
    border-bottom: 1px solid var(--border-color);
}
.article-meta-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.category-badge {
    background: rgba(59, 184, 201, 0.2);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.article-meta-top .date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.article-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}
.author-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.author-box img { border-radius: 50%; }

.article-featured-image {
    background: #fff;
    padding: 30px 0 0;
}
.featured-image-placeholder {
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.featured-image-placeholder span {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: rgba(22, 41, 74, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.article-body-section {
    background: #fff;
    padding: 60px 0;
}
.article-content { padding-right: 30px; }
.article-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}
.article-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}
.article-content p {
    font-size: 1.05rem;
    color: #3d4b5e;
    line-height: 1.8;
    margin-bottom: 20px;
}
.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.article-content li {
    font-size: 1rem;
    color: #3d4b5e;
    margin-bottom: 8px;
}
.article-content strong { color: var(--text-dark); }

.article-cta-box {
    background: linear-gradient(135deg, var(--primary-color), #1d3557);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}
.article-cta-box h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.article-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}
.article-cta-box .btn-primary-cta {
    background: #fff;
    color: var(--primary-color);
    border: none;
}
.article-cta-box .btn-primary-cta:hover {
    background: var(--secondary-hover);
    color: #fff;
}
.article-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.article-tags span {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}
.widget {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}
.widget h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.toc-widget ul { list-style: none; padding: 0; }
.toc-widget li { margin-bottom: 10px; }
.toc-widget a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
}
.toc-widget a:hover { color: var(--secondary-color); }

.product-mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}
.product-mini-card:last-child { border-bottom: none; }
.mini-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-size: cover;
}
.mini-content h5 { font-size: 0.9rem; margin-bottom: 5px; }
.mini-content a {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.related-articles-widget ul { list-style: none; padding: 0; }
.related-articles-widget li { margin-bottom: 12px; }
.related-articles-widget a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
}
.related-articles-widget a:hover { color: var(--secondary-color); }

.cta-widget {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}
.cta-widget h4 {
    color: #fff;
    margin-bottom: 10px;
}
.cta-widget p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.cta-widget .btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
    width: 100%;
}
.cta-widget .btn-whatsapp:hover {
    background: #1EBE5A;
    color: #fff;
}

/* ---------- Contact Page ---------- */
.contact-info-section {
    background: #fff;
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}
.contact-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}
.contact-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.contact-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}
.contact-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-card a {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: none;
}
.contact-card a:hover { color: var(--secondary-color); }
.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-form-section {
    background: #fff;
    padding: 80px 0;
}
.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.contact-form-wrapper>p {
    color: var(--text-muted);
    margin-bottom: 30px;
}
.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 184, 201, 0.15);
}
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.map-wrapper {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
}
.map-wrapper h4 { margin-bottom: 20px; }
.map-placeholder {
    height: 250px;
    background: #e0e6ed;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.map-placeholder i {
    font-size: 4rem;
    color: rgba(22, 41, 74, 0.2);
    margin-bottom: 15px;
}
.map-placeholder span {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: rgba(22, 41, 74, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.address-info h6 { font-weight: 700; margin-bottom: 10px; }
.address-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.address-info .btn-outline-primary {
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 0.85rem;
}
.whatsapp-card {
    background: #25D366;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: #fff;
}
.whatsapp-card h5 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.whatsapp-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.map-section {
    background: var(--bg-light);
    padding: 60px 0;
}
.map-embed-placeholder {
    height: 300px;
    background: #e0e6ed;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.map-embed-placeholder i {
    font-size: 4rem;
    color: rgba(22, 41, 74, 0.2);
    margin-bottom: 15px;
}
.map-embed-placeholder span {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: rgba(22, 41, 74, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- Single Product (WooCommerce style) ---------- */
.single-product-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}
.woocommerce-breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}
.woocommerce-breadcrumb a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color 0.2s;
}
.woocommerce-breadcrumb a:hover { color: var(--brand-cyan); }

/* High-magnification zoom */
.product-image-container {
    border: 1px solid var(--brand-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 90, 135, 0.05);
    position: relative;
    cursor: crosshair;
}
.product-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: fit;
    aspect-ratio: 1 / 1;
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
    filter: brightness(1);
}
.product-image-container:hover .product-main-image {
    transform: scale(10.5);
    filter: brightness(1.02) contrast(1.03);
}
.product-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--brand-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.product-summary-container { padding-left: 15px; }

.product-meta-divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
    margin-bottom: 20px;
    border-radius: 2px;
}
.product-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-cyan);
    font-weight: 600;
    margin-bottom: 10px;
}
.product-short-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}
.product-action-box {
    padding: 20px 0;
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
    margin-bottom: 30px;
}
.btn-brand-primary {
    background-color: var(--brand-blue);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-brand-primary:hover {
    background-color: var(--brand-navy);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(14, 34, 56, 0.15);
}

.product-tabs-wrapper {
    margin-top: 50px;
    border-top: 1px solid var(--brand-border);
    padding-top: 35px;
}
.woo-nav-tabs {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--brand-border);
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}
.woo-nav-tabs li button {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}
.woo-nav-tabs li button.active { color: var(--brand-blue); }
.woo-nav-tabs li button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--brand-blue);
    border-radius: 2px;
}
.woo-tab-pane { display: none; }
.woo-tab-pane.active {
    display: block;
    line-height: 1.8;
    color: #4a5568;
}

.brand-accent-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--brand-navy) 0%, #1a365d 100%);
    color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.brand-accent-banner h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.brand-accent-banner p {
    color: #cbd5e0;
    margin: 0;
}
.btn-brand-light {
    background: #ffffff;
    color: var(--brand-navy);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.btn-brand-light:hover {
    background: #e2e8f0;
    color: var(--brand-navy);
    text-decoration: none;
}

.seo-metadata-card {
    background-color: var(--brand-light);
    border-left: 4px solid var(--brand-cyan);
    border-radius: 4px;
    padding: 20px;
}
.seo-metadata-card h5 {
    color: var(--brand-navy);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.seo-field-item { margin-bottom: 10px; }
.seo-field-item:last-child { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE ADJUSTMENTS (Consolidated)
   ============================================================ */

@media (max-width: 991.98px) {
    .hero { padding: 60px 0 50px; }
    .hero-visual { margin-top: 40px; }
    .hero-card-img { height: 220px; }
    .about-img-placeholder { height: 300px; margin-bottom: 30px; }
    .section-head h2 { font-size: 1.8rem; }
    .final-cta-inner h2 { font-size: 1.8rem; }
    .page-hero h1 { font-size: 2rem; }
    .story-placeholder { height: 300px; margin-bottom: 30px; }
    .export-placeholder { height: 280px; margin-top: 30px; }
    .product-gallery { position: static; margin-bottom: 30px; }
    .main-image-wrapper { height: 350px; }
    .product-info { padding-left: 0; }
    .product-title { font-size: 1.8rem; }
    .article-header h1 { font-size: 1.8rem; }
    .sidebar { position: static; margin-top: 40px; }
}

@media (max-width: 767.98px) {
    .site-header .btn-primary-cta { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    /* .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { width: 100%; } */
    .trust-bar-item { margin-bottom: 20px; }
    .product-card-img { height: 180px; }
    .process-step { margin-bottom: 20px; }
    .private-label-img-placeholder { height: 250px; margin-bottom: 30px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 300px; }
    .footer-contact li { font-size: 0.85rem; }
    .section-padding { padding: 60px 0; }
    .mission-card, .vision-card { padding: 30px; }
    .custom-chip { padding: 12px 18px; font-size: 0.85rem; }
    .cta-box h2 { font-size: 1.8rem; }
    .products-page-hero h1 { font-size: 2rem; }
    .filter-wrapper { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 0.8rem; }
    .cta-banner { text-align: center; }
    .cta-banner .text-lg-end { text-align: center !important; margin-top: 20px; }
    .cta-banner .btn-light { width: 100%; }
    .main-image-wrapper { height: 300px; }
    .thumbnail { width: 80px; height: 80px; }
    .price-value { font-size: 1.2rem; }
    .product-cta-buttons .btn { font-size: 1rem; }
    .benefits-box, .suitable-buyers { padding: 20px; }
    .mobile-cta-bar { display: flex; }
    .blog-hero h1 { font-size: 2rem; }
    .filter-row { flex-direction: column; align-items: flex-start; }
    .search-box { width: 100%; }
    .featured-card .row>div { width: 100%; }
    .featured-img { min-height: 200px; }
    .featured-content { padding: 25px; }
    .featured-content h2 { font-size: 1.5rem; }
    .contact-hero h1 { font-size: 2rem; }
    .contact-form-wrapper { padding: 30px; }
    .map-wrapper, .whatsapp-card { margin-top: 20px; }
    .article-header h1 { font-size: 1.8rem; }
    .featured-image-placeholder { height: 250px; }
    .article-content { padding-right: 0; }
}

@media (max-width: 575.98px) {
    .section-head h2 { font-size: 1.6rem; }
    .hero-badge { font-size: 0.75rem; }
    .hero-trust { flex-direction: column; gap: 12px; }
    .about-list li { font-size: 0.9rem; }
    .final-cta-inner h2 { font-size: 1.5rem; }
    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1rem; }
    .about-page-hero h1 { font-size: 1.6rem; }
    .company-story h2 { font-size: 1.6rem; }
    .cta-box h2 { font-size: 1.5rem; }
    .products-page-hero h1 { font-size: 1.8rem; }
    .product-card-img { height: 180px; }
    .main-image-wrapper { height: 250px; }
    .thumbnail { width: 70px; height: 70px; font-size: 0.7rem; }
    .product-title { font-size: 1.5rem; }
    .option-group .form-select { width: 100%; }
    .blog-hero h1 { font-size: 1.8rem; }
    .blog-card-img { height: 180px; }
    .contact-hero h1 { font-size: 1.8rem; }
    .contact-form-wrapper { padding: 20px; }
    .contact-card { padding: 20px; }
    .article-header h1 { font-size: 1.6rem; }
    .article-meta-top { flex-direction: column; align-items: flex-start; gap: 8px; }
    .featured-image-placeholder { height: 200px; }
}

/* For thumbnails on small screens */
@media (max-width: 576px) {
    .thumbnail { width: 80px; height: 80px; flex-basis: 80px; }
    .thumbnail span { font-size: 0.6rem; padding: 4px 2px; }
}

.about-page-hero,
.products-page-hero,
.blog-hero,
.contact-hero {
    background: linear-gradient(135deg, #16294A 0%, #1d3557 60%, #3BB8C9 130%);
    padding: 100px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle dotted pattern overlay */
.about-page-hero::before,
.products-page-hero::before,
.blog-hero::before,
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.about-page-hero .container,
.products-page-hero .container,
.blog-hero .container,
.contact-hero .container {
    position: relative;
    z-index: 2;
}

.about-page-hero h1,
.products-page-hero h1,
.blog-hero h1,
.contact-hero h1 {
    color: #fff;
}

.about-page-hero p,
.products-page-hero p,
.blog-hero p,
.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.about-page-hero .section-label,
.products-page-hero .section-label,
.blog-hero .section-label,
.contact-hero .section-label {
    background: rgba(255,255,255,0.15);
    color: #fff;
}