/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #00A86B;      /* Premium Forest Green */
    --primary-dark: #00875A;
    --primary-light: rgba(0, 168, 107, 0.1);
    --secondary-color: #0B0F19;    /* Deep Midnight Black */
    --dark-gray: #1F2937;
    --light-gray: #F3F4F6;
    --border-color: #E5E7EB;
    --white: #FFFFFF;
    --text-color: #1F2937;
    --text-muted: #6B7280;
    --accent-orange: #FF9900;       /* Amazon rating orange */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
    margin-left: 0.35rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Search Bar Header */
.search-container {
    flex: 1;
    max-width: 420px;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: var(--light-gray);
    border: 1px solid transparent;
    border-radius: 30px;
    padding: 2px 6px 2px 16px;
    transition: var(--transition);
}

.search-form:focus-within {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0.6rem 0;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    outline: none;
}

.search-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50% !important;
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--primary-color);
}

.search-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Language selector */
.lang-selector {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    outline: none;
    font-family: inherit;
    font-weight: 600;
    background: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: radial-gradient(circle at 10% 20%, rgba(0, 168, 107, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
    padding: 4rem 1.5rem 3rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto;
}

.hero-search .search-form {
    padding: 4px 8px 4px 20px;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    border: 1px solid var(--border-color);
}

.hero-search .search-input {
    font-size: 1.05rem;
    padding: 0.8rem 0;
}

.hero-search .search-btn {
    width: 46px;
    height: 46px;
}

/* Single line category horizontal scroll */
.popular-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.categories-scroll-wrapper {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.categories-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.categories-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.category-card {
    flex: 0 0 140px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.2rem 0.8rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.category-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.8rem;
    background-color: var(--light-gray);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.category-card:hover .category-img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.category-card span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Product Card Component */
.trending-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.trending-section .products-grid {
    padding: 0;
}


.deals-container .section-title {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
}


.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 168, 107, 0.2);
}

.badge-container {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
}

.badge.deal {
    background-color: var(--primary-color);
}

.badge.bestseller {
    background-color: var(--accent-orange);
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-btn:hover {
    background-color: var(--white);
    transform: scale(1.1);
}

.wishlist-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 2;
    transition: var(--transition);
}

.wishlist-btn.active svg,
.wishlist-btn:hover svg {
    fill: #EF4444;
    stroke: #EF4444;
}

.product-card-img {
    height: 220px;
    width: 100%;
    object-fit: contain;
    padding: 1.5rem;
    background-color: var(--white);
    transition: var(--transition);
}

.product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-cat {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.product-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8rem;
}

/* Star Rating component */
.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 0.8rem;
}

.star {
    width: 16px;
    height: 16px;
}

.star.full {
    fill: var(--accent-orange);
}

.star.empty {
    fill: var(--border-color);
}

.rating-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 5px;
}

.product-card-footer {
    margin-top: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--light-gray);
}

/* Today's Deals Dedicated Section Styling */
.deals-container {
    background-color: var(--light-gray);
    padding: 3rem 0;
    margin: 4rem 0;
}

/* Footer Section */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 1.5rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col p {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #9CA3AF;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #9CA3AF;
}

.disclaimer {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #9CA3AF;
}

/* Dynamic Pages Modal / View Styles */
.info-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-modal-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    width: 90%;
    max-width: 650px;
    box-shadow: var(--shadow-lg);
    max-height: 85vh;
    overflow-y: auto;
}

/* Floating Widgets on Right side of the screen */
.floating-widgets {
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: var(--transition);
}

.widget-btn:hover {
    transform: scale(1.08);
}

.widget-telegram {
    background-color: #0088cc;
}

.widget-whatsapp {
    background-color: #25d366;
}

.widget-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Meesho Style Rotating banner */
.meesho-banner-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 2rem 4rem;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    background: rgba(0,0,0,0.5);
    padding: 2rem;
    border-radius: 12px;
    color: white;
    max-width: 450px;
    backdrop-filter: blur(4px);
}

.slide-overlay h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.slide-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
    width: 20px;
    border-radius: 10px;
}

/* Blog Cards */
.blog-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

/* --- Added Layout Fixes & Responsive styling --- */

/* Section Titles */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 3.5rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.8rem;
}

.section-title h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Category Grid Layout */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.categories-grid .category-card {
    flex: initial; /* Reset flex-shrink/grow from horizontal layout */
    width: 100%;
}

/* Menu Toggle Button styling */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--secondary-color);
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background-color: var(--light-gray);
}

/* Search Page Sidebar Layout */
.search-layout {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    gap: 2.5rem;
}

.filter-sidebar {
    flex: 0 0 280px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.8rem;
    height: fit-content;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
}

.search-layout main {
    flex: 1;
}

.filter-group {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.filter-group:last-of-type {
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
}

.filter-group h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom scrollbar for filter list */
.filter-list::-webkit-scrollbar {
    width: 4px;
}
.filter-list::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 2px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: var(--transition);
}

.checkbox-label:hover {
    color: var(--primary-color);
}

.checkbox-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.filter-sidebar select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    outline: none;
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.filter-sidebar select:focus {
    border-color: var(--primary-color);
}

.price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-inputs input {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.price-inputs input:focus {
    border-color: var(--primary-color);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .header-container {
        padding: 0.8rem 1rem;
        gap: 1rem;
    }

    .search-container {
        max-width: 100%;
        order: 3;
        flex: 1 0 100%;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .section-title .btn {
        width: auto;
    }

    .search-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .filter-sidebar {
        flex: 1 0 100%;
        position: static;
    }
}

/* Modern Banner Slider (Meesho-style) */
.banner-slider-section {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 380px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--secondary-color);
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide > a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

.slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: brightness(0.75);
    transition: transform 6s linear;
}

.slide.active img {
    transform: scale(1.05) !important;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2.5rem;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 20%, rgba(11, 15, 25, 0.4) 70%, transparent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.slide-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,168,107,0.3);
}

.slide-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,168,107,0.4);
}

/* Controls */
.slide-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
}

.slide-control:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slide-control.prev {
    left: 20px;
}

.slide-control.next {
    right: 20px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 24px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    width: 36px;
}

@media (max-width: 768px) {
    .slider-container {
        height: 250px;
    }
    .slide-title {
        font-size: 1.6rem;
    }
    .slide-subtitle {
        font-size: 0.95rem;
    }
    .slide-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    .slide-control {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Google Translate Custom Premium Styling */
.lang-li {
    display: flex !important;
    align-items: center !important;
    margin-left: 10px !important;
}
#google_translate_element {
    display: inline-block;
}
.goog-te-gadget {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.9rem !important;
}
.goog-te-gadget-simple {
    background-color: var(--light-gray) !important;
    border: 1px solid var(--border-color) !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    transition: var(--transition) !important;
}
.goog-te-gadget-simple:hover {
    border-color: var(--primary-color) !important;
    background-color: var(--white) !important;
    box-shadow: 0 0 0 3px var(--primary-light) !important;
}
.goog-te-gadget-simple img {
    display: none !important; /* Hide Google Translate Logo */
}
.goog-te-gadget-simple span {
    color: var(--text-color) !important;
    font-weight: 600 !important;
}
.goog-te-menu-value span:nth-child(5) {
    display: none !important;
}
.goog-te-menu-value::after {
    content: "▼";
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: 4px;
}
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
}


