/* ==========================================
   META BILISIM - Custom Theme
   Colors: Dark Blue (#1a237e, #283593)
   ========================================== */

:root {
    --primary: #1a237e;
    --primary-light: #283593;
    --primary-dark: #0d1642;
    --accent: #42a5f5;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --bg-light: #f4f6fc;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(26, 35, 126, 0.1);
    --shadow-lg: 0 10px 40px rgba(26, 35, 126, 0.15);
    --transition: all 0.3s ease;
}

/* ---- Global ---- */
* { 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);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; transition: var(--transition); }

.section-padding { padding: 100px 0; }

.bg-light { background-color: var(--bg-light) !important; }

/* ---- Section Headers ---- */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    color: var(--text-muted);
    line-height: 1.8;
}

/* ---- Navbar ---- */
#mainNavbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

#mainNavbar.scrolled {
    background: var(--white) !important;
    padding: 10px 0;
    box-shadow: var(--shadow);
}

#mainNavbar.scrolled .navbar-brand,
#mainNavbar.scrolled .nav-link {
    color: var(--text-dark) !important;
}

#mainNavbar.scrolled .nav-link:hover,
#mainNavbar.scrolled .nav-link.active {
    color: var(--primary) !important;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-link {
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Force dark navbar text on non-index pages */
body.inner-page #mainNavbar {
    background: var(--primary) !important;
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #64b5f6, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
}

.hero-buttons .btn-primary:hover {
    background: #1e88e5;
    border-color: #1e88e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 165, 245, 0.4);
}

.hero-buttons .btn-outline-light {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    border-width: 2px;
}

.hero-buttons .btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Hero Carousel */
#heroCarousel {
    position: relative;
    width: 100%;
}

#heroCarousel .carousel-item {
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.hero-section:hover #heroCarousel .carousel-control-prev,
.hero-section:hover #heroCarousel .carousel-control-next {
    opacity: 1;
}

#heroCarousel .carousel-control-prev { left: 30px; }
#heroCarousel .carousel-control-next { right: 30px; }

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

#heroCarousel .carousel-indicators {
    bottom: 60px;
    z-index: 5;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0 6px;
    opacity: 1;
    transition: all 0.3s ease;
}

#heroCarousel .carousel-indicators button.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 5;
}

.hero-scroll-indicator a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ---- About Section ---- */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 80px 40px;
    text-align: center;
    border-radius: 16px;
    color: var(--white);
}

.about-placeholder i {
    font-size: 5rem;
    display: block;
    margin-bottom: 16px;
}

.about-placeholder span {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ---- Service Cards ---- */
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--accent);
    gap: 10px;
}

/* ---- Product Group Tabs ---- */
.product-group-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.product-group-tab {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.product-group-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.product-group-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3);
}

.product-group-content {
    display: none;
}

.product-group-content.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.product-group-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Product Cards ---- */
.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border-color: var(--primary);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.product-features li {
    padding: 8px 0;
    border-top: 1px solid var(--bg-light);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.product-features li i {
    color: var(--primary);
    margin-right: 8px;
}

/* ---- Campaigns Section ---- */
.campaigns-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
}

.campaign-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(21, 101, 192, 0.15);
    border-color: var(--primary);
}

.campaign-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.campaign-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.campaign-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.campaign-summary {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.campaign-date {
    font-size: 0.85rem;
    color: #ff6b35;
    font-weight: 600;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 20px;
}

/* ---- Stats / Neden Biz Section ---- */
.stats-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 100px 0;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    display: inline;
}

.stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: inline;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 8px;
}

/* ---- Contact Home Section ---- */
.contact-info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
}

.contact-info-item:not(:last-child) {
    border-bottom: 1px solid var(--bg-light);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-info-item h6 {
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-item p {
    color: var(--text-muted);
    margin: 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

/* ---- Page Header ---- */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    padding-top: 120px;
    padding-bottom: 60px;
}

.min-vh-40 { min-height: 20vh; }

.page-title {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 800;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-light .breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Service Detail Page ---- */
.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
}

.cta-box h4 { color: var(--white); margin-bottom: 12px; }
.cta-box p { color: rgba(255, 255, 255, 0.8); margin-bottom: 20px; }
.cta-box .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.cta-box .btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Sidebar */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 4px;
}

.sidebar-links li a {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-links li a:hover,
.sidebar-links li.active a {
    background: var(--primary);
    color: var(--white);
}

.sidebar-contact p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.sidebar-contact i {
    color: var(--primary);
}

/* ---- Contact Detail Page ---- */
.contact-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
}

.contact-detail-item:not(:last-child) {
    border-bottom: 1px solid var(--bg-light);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.contact-detail-item h6 {
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-detail-item p {
    color: var(--text-muted);
    margin: 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ---- Footer ---- */
.footer-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--accent);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-policy-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-policy-link:hover {
    color: var(--white);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ---- Forms ---- */
.form-control {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 12px 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 35, 126, 0.15);
}

.form-floating > .form-control {
    height: calc(3.5rem + 2px);
}

.form-floating > textarea.form-control {
    height: auto;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    padding: 12px 30px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .section-padding { padding: 60px 0; }

    #mainNavbar {
        background: var(--primary) !important;
        padding: 10px 0;
    }

    .navbar-collapse {
        background: var(--primary);
        padding: 16px;
        border-radius: 12px;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.75rem; }
    .hero-buttons .btn { display: block; width: 100%; margin-bottom: 12px; }
    .hero-buttons .btn:first-child { margin-right: 0 !important; }
    .stat-number { font-size: 2.2rem; }
    .page-title { font-size: 1.8rem; }
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next { display: none; }
    #heroCarousel .carousel-indicators { bottom: 40px; }
    .product-group-tabs { gap: 8px; }
    .product-group-tab { padding: 10px 20px; font-size: 0.9rem; }
}
