/* ===== CSS Variables ===== */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-dark: #1a1a1a;
    --gray: #333333;
    --gray-medium: #666666;
    --gray-light: #f5f5f5;
    --accent: #2d2d2d;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--gray);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h1 {
    font-family: var(--font-heading);
    color: var(--black);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.tagline {
    font-size: 11px;
    color: var(--gray-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--gray);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--black);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
        margin-top: 0;
    }
    
    .slide-content {
        padding-top: 70px; /* Account for fixed header */
    }
    
    .slide-bg {
        background-size: cover;
        background-position: center;
        height: 100vh;
    }
    
    .slide-bg::after {
        background: rgba(0, 0, 0, 0.5);
    }
    
    /* Adjust text positioning for mobile */
    .slide-text {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .mobile-bg {
        display: block;
    }
    
    .desktop-bg {
        display: none;
    }
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide.active {
    transform: translateX(0);
    pointer-events: auto;
}

.slide.prev-slide {
    transform: translateX(-100%);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .slide-bg {
        background-size: cover;
        background-position: center center;
    }
}

.slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
/* Mobile/Desktop Background Images */
.mobile-bg {
    display: none;
}

.desktop-bg {
    display: block;
}

@media (max-width: 768px) {
    .mobile-bg {
        display: block;
    }
    
    .desktop-bg {
        display: none;
    }
    
    /* Ensure mobile images fill the screen */
    .slide-bg {
        background-size: cover;
        background-position: center;
    }
    
    .slide-bg::after {
        background: rgba(0, 0, 0, 0.4);
    }
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-text {
    max-width: 600px;
}

.slide-label {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.slide-description {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    padding: 10px 24px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    color: var(--black);
    font-size: 30px;
    line-height: 1;
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ===== Features ===== */
.features {
    padding: 80px 0;
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--black);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--black);
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-medium);
}

/* ===== About Section ===== */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--black);
}

.about-text p {
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: var(--gray-light);
    border-radius: 12px;
    transition: var(--transition);
}

.stat:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 10px;
}

.stat:hover h3 {
    color: var(--white);
}

.stat p {
    font-size: 14px;
    color: var(--gray-medium);
}

.stat:hover p {
    color: var(--white);
}

.about-image {
    height: 500px;
    background: var(--gray-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--black);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    font-size: 20px;
    color: var(--gray-medium);
    font-weight: 600;
}

/* ===== Products Section ===== */
.products {
    padding: 80px 0;
    background: var(--gray-light);
}

.shop-search {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
    padding: 0 20px;
}

.search-wrapper {
    position: relative;
    flex: 1;
}

.search-input-field {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.search-input-field:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.search-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
}

.search-submit svg {
    width: 18px;
    height: 18px;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--black);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--gray-light);
}

.suggestion-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.suggestion-text {
    flex: 1;
}

.suggestion-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.suggestion-category {
    font-size: 12px;
    color: var(--gray-medium);
    margin-top: 2px;
}

.suggestion-item mark {
    background: var(--black);
    color: var(--white);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: var(--gray-medium);
    font-size: 14px;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid var(--black);
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    background: var(--white);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--black);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--black);
}

.product-image {
    height: 300px;
    /* CHANGE 1: Set background to white to fill empty space */
    background: white; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--black);
    overflow: hidden;
}

.product-image img {
    /* CHANGE 2: Use 'contain' to ensure the whole image is visible */
    object-fit: contain; 
    
    /* Ensure maximum sizing while maintaining aspect ratio */
    max-width: 100%;
    max-height: 100%;
    width: auto; /* Allow width to auto-adjust with 'contain' */
    height: auto; /* Allow height to auto-adjust with 'contain' */
    transition: var(--transition);
}

.product-card:hover .product-image img {
    /* Kept this for the zoom effect, works well with object-fit: contain */
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.product-info p {
    color: var(--gray-medium);
    margin-bottom: 15px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--black);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item svg {
    flex-shrink: 0;
    color: var(--black);
}

.info-item strong {
    display: block;
    color: var(--black);
    margin-bottom: 5px;
    font-size: 16px;
}

.info-item p {
    color: var(--gray-medium);
    line-height: 1.7;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--black);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-xl);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gray);
    transform: translateY(-5px);
}

/* ===== Product Modal ===== */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    cursor: pointer;
}

.modal-close-btn:hover {
    background: var(--black);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    background: var(--gray-light);
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid var(--black);
    overflow: hidden;
}

.modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--black);
    margin-bottom: 15px;
}

.modal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 25px;
}

.modal-description {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.modal-details .btn-whatsapp {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal-details .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 100px 30px;
        gap: 0;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 18px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .shop-search {
        flex-direction: column;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .search-input-field {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .search-submit {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        min-height: 300px;
        border-right: none;
        border-bottom: 2px solid var(--black);
    }
    
    .modal-details {
        padding: 30px 25px;
    }
    
    .modal-details h2 {
        font-size: 24px;
    }
    
    .modal-price {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 100vh;
        margin-top: 0;
    }

    .logo h1 {
        font-size: 22px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== Products Slider ===== */
.products-slider-wrapper {
    position: relative;
    margin-top: 30px;
}

.products-slider {
    position: relative;
    overflow: hidden;
}

.products-slide {
    display: none;
}

.products-slide.active {
    display: block;
}

.products-slide.empty-slide {
    display: none !important;
}

.products-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
}

.products-slider-btn {
    width: 50px;
    height: 50px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.products-slider-btn:hover:not(:disabled) {
    background: var(--gray);
    transform: scale(1.1);
}

.products-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.products-slider-btn.first-last {
    width: 45px;
    height: 45px;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .products-slider-btn.first-last {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
}

.products-slider-indicator {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    padding: 10px 20px;
    background: var(--gray-light);
    border-radius: 25px;
    min-width: 80px;
    text-align: center;
}

.current-slide {
    color: var(--black);
    font-weight: 700;
}

.total-slides {
    color: var(--gray-medium);
}

@media (max-width: 768px) {
    .products-slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .products-slider-indicator {
        font-size: 16px;
        padding: 8px 16px;
    }
    
    .products-slider-nav {
        gap: 15px;
        margin-top: 30px;
    }
}