﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

:root {
    --poppins: 'Poppins', sans-serif;
    --lato: 'Lato', sans-serif;
    --light: #F9F9F9;
    --blue: #3C91E6;
    --light-blue: #CFE8FF;
    --grey: #eee;
    --dark-grey: #AAAAAA;
    --dark: #342E37;
    --red: #DB504A;
    --yellow: #FFCE26;
    --light-yellow: #FFF2C6;
    --orange: #FD7238;
    --light-orange: #FFE0D3;
    --white: #fff;
    --gold: #ff890a;
    --dark-bg: #0a0a0f;
    --light-bg: #ffffff;
    --card-bg: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #eeeeee;
}

body.dark {
    --light: #0a0a0f;
    --grey: #13131a;
    --dark: #FBFBFB;
    --dark-bg: #0a0a0f;
    --light-bg: #1a1a24;
    --card-bg: #1a1a24;
    --text-color: #ffffff;
    --text-light: #aaaaaa;
    --border-color: #2a2a35;
}

body {
    background: var(--light-bg) !important;
    color: var(--text-color);
    font-family: var(--lato);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 12px;
    right: 20px;
    z-index: 1001;
}

    .theme-toggle button {
        background: var(--gold);
        color: var(--dark);
        border: none;
        width: 35px;
        margin-top: 9px;
        height: 35px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s;
    }

        .theme-toggle button:hover {
            transform: rotate(30deg);
        }

/* Header & Navigation */
.header {
    background: var(--card-bg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
}

.logo h1 {
    font-family: var(--poppins);
    font-size: 28px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .tagline {
    font-size: 12px;
    color: var(--text-light);
    margin-top: -5px;
}

/* Mega Menu */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold);
    }

.mega-menu .mega-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 800px;
    background: var(--card-bg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.mega-menu:hover .mega-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.mega-col h4 {
    color: var(--gold);
    font-family: var(--poppins);
    margin-bottom: 15px;
    font-size: 16px;
}

.mega-list li {
    margin-bottom: 8px;
}

.mega-list a {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

    .mega-list a:hover {
        color: var(--gold);
    }



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-item .remove {
        position: absolute;
        top: 5px;
        right: 5px;
        background: var(--red);
        color: white;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .gallery-item:hover .remove {
        opacity: 1;
    }

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-icon {
    color: var(--text-color);
    font-size: 18px;
    position: relative;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

    .nav-icon:hover {
        color: var(--gold);
    }

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-color);
        transition: 0.3s;
    }

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 50%);
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    font-size: 18px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    background: var(--dark-bg);
    color: var(--text-color);
    outline: none;
}

.search-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

/* ===== Banner Section ===== */
.banner-section {
    width: 100%;
    background: #0b0b15;
}

/* Owl Wrapper */
#mainCarousel {
    width: 100%;
}

    /* Each Slide */
    #mainCarousel .item {
        position: relative;
        width: 100%;
        height: 520px;
        overflow: hidden;
        border-radius: 20px;
    }

        /* Background Image */
        #mainCarousel .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.05);
            transition: transform 6s ease;
        }

/* Zoom animation on active slide */
.owl-item.active .item img {
    transform: scale(1.15);
}

/* Dark overlay */
#mainCarousel .item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
}

/* Text content */
.carousel-content {
    position: absolute;
    bottom: 128px;
    left: 180px;
    z-index: 5;
    max-width: 500px;
    color: white;
    animation: slideUp 1s ease;
}

    .carousel-content h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .carousel-content p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 25px;
        opacity: .9;
    }

    /* Button */
    .carousel-content .btn-primary {
        padding: 14px 40px;
        background: #4f46e5;
        color: #fff;
        border: none;
        border-radius: 50px;
        font-size: 16px;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(79,70,229,.5);
        transition: .3s ease;
    }

        .carousel-content .btn-primary:hover {
            background: #6d5dfc;
            transform: scale(1.1);
        }

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Navigation Arrows */
#mainCarousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

    #mainCarousel .owl-nav button {
        pointer-events: all;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(255,255,255,.15) !important;
        color: #fff !important;
        font-size: 22px !important;
        border: none !important;
        margin: 0 20px;
        backdrop-filter: blur(10px);
        transition: .3s ease;
    }

        #mainCarousel .owl-nav button span {
            height: 33px;
        }

        #mainCarousel .owl-nav button:hover {
            background: #4f46e5 !important;
        }


#mainCarousel .owl-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
}

#mainCarousel .owl-dot span {
    width: 14px;
    height: 14px;
    background: #aaa !important;
    margin: 5px;
    display: inline-block;
    border-radius: 50%;
    transition: .3s;
    display: none;
}

#mainCarousel .owl-dot.active span {
    background: #4f46e5 !important;
    width: 30px;
    border-radius: 20px;
}

/* Responsive */
@media(max-width:768px) {
    #mainCarousel .item {
        height: 400px;
    }

    .carousel-content {
        left: 25px;
        bottom: 70px;
    }

        .carousel-content h2 {
            font-size: 28px;
        }

        .carousel-content p {
            font-size: 15px;
        }
}

.upload-box {
    border: 2px dashed var(--border-color);
    border-radius: 15px;
    padding: 40px;
    cursor: pointer;
    transition: all 0.3s;
    max-width: 500px;
    margin: 0 auto;
}

    .upload-box:hover {
        border-color: var(--gold);
        background: rgba(212, 175, 55, 0.05);
    }

    .upload-box i {
        font-size: 48px;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .upload-box p {
        color: var(--text-light);
        font-size: 18px;
    }

/* Owl Navigation Custom */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.owl-prev,
.owl-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border-radius: 50% !important;
    color: white !important;
    font-size: 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s !important;
}

    .owl-prev:hover,
    .owl-next:hover {
        background: var(--gold) !important;
        color: var(--dark) !important;
    }

.owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.owl-dot {
    width: 12px !important;
    height: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
}

    .owl-dot.active {
        background: var(--gold) !important;
    }

/* Categories */
.categories-section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--poppins);
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--dark);
}

.category-card h3 {
    font-family: var(--poppins);
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.category-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px dashed var(--border-color);
}

    .category-card ul li:last-child {
        border-bottom: none;
    }

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a35 100%);
}

.offer-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.badge-discount {
    font-size: 24px;
    background: var(--dark);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 30px;
}

.offer-content h2 {
    font-family: var(--poppins);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.offer-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.price-section {
    margin-bottom: 30px;
}

.price-label {
    color: var(--text-light);
    font-size: 14px;
    margin-right: 10px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--poppins);
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-secondary {
    background: var(--dark);
    color: var(--gold);
}

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

/* Watch Display */
.watch-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.watch-face {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 50%;
    border: 15px solid var(--gold);
    position: relative;
}

.watch-hands {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hour-hand,
.minute-hand,
.second-hand {
    position: absolute;
    background: var(--white);
    border-radius: 10px;
    transform-origin: bottom center;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.hour-hand {
    width: 6px;
    height: 80px;
    background: var(--gold);
}

.minute-hand {
    width: 4px;
    height: 100px;
}

.second-hand {
    width: 2px;
    height: 110px;
    background: var(--red);
}

/* Products Carousel */
.products-section {
    padding: 80px 0;
}

#productsCarousel .product-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

    .product-info h3 {
        font-family: var(--poppins);
        margin-bottom: 10px;
        color: var(--text-color);
    }

    .product-info .price {
        font-size: 24px;
        color: var(--gold);
        font-weight: 700;
        margin-bottom: 15px;
    }

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: var(--light);
}

.newsletter-box {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

    .newsletter-box i {
        font-size: 48px;
        color: var(--gold);
        margin-bottom: 20px;
    }

    .newsletter-box h2 {
        font-family: var(--poppins);
        font-size: 32px;
        margin-bottom: 15px;
        color: var(--text-color);
    }

    .newsletter-box p {
        color: var(--text-light);
        margin-bottom: 30px;
    }

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-box input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: var(--light-bg);
    color: var(--text-color);
    font-size: 16px;
    outline: none;
}

.newsletter-box button {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--poppins);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

    .newsletter-box button:hover {
        background: var(--dark);
        color: var(--gold);
    }

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    font-family: var(--poppins);
    margin-bottom: 20px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4 {
    font-size: 18px;
}

.footer-col p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        transition: all 0.3s;
    }

        .social-links a:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-3px);
        }

.footer-col ul li {
    margin-bottom: 12px;
}

    .footer-col ul li a {
        color: var(--text-light);
        transition: color 0.3s;
    }

        .footer-col ul li a:hover {
            color: var(--gold);
        }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive */


@media (max-width: 992px) {
    .mega-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .uploaded-gallery {
        grid-column: span 3;
    }

    .offer-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
    }

    .mega-menu .mega-content {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 20px 0 0 0;
    }
}

@media (max-width: 768px) {
    .owl-carousel .carousel-item {
        height: 400px;
    }

    .carousel-content h2 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .nav-icon {
        font-size: 12px;
    }

    .theme-toggle button {
        margin-top: 15px;
        width: 22px;
        height: 22px;
        font-size: 14px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .carousel-content {
        padding: 20px;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .price {
        font-size: 36px;
    }
}

/* Animations */
@keyframes watchHands {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

.second-hand {
    animation: watchHands 60s linear infinite;
}

.minute-hand {
    animation: watchHands 3600s linear infinite;
}

.hour-hand {
    animation: watchHands 43200s linear infinite;
}



@media (max-width: 992px) {
    .theme-toggle {
        position: fixed;
        top: 8px;
        right: 52px;
        z-index: 1001;
    }

    .navbar {
        padding: 20px 10px;
    }

    #mainCarousel .owl-nav {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hamburger {
        display: flex;
        z-index: 1200;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 25px;
        transition: 0.4s ease;
        box-shadow: -20px 0 50px rgba(0,0,0,0.3);
        overflow-y: auto;
        z-index: 1100;
    }

        .nav-menu.show {
            right: 0;
        }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        justify-content: space-between;
        width: 100%;
    }

    /* Mega Menu in mobile */
    .mega-menu .mega-content {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 15px 0;
    }

    .mega-menu.open .mega-content {
        display: block;
    }

    .mega-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .mega-col h4 {
        font-size: 14px;
    }

    .mega-list a {
        font-size: 13px;
    }

    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* product slider desing start here */

/* PRODUCT SLIDER */
.products-section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--poppins);
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--gold);
}

/* Card */
.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.4s;
    border: 1px solid var(--border-color);
}

    .product-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    }

/* Image */
.product-img {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg, var(--grey), var(--light));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-img img {
        max-height: 200px;
        transition: 0.5s;
    }

.product-card:hover .product-img img {
    transform: scale(1.1) rotate(-3deg);
}

/* Badge */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
}

    .badge.hot {
        background: var(--red);
        color: #fff;
    }

/* Info */
.product-info {
    padding: 20px;
    text-align: center;
}

    .product-info h3 {
        font-family: var(--poppins);
        font-size: 18px;
        margin-bottom: 5px;
    }

    .product-info p {
        color: var(--text-light);
        font-size: 14px;
    }

/* Price & Button */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.cart-btn {
    /* width: 45px; */
    /* height: 45px; */
    background: var(--gold);
    color: #ffffff;
    border: none;
    /* border-radius: 50%; */
    cursor: pointer;
    transition: 0.3s;
    padding: 5px 12px;
    border-radius: 20px;
    margin-top: 10px;
    display: block;
}

    .cart-btn:hover {
        background: var(--dark);
        color: var(--gold);
        transform: scale(1.1);
    }

.old-price {
    color: #888;
    font-size: 16px;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price {
    .old-price {
        color: #888;
        font-size: 16px;
        text-decoration: line-through;
        font-weight: 500;
    }

    .old-price {
        color: #888;
        font-size: 16px;
        text-decoration: line-through;
        font-weight: 500;
    }

    .new-price {
        color: #ff890a;
        font-size: 20px;
        font-weight: 700;
    }
}

/* Owl spacing */
#productsCarousel .owl-stage-outer {
    padding: 30px 0;
}
/* Search box in navbar */
.search-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f0f0f0;
    border-radius: 25px;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.dark .search-wrapper {
    background: #333;
}

.search-wrapper:focus-within {
    box-shadow: 0 0 0 2px #007bff;
}

.search-box {
    border: none;
    background: transparent;
    padding: 5px 10px;
    width: 150px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.dark .search-box {
    color: #fff;
}

.search-box::placeholder {
    color: #999;
}

/* Highlight styles */
.search-highlight {
    background-color: #ffeb3b !important;
    padding: 2px 4px;
    border-radius: 2px;
    color: #000 !important;
}

.search-highlight-current {
    background-color: #ff9800 !important;
    padding: 2px 4px;
    border-radius: 2px;
    color: #000 !important;
    outline: 2px solid #ff5722;
}

/* No results message */
.no-results-msg {
    color: #ff4444;
    font-size: 12px;
    padding: 3px 8px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    display: none;
    white-space: nowrap;
}

.dark .no-results-msg {
    background: #333;
    color: #ff6666;
}

/* Match counter */
.match-counter {
    font-size: 12px;
    color: #666;
    padding: 0 5px;
    min-width: 35px;
    text-align: center;
}

.dark .match-counter {
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .search-box {
        width: 80px;
    }

    .match-counter {
        display: none;
    }
}

@media (max-width: 576px) {
    .search-box {
        width: 60px;
        font-size: 12px;
    }

    .search-wrapper {
        padding: 3px 8px;
    }
}