:root {
    --bg-color: #05070a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --accent-primary: #00f0ff;
    --accent-secondary: #ff00c8;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    --glow-cyan: rgba(0, 240, 255, 0.3);
    --glow-purple: rgba(255, 0, 200, 0.3);
    --soft-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

html,
body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

/* Background Blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
    opacity: 0.4;
}

.blob {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -5%;
    right: -5%;
    animation-delay: -5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 0.6rem 0 !important;
    background: rgba(10, 11, 15, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: none !important;
}

.navbar.scrolled {
    /* No changes on scroll */
}

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

.brand-logo {
    height: 32px;
    filter: invert(1) brightness(100%);
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--glow-cyan);
}

/* Side Drawer Menu */
.side-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: rgba(10, 11, 15, 0.98);
    backdrop-filter: blur(30px);
    z-index: 3000;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 2rem;
    border-right: 1px solid rgba(0, 240, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.side-drawer.active {
    left: 0;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.8);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(5px);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-section {
    margin-bottom: 2.5rem;
}

.drawer-section h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-primary);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.drawer-section a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.8rem 0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    opacity: 0.7;
}

.drawer-section a:hover {
    opacity: 1;
    padding-left: 10px;
    color: var(--accent-primary);
}

.nav-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--accent-primary), #0ea5e9);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px var(--glow-cyan);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px var(--glow-cyan);
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 2rem;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero h1 span {
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-primary);
    opacity: 0.2;
    filter: blur(10px);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

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

/* Category Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 8rem;
}

.cat-card {
    padding: 2.5rem 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px var(--glow-cyan);
}

.cat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Product Grid */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 1rem;
    transition: transform 0.5s;
}

.product-info {
    padding: 0 1.2rem 1.2rem;
}

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

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
}

.buy-btn {
    display: block;
    width: 100%;
    padding: 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.buy-btn:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
}

/* Wholesale Section */
.wholesale-section {
    margin: 10rem 0;
    padding: 5rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(255, 0, 200, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.wholesale-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--glow-purple);
    filter: blur(100px);
    z-index: -1;
}

.wholesale-text h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.wholesale-text h2 span {
    color: var(--accent-secondary);
    text-shadow: 0 0 20px var(--glow-purple);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 8rem 0 4rem;
    border-top: 1px solid var(--border-color);
    margin-top: 10rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 1.2rem;
    color: white;
}

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

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

/* --- Responsive Design --- */

/* Global Mobile Fixes */
img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 1rem;
    overflow: hidden;
}

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        letter-spacing: -2px;
    }

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

    .wholesale-section {
        padding: 3rem;
        gap: 2rem;
    }

    .wholesale-text h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile Phones (Standard) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0.6rem 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.4rem 0 !important;
    }

    .nav-brand img {
        height: 28px !important;
    }

    .nav-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

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

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    footer {
        padding: 3rem 0 5rem !important;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer-col ul li a {
        font-size: 0.8rem;
    }
}

    .hero-btns {
        flex-direction: column;
        gap: 0.8rem !important;
        align-items: stretch;
        max-width: 280px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.8rem;
        margin-bottom: 3.5rem;
    }

    .cat-card {
        padding: 1.2rem 0.5rem;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cat-icon-img {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 0.8rem !important;
    }

    .cat-card h4 {
        font-size: 0.75rem !important;
        letter-spacing: 0.3px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        padding: 0 0.5rem;
    }

    .product-card {
        padding: 0 !important;
        border-radius: 20px !important;
        overflow: hidden;
        background: var(--card-bg);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .product-img {
        aspect-ratio: 1/1 !important;
        height: auto !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        margin-bottom: 0.8rem !important;
    }

    .product-info {
        padding: 0 0.8rem 0.8rem !important;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .product-info h3 {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.4rem !important;
        min-height: 2.3rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-info .product-price {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
        font-weight: 800;
        color: var(--accent-primary);
    }

    .buy-btn {
        margin-top: auto !important;
        font-size: 0.75rem !important;
        padding: 0.7rem !important;
        border-radius: 12px !important;
        width: 100%;
        text-align: center;
    }

    /* Specific overrides removal */
    .related-products .product-grid,
    .related-products .product-card,
    .related-products .product-img {
        /* Inherit from global */
    }

    .wholesale-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        margin: 3rem 0;
        border-radius: 25px;
        gap: 2rem;
    }

    .wholesale-text h2 {
        font-size: 2rem;
    }

    .wholesale-text p {
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
        text-align: left !important;
    }

    .footer-col h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.8rem !important;
    }

    .footer-col a {
        font-size: 0.8rem !important;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .footer-brand p {
        font-size: 0.85rem !important;
        max-width: 100%;
    }

    .footer-brand img {
        height: 30px !important;
        margin: 0;
    }

    footer {
        padding: 3rem 0 2rem !important;
        margin-top: 5rem !important;
    }

    .glass-panel {
        padding: 1.5rem 1rem !important;
        border-radius: 25px !important;
    }

    .product-page-container {
        padding-top: 6rem !important;
    }

    .main-img-container img {
        aspect-ratio: unset !important;
        object-fit: contain !important;
    }

    /* Newsletter section fix */
    section[style*="padding: 5rem 0"] {
        padding: 3rem 0 !important;
    }

    div[style*="padding: 5rem"] {
        padding: 2.5rem 1.5rem !important;
        border-radius: 30px !important;
    }

    div[style*="max-width: 550px"] {
        flex-direction: column;
        gap: 1rem !important;
    }
}

/* Extra Small Phones (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero {
        padding: 3rem 0.5rem !important;
        min-height: auto !important;
    }

    .hero-content {
        padding: 2.5rem 1rem !important;
        border-radius: 25px !important;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        letter-spacing: -1px !important;
        margin-bottom: 1rem !important;
    }

    .hero p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
    }

    .hero-btns {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .hero-btns .nav-btn {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 0.85rem !important;
        min-width: unset !important;
    }

    .product-details-wrapper {
        padding: 1.2rem 0.8rem !important;
        border-radius: 20px !important;
        margin: 0;
    }

    .product-info-column {
        padding: 0 !important;
    }

    .product-info-column nav {
        font-size: 0.7rem !important;
        margin-bottom: 0.5rem !important;
    }

    .product-info-large h1,
    .product-info-column h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
    }

    .product-price {
        font-size: 1.6rem !important;
        margin-bottom: 1.2rem !important;
        gap: 0.5rem !important;
    }

    .product-price span {
        font-size: 0.9rem !important;
    }

    .product-info-column p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }

    .main-img-container img {
        border-radius: 15px !important;
    }

    .product-gallery div[style*="gap: 1rem"] {
        gap: 0.5rem !important;
    }

    .product-gallery img[style*="width: 80px"] {
        width: 60px !important;
        height: 60px !important;
    }

    .product-gallery div[style*="width: 80px"] {
        width: 60px !important;
        height: 60px !important;
        font-size: 0.8rem !important;
    }

    .action-btns {
        gap: 0.8rem !important;
    }

    .action-btns .nav-btn {
        padding: 1rem !important;
        font-size: 0.9rem !important;
        min-width: unset !important;
    }

    .product-tabs div[style*="gap: 3rem"] {
        gap: 1rem !important;
        font-size: 0.85rem !important;
    }

    .product-tabs p,
    .product-tabs li {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .glass-panel[style*="padding: 2rem"] {
        padding: 1.2rem !important;
        border-radius: 15px !important;
    }
}

/* Specific Page Adjustments */
.product-details.glass-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 100%;
}

@media (max-width: 992px) {
    .product-main-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .product-gallery {
        width: 100%;
    }

    .main-img-container {
        position: static !important;
    }

    .product-info-column {
        text-align: left;
    }

    .product-details-wrapper {
        padding: 1.5rem !important;
    }
/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 11, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0;
    z-index: 2500;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s;
    flex: 1;
}

.bottom-nav-item svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.bottom-nav-item.active, .bottom-nav-item:hover {
    color: var(--accent-primary);
}

.bottom-nav-item.active svg, .bottom-nav-item:hover svg {
    filter: drop-shadow(0 0 5px var(--accent-primary));
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-secondary);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    footer {
        padding-bottom: 5rem !important; /* Space for bottom nav */
    }

    .nav-links {
        display: none !important;
    }
}
    .product-tabs {
        margin-top: 3rem;
    }

    .product-tabs div[style*="gap: 3rem"] {
        gap: 1.5rem !important;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .product-info-large h1 {
        font-size: 2.2rem;
    }

    .checkout-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .order-summary {
        position: static !important;
        margin-top: 1rem;
    }

    .form-input {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        border-radius: 12px;
    }
}

.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    box-shadow: var(--soft-shadow);
    max-width: 100%;
}

.form-input {
    width: 100%;
    padding: 1.2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px var(--glow-cyan);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 240, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

@keyframes sweep {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes slide {
    0%, 28% { transform: translateX(0); }
    33%, 61% { transform: translateX(-100%); }
    66%, 94% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* Polished UI Styles */
.cat-card:hover .cat-img-wrapper {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.4);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

.buy-btn-small:hover {
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 0 25px var(--accent-primary);
}

@media (max-width: 768px) {
    .slider-container {
        height: 220px !important;
        border-radius: 20px !important;
    }
}