:root {
    --color-bg: #FFFFFF;
    --color-text: #1A1A1A;
    --color-accent-blue: #00A3FF;
    --color-accent-green: #00E676;
    --color-gray-light: #F5F7FA;
    --color-gray-dark: #2D3436;
    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
    
    --primary-color: #0056b3; /* Industrial Blue */
    --secondary-color: #f4f6f8; /* Light Grey Background */
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #e1e4e8;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

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

img.lang_img {
    width: 24px;
    vertical-align: middle;
    margin-right: 5px;
}

a.lang {
    padding: 10px 20px !important;
}

img.lang_img_select {
    width: 32px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Temporary placeholder styles removed */

/* Temporary placeholder styles removed */

/* Header Top Bar */
#header-top {
    background: #fff;
    border-bottom: 1px solid #eee;
    background: url(https://images.rawpixel.com/image_social_landscape/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA2L3JtMzUxLWFkai1iYWNrZ3JvdW5kLTExLWwuanBn.jpg);
    background-size: cover;
}

.top-bar-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.search-bar {
    flex: 1;
    max-width: 400px;
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 5px;
}

.search-bar input {
    border: none;
    background: transparent;
    padding: 8px 15px;
    width: 100%;
    outline: none;
}

.search-bar button {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0 10px;
}

.contact-block {
    text-align: right;
}

.phone-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
}

.work-hours {
    font-size: 0.8rem;
    color: #888;
}

.actions-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-callback {
    background: #FF4757;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-main);
    transition: background 0.2s;
}

.btn-callback:hover {
    background: #FF2E43;
}

/* Main Navigation */
#main-nav {
    background: var(--color-gray-dark);
    padding: 0;
}

#main-nav .nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 0;
}

#main-nav .nav-links li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    transition: background 0.2s;
}

#main-nav .nav-links li a:hover,
#main-nav .nav-links li.dropdown:hover>a {
    /* Keep parent active on hover */
    background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown .arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

.dropdown .arrow svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: transform 0.3s ease;
    position: relative;
    /* Added for fine-tuning */
    top: 2px;
    /* Move down 2px as requested */
}

.dropdown:hover .arrow svg {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 100;
    list-style: none;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: var(--color-text) !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    border-right: none !important;
    border-bottom: 1px solid #eee !important;
    display: block;
    transition: all 0.3s ease !important;
    /* Added smooth transition */
}

.dropdown-menu li a:hover {
    background: var(--color-gray-light) !important;
    color: var(--color-accent-blue) !important;
    padding-left: 25px !important;
}

.lang-switch {
    padding-left: 20px;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 5px;
}

.lang-switch:hover {
    transform: scale(1.1);
}

/* Hero Section Updates */
#hero {
    padding: 60px 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 230, 118, 0.05) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(circle at 10% 60%, rgba(0, 163, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-features {
    list-style: none;
    margin-bottom: 30px;
}

.hero-features li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}


/* Hero Slider */
#hero-slider {
    padding: 30px 0;
    background-color: #c8ced4;
    position: relative;
    overflow: hidden;
}

#hero-slider::before,
#hero-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: url(images/hero.jpeg) no-repeat;
    background-size: contain;
    z-index: 0;
}

#hero-slider::before {
    left: 0;
    background-position: left center;
}

#hero-slider::after {
    right: 0;
    background-position: left center;
    transform: scaleX(-1);
}

#hero-slider .container {
    position: relative;
    z-index: 1;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    /* "uzun bo'lmagan" - restricted height */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 100px;
    /* Increased from 60px to avoid Prev button overlap */
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 500px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-content .btn-primary {
    background: var(--color-accent-blue);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 163, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    /* Added */
    /* Removed text-transform: uppercase */
}

.slide-content .btn-primary:hover {
    background: #0088CC;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 163, 255, 0.5);
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.slider-btn-products {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(0 56 176);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -70px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: white;
    color: var(--color-text);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

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

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Mobile Menu Button - Hidden by default */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 15px;
}

/* Trust Grid - Responsive */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

/* Consultation Form fix for responsive */
@media (max-width: 768px) {

    /* Header Adjustments */
    .top-bar-layout {
        flex-wrap: wrap;
        gap: 10px;
    }

    .search-bar,
    .btn-callback,
    .contact-block {
        display: none !important;
        /* Hide on mobile as requested */
    }

    .mobile-menu-btn {
        display: block;
        /* Show hamburger */
    }

    /* Actions block typically moves to right */
    .actions-block {
        margin-left: auto;
    }

    /* Mobile Navigation */
    #main-nav {
        display: none;
        /* Hide default nav bar */
        position: absolute;
        top: 60px;
        /* Adjust based on header height */
        left: 0;
        width: 100%;
        background: var(--color-gray-dark);
        z-index: 999;
        padding-bottom: 20px;
    }

    #main-nav.open {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    #main-nav .nav-links {
        flex-direction: column;
    }

    #main-nav .nav-links li a {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
    }

    #main-nav .nav-flex {
        display: block;
        /* Stack on mobile */
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
    }

    .dropdown:hover .dropdown-menu {
        max-height: 300px;
        /* Expand on hover/click interaction */
    }

    .dropdown-menu li a {
        color: #ddd !important;
        padding-left: 40px !important;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        font-size: 0.85rem !important;
    }

    .lang-switch {
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Slider Adjustments */
    .slider-wrapper {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide {
        padding: 0 30px;
        /* Reset padding for mobile */
    }

    /* Grid Stacking */
    .hero-layout,
    .consultation-box {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        /* Stack trust items */
    }

    .product-grid {
        grid-template-columns: 1fr;
        /* Stack products */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* Portfolio Section */
#portfolio {
    padding: 10px 0;
    background: #f9f9f9;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Mobile Adjustments for New Sections */
@media (max-width: 768px) {

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Consultation Form */
#consultation {
    padding: 80px 0;
    background: #f0f4f8;
}

.consultation-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.consultation-text {
    padding: 50px;
    background: var(--color-gray-dark);
    color: #fff;
}

.consultation-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.consultation-text ul {
    list-style: none;
    margin-top: 30px;
}

.consultation-text li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.consultation-form {
    padding: 50px;
}

.consultation-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.consultation-form input {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-main);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--color-accent-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #0088CC;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
}

.stats-row {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.stat-label {
    font-size: 0.875rem;
    color: #888;
    margin-top: 4px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    /* Soft drop shadow */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Cart & Overlay */
.cart-icon-wrapper {
    position: relative;
    cursor: pointer;
    padding: 8px;
}

.cart-icon {
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #FF4757;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(2px);
}

#overlay.hidden,
#cart-modal.hidden {
    display: none;
}

#cart-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 2001;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.cart-header {
    padding: 20px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cart-item-info p {
    color: #888;
    font-size: 0.9rem;
}

.remove-btn {
    background: #fff0f0;
    color: #ff4757;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.total-row {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.checkout-btn:hover {
    background: #219150;
}

.empty-msg {
    text-align: center;
    color: #aaa;
    margin-top: 40px;
}

/* Products Section */
#products {
    background-color: #FAFBFC;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

#products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://img.freepik.com/free-vector/abstract-monochrome-design-background_1048-8710.jpg?semt=ais_hybrid&w=740&q=80') center/contain;
    opacity: 0.1;
    z-index: -1;
}

.section-header {
    text-align: center;
    margin: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-header p {
    color: #888;
}

/* Tabs */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 25px;
    border: none;
    background: #f0f0f0;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    font-family: var(--font-main);
    color: #666;
    transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--color-text);
    color: #fff;
    font-weight: 500;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: #2d3436;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.card-image {
    position: relative;
    height: 300px;
    background: #f0f2f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-gray-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.badge-dark {
    background: var(--color-gray-dark);
    color: #fff;
}

.badge-accent {
    background: var(--color-accent-blue);
    color: #fff;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-content .desc {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.btn-shop {
    background: var(--color-accent-blue);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    font-family: var(--font-main);
}

.btn-shop:hover {
    background: #0088CC;
}

/* Trust Section */
#trust {
    padding: 100px 0;
    background-color: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 30px;
    border-radius: 16px;
    background: var(--color-gray-light);
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.trust-item h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
#footer {
    background-color: var(--color-gray-dark);
    color: #fff;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #aaa;
    margin-top: 20px;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
}

/* Partners Section */
#partners {
    padding: 60px 0;
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}

.partners-scroll-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Semi-transparent fade effect on edges */
.partners-scroll-container::before,
.partners-scroll-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, #fcfcfc, transparent);
}

.partners-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, #fcfcfc, transparent);
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.partners-track:hover {
    animation-play-state: paused;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    opacity: 0.6;
    transition: all 0.3s;
    cursor: pointer;
}

.partner-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partner-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #555;
    text-align: center;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Social Sidebar */
#social-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    width: 60px;
    /* Slight expansion */
    padding-left: 10px;
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

/* Brand Colors */
.social-btn.telegram {
    background: #229ED9;
}

.social-btn.telegram:hover {
    background: #1e8bbf;
    box-shadow: 0 0 15px rgba(34, 158, 217, 0.5);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-btn.instagram:hover {
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.whatsapp:hover {
    background: #20bd5a;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.social-btn.phone {
    background: #0f9d58;
}

.social-btn.phone:hover {
    background: #0d8a4d;
    box-shadow: 0 0 15px rgba(15, 157, 88, 0.5);
}

/* Mobile Adjustments for Sidebar */
@media (max-width: 768px) {
    #social-sidebar {
        display: none;
        /* Hide on mobile to avoid clutter */
    }
}

/* Product Detail Page Styles */
.breadcrumb-area {
    padding: 20px 0;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb li a {
    text-decoration: none;
    color: #666;
    transition: color 0.2s;
}

.breadcrumb li a:hover {
    color: var(--color-accent-blue);
}

.breadcrumb li::after {
    content: "/";
    margin-left: 10px;
    color: #ccc;
}

.breadcrumb li:last-child {
    color: var(--color-text);
    font-weight: 500;
}

.breadcrumb li:last-child::after {
    display: none;
}

.product-detail-section {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Gallery */
.product-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 500px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.badge.new {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent-green);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.thumbnail-list {
    display: flex;
    gap: 15px;
}

.thumb {
    width: 100px;
    height: 100px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.thumb.active {
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 163, 255, 0.2);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.product-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.product-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-count {
    color: #888;
    font-size: 0.9rem;
}

.product-price-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent-blue);
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.save-badge {
    background: #ff4757;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-short-desc {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-features {
    list-style: none;
    margin-bottom: 40px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--color-text);
}

.product-features li svg {
    color: var(--color-accent-blue);
}

/* Purchase Actions */
.purchase-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 50px;
    background: #f5f5f5;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #eee;
}

.qty-input {
    width: 50px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart {
    background: var(--color-text);
    color: white;
    border: 1px solid transparent;
}

.btn-add-cart:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-buy-now {
    background: var(--color-accent-blue);
    color: white;
    border: none;
    text-decoration: none;
    padding: 10px;
}

.btn-buy-now:hover {
    background: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 163, 255, 0.3);
}

.delivery-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

/* Tabs */
.product-tabs-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-link {
    padding: 20px 40px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-link:hover {
    color: var(--color-accent-blue);
    background: #f9f9f9;
}

.tab-link.active {
    color: var(--color-accent-blue);
    border-bottom-color: var(--color-accent-blue);
    background: white;
}

.tab-body {
    padding: 40px;
    display: none;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.specs-table th {
    width: 30%;
    color: #888;
    font-weight: 400;
}

.specs-table td {
    font-weight: 500;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

/* Reviews */
.review-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

/* Related Products */
.related-products h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 350px;
    }

    .purchase-actions {
        flex-direction: column;
    }

    .btn-add-cart,
    .btn-buy-now {
        width: 100%;
        padding: 15px;
    }

    .tabs-header {
        overflow-x: auto;
    }
}
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #ffecec;
    color: #d60000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.cart-remove:hover {
    background: #d60000;
    color: #fff;
    transform: scale(1.05);
}

/* Circular Pop-out Category Design */
.circular-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    padding: 30px 0;
    justify-items: center;
}

.circular-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 100%;
    max-width: 180px;
    group: cat-card;
    /* Named group for easier hover targeting logic if needed */
}

.circle-wrapper {
    width: 140px;
    height: 140px;
    background-color: #F2F4F8;
    /* Default Light Gray */
    border-radius: 50%;
    position: relative;
    margin-bottom: 15px;
    transition: background-color 0.4s ease;
    display: flex;
    /* Ensure centering */
    justify-content: center;
    align-items: center;
    /* Center content vertically */
}

/* Unique Hover Colors applied via inline style var(--hover-color) */
.circular-category-card:hover .circle-wrapper {
    background-color: var(--hover-color, #F2F4F8);
}

.circular-cat-img {
    position: absolute;
    /* Center absolute image */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.0);
    width: 110%;
    /* Makes image slightly larger than circle for pop-out */
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bounce effect */
    pointer-events: none;
    /* Let hover pass through to wrapper */
    z-index: 2;
}

.circular-category-card:hover .circular-cat-img {
    transform: translate(-50%, -55%) scale(1.15);
    /* Lift up and scale */
}

.circular-cat-title {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
    margin-top: 10px;
}

.circular-category-card:hover .circular-cat-title {
    color: var(--color-accent-blue);
}

/* Responsive */
@media (max-width: 992px) {
    .circular-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .circular-category-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px 15px;
        /* Vertical gap larger */
    }

    .circle-wrapper {
        width: 120px;
        height: 120px;
    }
}/* Image Scale Update */
.circular-cat-img {
    width: 130%;
    /* Increased from 110% */
}

.circular-category-card:hover .circular-cat-img {
    transform: translate(-50%, -60%) scale(1.2);
    /* Increased lift and scale */
}/* Staggered Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.circular-category-card {
    opacity: 0;
    /* Hidden by default */
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Stagger delays for 10 items */
.circular-category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.circular-category-card:nth-child(2) {
    animation-delay: 0.15s;
}

.circular-category-card:nth-child(3) {
    animation-delay: 0.2s;
}

.circular-category-card:nth-child(4) {
    animation-delay: 0.25s;
}

.circular-category-card:nth-child(5) {
    animation-delay: 0.3s;
}

.circular-category-card:nth-child(6) {
    animation-delay: 0.35s;
}

.circular-category-card:nth-child(7) {
    animation-delay: 0.4s;
}

.circular-category-card:nth-child(8) {
    animation-delay: 0.45s;
}

.circular-category-card:nth-child(9) {
    animation-delay: 0.5s;
}

.circular-category-card:nth-child(10) {
    animation-delay: 0.55s;
}

/* Click Effect */
.circular-category-card:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}
/* ===== TOP INFO BAR (Mini Header) ===== */
#top-info-bar {
    background: #2c3436;
    color: #e5e7eb;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-info-bar-v2 {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 6px 0;
}

.top-left strong {
    font-weight: 600;
    color: #fff;
}

.top-left small {
    display: block;
    font-size: 11px;
    opacity: 0.7;
}

.top-center {
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0.85;
    white-space: nowrap;
}

.top-right a {
    color: #38bdf8;
    font-weight: 500;
    text-decoration: none;
}

.top-right a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .top-info-bar-v2 {
        grid-template-columns: 1fr;
        gap: 6px;
        text-align: center;
    }
    .top-center {
        justify-content: center;
        flex-wrap: wrap;
    }
}



/* slider section */

/* Slider Section Styles */
.slider-section {
    margin-bottom: 60px;
    position: relative;
    padding: 0 40px; /* Space for arrows */
}

/* Slider Wrapper */
.slider-wrapper-product {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    margin-top: 10px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    transition: var(--transition);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* 6 Items Calculation: (100% - (5 * 20px gap)) / 6 */
.items-6 .product-card {
    width: calc((100% - 100px) / 6);
}

/* 4 Items Calculation: (100% - (3 * 20px gap)) / 4 */
.items-4 .product-card {
    width: calc((100% - 60px) / 4);
}

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

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover; /* Use contain if products are pngs */
    background-color: #fafafa;
    border-radius: 4px;
    margin-bottom: 12px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 2.5em; /* Fixed height for alignment */
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 12px;
}

.add-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--text-dark);
    transition: var(--transition);
}

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

.prev-btn {
    /* left: 0; */
    margin-top: 30px;
}

.next-btn {
    /* right: 0; */
    margin-top: -30px;
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--secondary-color);
    color: var(--text-light);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .items-6 .product-card {
        width: calc((100% - 60px) / 4); /* Drop to 4 items */
    }
}

@media (max-width: 992px) {
    .items-6 .product-card,
    .items-4 .product-card {
        width: calc((100% - 40px) / 3); /* Drop to 3 items */
    }
}

@media (max-width: 768px) {
    .slider-section {
        padding: 0 10px;
    }
    
    .slider-track {
        gap: 15px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
    }

    .prev-btn { left: -5px; }
    .next-btn { right: -5px; }

    .items-6 .product-card,
    .items-4 .product-card {
        width: calc((100% - 15px) / 2); /* Drop to 2 items */
    }
}

@media (max-width: 480px) {
    .items-6 .product-card,
    .items-4 .product-card {
        width: calc(100% - 0px); /* 1 item */
    }
}
