@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #00C3FF;
    --primary-blue: #0099CC;
    --cyan-light: #66D9FF;
    --cyan-lighter: #B3EBFF;
    --white: #ffffff;
    --off-white: #F8FAFB;
    --light-gray: #F0F4F8;
    --gray: #E1E8ED;
    --medium-gray: #8B99A6;
    --dark-text: #1A202C;
    --body-text: #2D3748;
    --accent-glow: rgba(0, 195, 255, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--body-text);
    line-height: 1.7;
    overflow-x: hidden;
}




/* Products Section */
.products-section {
    padding: 6rem 2rem;
    background: var(--off-white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-items: center;
    padding: 0 1rem;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-cyan);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 195, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.product-badge.featured {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

/* Product Image */
.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(1deg);
}

/* Product Content */
.product-content {
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Product Name */
.product-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

/* Product Description */
.product-desc {
    color: var(--body-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 50px;
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.feature-tag {
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.1), rgba(0, 195, 255, 0.05));
    color: var(--primary-cyan);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(0, 195, 255, 0.25);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-cyan);
    color: var(--white);
    border-color: var(--primary-cyan);
    transform: translateY(-2px);
}


/* Browse Section */
.browse-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.browse-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wave-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
}

.wave-pattern::before,
.wave-pattern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: wave 15s infinite linear;
}

.wave-pattern::after {
    animation: wave 20s infinite linear reverse;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modalFade 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

@keyframes modalFade {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-blue));
    border-radius: 50px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

.modal-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 0;
}

.modal-content img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.modal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

.modal-content p {
    color: var(--body-text);
    line-height: 1.7;
}

.modal-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.modal-desc {
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.modal-specs,
.modal-features {
    margin-bottom: 1.5rem;
}

.modal-specs h3,
.modal-features h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.modal-specs ul,
.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-specs li,
.modal-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--body-text);
    border-bottom: 1px solid var(--gray);
    font-size: 0.9rem;
}

.modal-specs li::before,
.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 700;
}

/* ================================
   CONTACT BUTTON (modal)
================================ */

.modal-info a {
    display: block;
    text-decoration: none;
    margin-top: 1.2rem;
}

.cta-button.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.6rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 195, 255, 0.35);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 195, 255, 0.5);
}

/* Close button */
.close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    color: var(--dark-text);
    background: var(--white);
    border: none;
    border-radius: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: rotate(90deg);
}

/* ================================
   BACK HOME BUTTON
================================ */

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: var(--white);
    color: var(--primary-cyan);
    border: 2px solid var(--gray);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.back-home-btn:hover {
    border-color: var(--primary-cyan);
    background: var(--primary-cyan);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(0, 195, 255, 0.3);
    transform: translateX(-3px);
}

/* ================================
   PRODUCTS PAGE LAYOUT
================================ */

body {
    background: var(--off-white);
}

.products-page {
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.products-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.products-page .page-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
}

/* ================================
   FILTER BAR
================================ */

/* Ensure dropdowns always sit above everything, even empty grids */
.custom-select-wrapper {
    position: relative;
    z-index: 10;
}

.custom-select-wrapper:has(.custom-select.open) {
    z-index: 1000;
}

.custom-options {
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 0;
    width: 100%;
    background: white; /* make sure it has a solid background */
}

.filter-bar {
    background: var(--white);
    padding: 1.6rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 195, 255, 0.08), var(--shadow-md);
    border: 2px solid transparent;
    background-clip: padding-box;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.filter-bar:hover {
    box-shadow: 0 8px 32px rgba(0, 195, 255, 0.15), var(--shadow-lg);
    border-color: rgba(0, 195, 255, 0.2);
}

.filter-bar input,
.filter-bar select {
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    border: 2px solid var(--gray);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--white);
    color: var(--dark-text);
    transition: all 0.3s ease;
    min-width: 200px;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    letter-spacing: 0.01em;
}

.filter-bar select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300C3FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.8rem;
    cursor: pointer;
    color: var(--body-text);
}

.filter-bar select option {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--dark-text);
    background: var(--white);
    padding: 0.5rem;
}

.filter-bar input::placeholder {
    color: var(--medium-gray);
    font-weight: 400;
    font-style: italic;
}

.filter-bar input:hover,
.filter-bar select:hover {
    border-color: var(--cyan-light);
    box-shadow: 0 4px 14px rgba(0, 195, 255, 0.1);
}

.filter-bar input:focus,
.filter-bar select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 195, 255, 0.1), 0 4px 14px rgba(0, 195, 255, 0.12);
    transform: translateY(-1px);
}

.filter-bar button {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 195, 255, 0.35);
}

.filter-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 195, 255, 0.5);
}

.filter-bar button:active {
    transform: translateY(0);
}

/* ================================
   CUSTOM DROPDOWN
================================ */

.custom-select-wrapper {
    position: relative;
    min-width: 200px;
}

.custom-select {
    position: relative;
    user-select: none;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.2rem;
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-text);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.custom-select__trigger:hover {
    border-color: var(--cyan-light);
    box-shadow: 0 4px 14px rgba(0,195,255,0.1);
}

.custom-select.open .custom-select__trigger {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0,195,255,0.1);
    border-radius: 14px 14px 0 0;
}

.custom-select__trigger svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.custom-select.open .custom-select__trigger svg {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--primary-cyan);
    border-top: none;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 12px 32px rgba(0,195,255,0.12), 0 4px 16px rgba(0,0,0,0.08);
    z-index: 999;
    overflow: hidden;
    display: none;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.custom-select.open .custom-options {
    display: block;
}

.custom-option {
    display: block;
    padding: 0.75rem 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--body-text);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--light-gray);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: linear-gradient(90deg, rgba(0,195,255,0.08), transparent);
    color: var(--primary-cyan);
    padding-left: 1.6rem;
    font-weight: 500;
}

.custom-option.selected {
    background: linear-gradient(90deg, rgba(0,195,255,0.12), transparent);
    color: var(--primary-cyan);
    font-weight: 600;
}

.custom-option.selected::before {
    content: '✓ ';
    font-weight: 700;
}

/* ================================
   GRID SPACING
================================ */

.products-grid {
    margin-top: 2rem;
}

/* ================================
   PAGINATION
================================ */

.pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination a {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: var(--dark-text);
    border: 2px solid var(--gray);
    background: var(--white);
    transition: all 0.25s ease;
}

.pagination a:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transform: translateY(-2px);
}

.pagination a.active {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: var(--white);
    border-color: transparent;
}

/* ================================
   MOBILE NAVIGATION FIXES
================================ */

@media (max-width: 900px) {

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }

    .mobile-menu-btn span {
        width: 28px;
        height: 3px;
        background: var(--dark-text);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--dark-text);
        text-align: center;
    }

    body.menu-open {
        overflow: hidden;
    }

    .products-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .products-page h1 {
        font-size: 2.2rem;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-bar input,
    .filter-bar select,
    .filter-bar button,
    .custom-select-wrapper {
        width: 100%;
        min-width: unset;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        padding: 0;
    }

    .product-card {
        max-width: 100%;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .modal-content {
        max-height: 95vh;
        overflow-y: auto;
    }
}

@media (max-width: 600px) {

    .products-section {
        padding: 4rem 1rem;
    }

    .products-page {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .products-page h1 {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 100%;
    }

    .product-image {
        height: 200px;
    }

    .product-name {
        font-size: 1.2rem;
    }

    .pagination {
        gap: 0.3rem;
    }

    .pagination a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .modal-content {
        border-radius: 16px;
    }

    .modal-content h2 {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 1.2rem;
        gap: 1rem;
    }

    .browse-section {
        padding: 4rem 0;
    }
}
/* ================================
   IMAGE LIGHTBOX
================================ */

#imageLightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

#imageLightbox.active {
    display: flex;
}

#imageLightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    margin-bottom: 0;
    animation: modalFade 0.3s ease;
}

#lightboxClose {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxClose:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: rotate(90deg);
}

.lightbox-trigger {
    cursor: zoom-in !important;
}
/* ================================
   MODAL CAROUSEL
================================ */

.modal-carousel {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
}

.carousel-img {
    display: none;
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    cursor: zoom-in;
    transition: opacity 0.2s ease;
    margin: 0;
}

.carousel-img.active {
    display: block;
}

.carousel-img:hover {
    opacity: 0.92;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    transition: all 0.2s ease;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--primary-cyan);
    color: var(--white);
}

.carousel-btn.prev { left: 0.5rem; }
.carousel-btn.next { right: 0.5rem; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.6rem;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background: var(--primary-cyan);
    transform: scale(1.3);
}