:root {
    --primary-color: #2b59ce;
    --secondary-color: #f8f9fa;
    --text-color: #1a1a1a;
    --light-text: #666;
    --white: #ffffff;
    --accent-color: #ffc107;
    --header-height: 80px;
    --top-bar-height: 40px;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--white);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top-bar-left a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.top-bar-left a:hover {
    opacity: 0.8;
}

.top-bar-left i {
    margin-right: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.top-social a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Header */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 24px;
}

/* Header Search */
.mobile-search-toggle {
    display: none;
    font-size: 20px;
    color: #475569;
    cursor: pointer;
}

.header-search {
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
}

.header-search form {
    position: relative;
    display: flex;
}

.header-search input {
    width: 100%;
    padding: 12px 25px;
    padding-right: 60px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition);
}

.header-search input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(43, 89, 206, 0.05);
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 3px;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    font-size: 22px;
    color: #1e293b;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
}

/* Mobile Nav Sidebar */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(4px);
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-mobile-nav {
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
}

.mobile-cat-list {
    list-style: none;
    padding: 10px 0;
}

.mobile-cat-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f8fafc;
}

.mobile-cat-item a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
}

.toggle-sub {
    color: #64748b;
    padding: 5px;
}

.mobile-sub-list {
    display: none;
    background: #f8fafc;
    list-style: none;
    padding: 5px 0;
}

.mobile-sub-list.active {
    display: block;
}

.mobile-sub-list li a {
    display: block;
    padding: 10px 40px;
    text-decoration: none;
    color: #475569;
    font-size: 14px;
}

/* Category Nav */
.category-nav {
    background: var(--white);
    border-bottom: 1px solid #edf2f7;
    position: sticky;
    top: 80px;
    z-index: 90;
}

.category-nav .container {
    position: relative;
    display: flex;
    align-items: center;
}

.cat-menu-wrapper {
    flex: 1;
    overflow-x: auto;
    position: relative;
    scrollbar-width: none;
}

.cat-menu-wrapper::-webkit-scrollbar {
    display: none;
}

.cat-menu {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-scroll-btn {
    width: 30px;
    height: 30px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 95;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-scroll-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.nav-scroll-btn.left {
    margin-right: 5px;
}

.nav-scroll-btn.right {
    margin-left: 5px;
}

.cat-menu::-webkit-scrollbar {
    height: 4px;
}

.cat-menu::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.cat-menu::-webkit-scrollbar-thumb {
    background: rgba(43, 89, 206, 0.4);
    border-radius: 10px;
}

.cat-menu>li {
    position: relative;
}

.cat-menu>li>a {
    display: block;
    padding: 15px 20px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    /* Category names on one line */
}

.cat-menu>li:hover>a {
    color: var(--primary-color);
}

.cat-menu li i {
    font-size: 10px;
    margin-left: 5px;
}

/* Fixed position dropdown to escape overflow clipping */
.dropdown {
    position: fixed;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f1f5f9;
    list-style: none;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 9999;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    min-width: 250px;
    border-radius: 12px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #475569;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown li a:hover {
    background: #f8fbff;
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-account,
.action-btn,
.mobile-search-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.action-btn {
    position: relative;
}

.mobile-search-toggle {
    display: none;
}

.user-account i,
.action-btn i,
.mobile-search-toggle i {
    font-size: 20px;
    color: #475569;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.user-account {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f7fafc;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(43, 89, 206, 0.03);
    border-radius: 30px;
    transform: rotate(45deg);
    top: -100px;
    right: 20%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    z-index: 2;
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1e293b;
}

.hero-description {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(43, 89, 206, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(43, 89, 206, 0.3);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 90%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 10px 20px rgba(43, 89, 206, 0.2);
}

/* Category Grid */
.category-header {
    background: #f8fafc;
    padding: 60px 0;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 40px;
    text-align: center;
}

.category-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.category-header p {
    color: #64748b;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.categories-section {
    padding: 20px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card {
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 200px;
    overflow: hidden;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
    font-weight: 700;
}

.category-info p {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.category-link {
    display: inline-block;
    background: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.category-img {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}



/* Footer */
footer {
    background-color: #f8fbff;
    padding: 80px 0 60px;
    color: #4a5568;
    border-top: 1px solid #edf2f7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 5px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: #1e293b;
}

.footer-logo {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.footer-copyright {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 25px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px 15px !important;
    }

    .footer-col:nth-child(1),
    .footer-col:nth-child(2) {
        grid-column: span 2;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .header-search {
        margin: 0 10px;
    }

    .hide-mobile {
        display: none;
    }

    .category-nav {
        top: 70px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px !important;
    }

    .categories-section {
        padding: 10px 0 !important;
    }

    .category-header {
        padding: 30px 0 !important;
        margin-bottom: 25px !important;
    }

    .category-header h1 {
        font-size: 24px !important;
    }

    .category-header p {
        font-size: 14px !important;
        margin-top: 8px !important;
    }

    footer {
        padding: 40px 0 30px !important; /* Reduced from 80px 0 60px */
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .header-actions {
        gap: 10px;
        flex: 1;
        justify-content: flex-end;
    }

    .header-search {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 15px;
        margin: 0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-width: none;
    }

    .header-search.active {
        display: block;
    }

    .mobile-search-toggle,
    .user-account,
    .action-btn {
        display: flex;
        /* Ensure visibility on mobile */
        width: 38px;
        height: 38px;
        background: #f1f5f9;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .user-account i,
    .action-btn i,
    .mobile-search-toggle i {
        font-size: 16px;
    }

    .action-btn .cart-count {
        top: -2px;
        right: -2px;
        width: 16px;
        height: 16px;
        font-size: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .category-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .product-card .product-img {
        height: auto;
        aspect-ratio: 1 / 1;
        padding: 8px !important;
        /* Reduced padding on mobile */
    }

    .product-card .product-info {
        padding: 12px;
    }

    .product-card .product-info h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .logo img {
        max-height: 45px !important;
        /* Reduced from 50px */
    }

    .product-card .product-info span {
        font-size: 14px !important;
    }

    .product-card .product-info a {
        width: 30px !important;
        height: 30px !important;
        border-radius: 8px !important;
    }
}

/* Product Grid & Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-card .product-img {
    height: auto;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-card .product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    /* Matching inner radius */
}

.product-card .product-info {
    padding: 20px;
}

/* Product Detail Gallery */
.product-gallery {
    background: #f8fafc;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #edf2f7;
    aspect-ratio: 1 / 1;
    height: auto;
}

.product-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    /* Matching inner radius */
    mix-blend-mode: multiply;
}

.rich-content ul,
.rich-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.rich-content h1,
.rich-content h2,
.rich-content h3 {
    color: #1e293b;
    margin: 30px 0 15px 0;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ==========================================================================
   Hero Slider Styling (Premium Boxed Carousel)
   ========================================================================== */
.hero-slider-wrapper {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px; /* Rounded corners on all 4 sides */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background-color: #0f172a; /* Dark base color */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 35%, rgba(15, 23, 42, 0.45) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide.active .hero-slider-content {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-slider-content {
    max-width: 680px;
    z-index: 10;
    position: relative;
    opacity: 0; /* Animated on active slide */
}

.hero-slider-subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-slider-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-slider-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 35px;
    max-width: 580px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    font-weight: 500;
}

.hero-slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color, #2b59ce);
    color: #ffffff !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slider-btn i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.hero-slider-btn:hover {
    background: #ffffff;
    color: var(--primary-color, #2b59ce) !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25);
}

.hero-slider-btn:hover i {
    transform: translateX(4px);
}

/* Dots Navigation */
.hero-slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
    background: #ffffff;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    width: 24px; /* Expanding pill-shaped active dot */
    border-radius: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-slider-container {
        min-height: 460px;
    }
    .hero-slide {
        padding: 50px 50px;
    }
    .hero-slider-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        min-height: 400px;
        border-radius: 16px;
    }
    .hero-slide {
        padding: 40px 30px;
        text-align: center;
    }
    .hero-slide::before {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%) !important;
    }
    .hero-slider-content {
        margin: 0 auto;
    }
    .hero-slider-title {
        font-size: 28px;
    }
    .hero-slider-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .hero-slider-btn {
        padding: 14px 30px;
        font-size: 13px;
    }
    .hero-slider-dots {
        bottom: 20px;
    }
}