﻿/* Custom CSS for minor adjustments and styling */
.watch-card {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .watch-card:hover {
        transform: translateY(-5px);
    }

.compare-box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
}

.vs-design {
    font-size: 2rem;
    font-weight: bold;
    color: #ccc;
}

.price-cut {
    text-decoration: line-through;
    color: #888;
}
/* Mobile Navbar Adjustments */
@media (max-width: 767.98px) {
    .navbar-brand img {
        height: 30px;
    }

    .main-search-form {
        width: 100%;
        margin-top: 10px;
    }
}

.bg-dark-shaded {
    background: linear-gradient(to right, #000, #000);
}
.bg-dark {
    --bs-bg-opacity: 1;
    background: linear-gradient(to right, #000, #343a40) !important;
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

    .fixed-header.show {
        transform: translateY(0);
    }

.compare-search-container {
    position: relative;
}
    /* FIX: Reduce the width of the comparison search lists */
    .compare-search-container .list-group {
        max-width: 350px;
        width: 100%;
    }

.bg-light-gray {
    background: linear-gradient(45deg, #d6f5f9, #ebebeb, #cdcdcd); /* A subtle light gray */
    padding: 3rem 0; /* Add some vertical padding for spacing */
}

.bg-light-grays {
    background: linear-gradient(45deg, #d6f5f9, #ebebeb, #cdcdcd); /* A subtle light gray */
    /*padding: 1rem 0; */ /* Add some vertical padding for spacing */
}

.category-img-circle {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #dee2e6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

    .category-img-circle:hover {
        transform: scale(1.05);
    }

.vs-circle {
    background-color: #343a40; /* Dark background color */
    color: #fff; /* White text color */
    width: 50px; /* Adjust size as needed */
    height: 50px;
    border-radius: 50%; /* Makes it a perfect circle */
    display: flex; /* Use flexbox for centering */
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.price-range {
    background: #f9fafb;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.price-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    color: white;
    border-radius: 12px;
    padding: 30px 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .price-card:nth-child(2) {
        background: linear-gradient(135deg, #ff512f, #dd2476);
    }

    .price-card:nth-child(3) {
        background: linear-gradient(135deg, #7b4397, #dc2430);
    }

    .price-card:nth-child(4) {
        background: linear-gradient(135deg, #11998e, #38ef7d);
    }

    .price-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

.price-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}
/* Default grid for desktop */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Horizontal scroll on mobile */
@media (max-width: 768px) {
    .brand-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    /*  .bg-light-grays {
        display: none;
    }*/

    .brand-card {
        flex: 0 0 auto; /* prevents shrinking */
        width: 120px;
        scroll-snap-align: center;
    }

    /* Hide scrollbar but keep scroll functionality */
    .brand-grid::-webkit-scrollbar {
        display: none;
    }

    .brand-grid {
        -ms-overflow-style: none; /* IE/Edge */
        scrollbar-width: none; /* Firefox */
    }
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .brand-card img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border-radius: 50%;
        /*filter: grayscale(100%);*/
        transition: all 0.3s ease;
    }

    .brand-card p {
        margin-top: 8px;
        font-weight: 600;
        color: #333;
    }

    .brand-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }

        .brand-card:hover img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

.view-more-btn {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 114, 255, 0.2);
    text-decoration: none;
}

    .view-more-btn:hover {
        background: linear-gradient(135deg, #0056cc, #0096cc);
        transform: translateY(-3px);
        box-shadow: 0 6px 14px rgba(0, 114, 255, 0.3);
    }

    .view-more-btn:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(0, 114, 255, 0.25);
    }

    .view-more-btn:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 114, 255, 0.4);
    }

.compare-card {
    border-radius: 12px;
    background: #fff;
    transition: 0.3s ease-in-out;
}

    .compare-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

.vs-circle-big {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 22px;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-gradient {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    transition: 0.3s;
}

    .btn-gradient:hover {
        background: linear-gradient(135deg, #0056b3, #0096c7);
        transform: scale(1.05);
    }

.comparison-card {
    background: #fff;
    transition: transform 0.3s ease;
}

    .comparison-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.price-cut {
    text-decoration: line-through;
    color: #888;
    margin-right: 5px;
}

.vs-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* Offer Badge */
.offer-badge {
    background: #ff4757;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 5px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Card Styling */
.watch-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .watch-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* Price Styling */
.price-cut {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

.watch-rectangle {
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

    .watch-rectangle:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.watch-img img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.watch-info h5 {
    font-size: 1rem;
    font-weight: 600;
}

.price-cut {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

.offer-badge {
    background: #ff4757;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 8px;
    border-radius: 5px;
}

#backToTop {
    position: fixed;
    bottom: 30px; /* distance from bottom */
    right: 30px; /* distance from right */
    display: none; /* hidden by default */
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    #backToTop.show {
        display: inline-block;
        opacity: 1;
    }

    #backToTop:hover {
        background-color: #555; /* hover effect */
    }

.sticky-top {
    position: sticky;
    top: 20px; /* Adjust as needed */
    height: 100vh;
    overflow-y: auto;
}
/* Vendor icons for the watch list */
.vendor-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
/* General card styling for watch list items */
.card-body .price-cut {
    text-decoration: line-through;
    color: #6c757d; /* Gray color for cut price */
}
/* Font Awesome icons for star ratings */
.rating .fa-star,
.rating .fa-star-half-alt,
.rating .far-star {
    color: #ffc107; /* Bootstrap's warning color for stars */
}
/* Ensure collapsible toggles have pointer cursor */
.btn-link {
    cursor: pointer;
}
/* Style the brand list */
.brand-list {
    max-height: 200px;
    overflow-y: auto;
}

.category-list-item {
    border-bottom: 1px solid #e9ecef; /* A light gray line under each item */
    padding-bottom: 0.5rem; /* Spacing between the text and the line */
    margin-bottom: 0.5rem; /* Spacing between the items */
}

    /* Remove the line from the last item to keep it clean */
    .category-list-item:last-child {
        border-bottom: none;
    }

.brand-list-item {
    border-bottom: 1px solid #e9ecef; /* Light gray line */
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

    /* Remove the line from the last item */
    .brand-list-item:last-child {
        border-bottom: none;
    }

/* Adjust the list container to avoid extra padding */
.brand-list {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 15px; /* Add some padding for scrollbar */
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumbnail-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
}

    .thumbnail-gallery img:hover,
    .thumbnail-gallery img.active {
        transform: scale(1.05);
        border-color: #007bff; /* Highlight active thumbnail */
    }

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.product-price {
    font-size: 2rem;
    color: #28a745;
    font-weight: 600;
}

.btn-add-to-cart {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
    border-radius: 50rem;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .color-option.active {
        border-color: #000;
        transform: scale(1.2);
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }

:root {
    --bs-primary: #007bff;
    --bs-success: #28a745;
    --bs-dark: #343a40;
    --bs-light: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bs-light);
    overflow-x: hidden;
}

.product-card, .review-card, .feature-card {
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Image Gallery & Zoomer */
.img-container {
    position: relative;
    cursor: zoom-in;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.zoomed-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.img-container:hover .zoomed-image {
    opacity: 1;
}

.thumbnail-gallery img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
}

    .thumbnail-gallery img:hover,
    .thumbnail-gallery img.active {
        transform: scale(1.05);
        border-color: var(--bs-primary);
    }

/* Buttons and Elements */
.btn-custom {
    border-radius: 50rem;
    font-weight: 600;
}

.btn-buy-now {
    background-color: #785b31;
    border-color: #f4ca61;
    font-size: 1.2rem;
    padding: 0.75rem 2rem;
}

.mrp {
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    font-size:14px;
}

.price {
    font-size: 1rem;
    color: var(--bs-dark);
    font-weight: 700;
}

.discount-tag {
    background-color: #ffc107;
    color: var(--bs-dark);
    font-weight: bold;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    margin-left: 0.5rem;
}

/* Review and Specification Sections */
.review-card {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.review-rating i {
    color: #ffc107;
}

.spec-table th, .spec-table td {
    padding: 0.75rem;
}

.spec-table th {
    font-weight: 600;
    background-color: #f1f1f1;
    width: 40%;
    border-right: 1px solid #dee2e6;
}

.spec-table td {
    background-color: #fff;
}

.icon {
    width: 20px;
    height: 20px;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

    .section-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background-color: var(--bs-primary);
        border-radius: 5px;
    }
/* GLASS MODAL */
.glass-login {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.25);
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* CLOSE BUTTON */
.glass-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    opacity: 0.7;
}

    .glass-close:hover {
        opacity: 1;
    }

/* HEADER */
.login-header h5 {
    font-weight: 700;
    margin-top: 8px;
}

.login-header p {
    font-size: 14px;
    color: #555;
}

.login-icon {
    font-size: 34px;
}

/* GOOGLE BUTTON */
.google-glass-btn {
    margin-top: 18px;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    border: 1px solid #ddd;
    padding: 12px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.25s ease;
}

    .google-glass-btn img {
        width: 20px;
    }

    .google-glass-btn:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        transform: translateY(-2px);
    }

.compare-modal {
    border-radius: 14px;
}

.compare-slot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* SLOT COMMON */
.compare-slot {
    border: 2px dashed #ced4da;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    background: #f8f9fa;
    transition: 0.25s;
}

    /* FILLED SLOT */
    .compare-slot.filled {
        border: 2px solid #0d6efd;
        background: #fff;
        cursor: default;
    }

        .compare-slot.filled img {
            max-height: 80px;
            object-fit: contain;
        }

        .compare-slot.filled h6 {
            margin-top: 8px;
            font-size: 14px;
        }

        .compare-slot.filled .price {
            color: #0d6efd;
            font-weight: 600;
        }

    /* EMPTY SLOT */
    .compare-slot.empty span {
        font-size: 32px;
        color: #6c757d;
    }

    .compare-slot.empty p {
        font-size: 14px;
        margin: 0;
        color: #6c757d;
    }

    .compare-slot.empty:hover {
        border-color: #0d6efd;
        background: #eef4ff;
    }

/* MOBILE */
@media (max-width: 768px) {
    .compare-slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.compare-slot {
    position: relative;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    background: #fff;
}

    /* IMAGE */
    .compare-slot img {
        max-height: 80px;
        object-fit: contain;
        margin-bottom: 6px;
    }

/* DISCOUNT BADGE */
.discount-badge-2 {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 5;
}

/* PRICE BOX */
.price-box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}

    /* MRP */
    .price-box .mrp {
        font-size: 13px;
        color: #6c757d;
        text-decoration: line-through;
    }

    /* SELL PRICE */
    .price-box .sell-price {
        font-size: 16px;
        font-weight: 700;
        color: #0d6efd;
    }

/* MOBILE */
@media (max-width: 576px) {
    .price-box .sell-price {
        font-size: 15px;
    }

    .discount-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
}
/* GRID TABLE */
.compare-grid {
    display: grid;
    grid-template-columns: 220px repeat(4, 1fr);
    border: 1px solid #dee2e6;
}

.discount-ribbon {
    position: absolute;
    top: 0;
    left: -65px;
    background: #dc3545;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    z-index: 2;
    border-bottom-right-radius: 8px;
    text-transform: uppercase;
}

.compare-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}


/* CELLS */
.compare-cell {
    padding: 15px;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    background: #fff;
}

    .compare-cell:last-child {
        border-right: none;
    }

/* WATCH HEADER CARD */
.watch-header img {
    max-height: 120px;
    object-fit: contain;
}

.img-wrapper {
    position: relative;
    display: inline-block;
}

.price-cut {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

/* ACTION COLUMN */
.action-box button {
    width: 100%;
    margin-bottom: 8px;
}

/* SPEC TITLE */
.spec-title {
    font-weight: 600;
    background: #f1f3f5;
}


.mobile-compare {
    padding: 10px;
}

/* WATCH ROW (HORIZONTAL SCROLL) */
.mobile-watch-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

    .mobile-watch-row::-webkit-scrollbar {
        height: 6px;
    }

    .mobile-watch-row::-webkit-scrollbar-thumb {
        background: #ced4da;
        border-radius: 10px;
    }

.mobile-watch-card {
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    position: relative;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

    /* IMAGE */
    .mobile-watch-card img {
        max-height: 70px;
        width: 100%;
        object-fit: contain;
    }

    /* TITLE */
    .mobile-watch-card h6 {
        font-size: 11px;
        line-height: 1.2;
        margin: 6px 0 2px;
    }

    /* PRICE */
    .mobile-watch-card .price-cut {
        font-size: 10px;
        display: block;
    }

    .mobile-watch-card strong {
        font-size: 12px;
        color: #0d6efd;
    }

    /* BUY BUTTON */
    .mobile-watch-card .btn {
        font-size: 10px;
        padding: 4px 0;
    }


/* DISCOUNT BADGE */

/* COMMON ACTIONS */
.mobile-actions {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

    .mobile-actions button {
        min-width: 90px;
    }

/* SPEC SECTION */
.mobile-spec {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* SPEC HEADING */
.spec-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #343a40;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 4px;
}

/* SPEC ROW (4 COLUMNS) */
.spec-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    text-align: center;
    font-size: 13px;
}

    .spec-row span {
        background: #f8f9fa;
        padding: 6px 4px;
        border-radius: 6px;
        font-weight: 500;
    }

/* RESPONSIVE SAFETY */
@media (max-width: 360px) {
    .mobile-watch-card {
        min-width: 150px;
    }

    .spec-row {
        font-size: 12px;
    }
}
/* SWITCH VIEW */
@media (max-width: 991px) {
    .compare-grid {
        display: none;
    }

    .mobile-compare {
        display: block;
    }
}

.discount-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #dc3545;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-bottom-right-radius: 6px;
}
.discount-badge-wishlist {
    font-size: 14px;
}
/* ================= ADD WATCH CARD ================= */

.add-watch-card {
    border: 2px dashed #adb5bd;
    background: #f8f9fa;
    box-shadow: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .add-watch-card:hover {
        background: #e9ecef;
        border-color: #0d6efd;
    }

.add-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.add-watch-card h6 {
    font-size: 12px;
    font-weight: 600;
}

.add-watch-card p {
    font-size: 11px;
    text-align: center;
}
/* ================= DESKTOP ADD WATCH ================= */

.add-watch-desktop {
    background: #f8f9fa;
    border: 2px dashed #adb5bd;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .add-watch-desktop:hover {
        background: #e9ecef;
        border-color: #0d6efd;
    }

.add-watch-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.add-icon-desktop {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.add-watch-desktop h6 {
    font-weight: 600;
}

.add-watch-desktop p {
    font-size: 13px;
    text-align: center;
}
/* ================= AUTOCOMPLETE ================= */

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 260px;
    overflow-y: auto;
    z-index: 1055;
    display: none;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

    .autocomplete-item:last-child {
        border-bottom: none;
    }

    .autocomplete-item:hover {
        background: #f8f9fa;
    }

    .autocomplete-item img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-right: 10px;
    }

.autocomplete-info {
    flex: 1;
}

.autocomplete-name {
    font-size: 14px;
    font-weight: 600;
}

.autocomplete-price {
    font-size: 13px;
    color: #0d6efd;
}
/*blog list*/
/* BLOG HERO */
.blog-hero {
    background: #f8f9fa;
    padding: 20px 0 0;
    position: relative;
    overflow: hidden;
}

.blog-hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEXT */
.blog-hero-content {
    max-width: 520px;
}

.blog-tag {
    display: inline-block;
    background: #e7f1ff;
    color: #0d6efd;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.blog-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 14px 0 12px;
    color: #212529;
}

.blog-hero-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* RIGHT VISUAL */
.blog-hero-visual {
    position: relative;
    width: 220px;
    height: 220px;
}

    .blog-hero-visual .circle {
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(13,110,253,0.1);
        top: 0;
        right: 0;
    }

        .blog-hero-visual .circle.small {
            width: 110px;
            height: 110px;
            background: rgba(13,110,253,0.15);
            bottom: 0;
            left: 0;
        }

/* MOBILE */
@media (max-width: 768px) {
    .blog-hero-wrap {
        flex-direction: column;
        text-align: center;
    }

    .blog-hero-visual {
        display: none;
    }

    .blog-hero-content h1 {
        font-size: 36px;
    }
}

/* BLOG HEADER */
.blog-header {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

    .blog-header h1 {
        font-size: 42px;
        font-weight: 800;
    }

    .blog-header p {
        max-width: 600px;
        margin: 12px auto 0;
        font-size: 16px;
        opacity: 0.9;
    }

/* BLOG CARD */
.blog-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .blog-card:hover {
        transform: translateY(-4px);
    }

/* CONTENT */
.blog-content {
    flex: 1;
}

    .blog-content h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .blog-content p {
        color: #555;
        font-size: 15px;
        line-height: 1.7;
    }

/* IMAGE */
.blog-image {
    width: 260px;
    flex-shrink: 0;
}

    .blog-image img {
        width: 100%;
        height: 170px;
        object-fit: cover;
        border-radius: 12px;
    }

/* READ MORE BUTTON */
.read-more-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    background: #0d6efd;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

    .read-more-btn:hover {
        background: #0b5ed7;
        color: #fff;
    }

/* MOBILE */
@media (max-width: 768px) {
    .blog-card {
        flex-direction: column-reverse;
        text-align: center;
    }

    .blog-image {
        width: 100%;
    }

        .blog-image img {
            height: 200px;
        }

    .blog-header h1 {
        font-size: 32px;
    }
}


/*blog details*/
.blog-article {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* COVER IMAGE */
.blog-cover {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 25px;
}

/* CONTENT */
.blog-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
}

.blog-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-content ul {
    padding-left: 18px;
}

.blog-content li {
    margin-bottom: 8px;
}

/* BLOCKQUOTE */
.blog-content blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 16px;
    font-style: italic;
    color: #555;
    margin: 25px 0;
}

/* SIDEBAR */
.blog-sidebar {
    position: sticky;
    top: 90px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sidebar-title {
    font-weight: 700;
    margin-bottom: 18px;
}

/* SIDEBAR BLOG */
.sidebar-blog {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 16px;
}

    .sidebar-blog img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 10px;
    }

    .sidebar-blog h6 {
        font-size: 14px;
        margin-bottom: 4px;
        font-weight: 600;
    }

    .sidebar-blog span {
        font-size: 12px;
        color: #6c757d;
    }

    .sidebar-blog:hover h6 {
        color: #0d6efd;
    }

/* MOBILE */
@media (max-width: 992px) {
    .blog-sidebar {
        position: static;
        margin-top: 30px;
    }

    .blog-cover {
        height: 240px;
    }

    .blog-title {
        font-size: 28px;
    }
}
/*contact us*/

/* SECTION BG */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa, #eef2f7);
}

/* LEFT INFO */
.contact-info {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    padding: 40px;
    border-radius: 18px;
    height: 100%;
}

    .contact-info h2 {
        font-weight: 800;
        margin-bottom: 10px;
    }

    .contact-info p {
        font-size: 15px;
        opacity: 0.9;
        margin-bottom: 25px;
    }

/* CONTACT LIST */
.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .contact-list li {
        display: flex;
        gap: 14px;
        margin-bottom: 16px;
        font-size: 15px;
    }

    .contact-list i {
        font-size: 18px;
        margin-top: 3px;
    }

/* SOCIAL */
.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        transition: 0.3s;
    }

        .social-links a:hover {
            background: #fff;
            color: #0d6efd;
        }

/* FORM */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .contact-form h3 {
        font-weight: 700;
        margin-bottom: 20px;
    }

    /* INPUT */
    .contact-form .form-control {
        border-radius: 12px;
        padding: 12px 14px;
        border: 1px solid #ddd;
    }

        .contact-form .form-control:focus {
            border-color: #0d6efd;
            box-shadow: none;
        }

    /* BUTTON */
    .contact-form .btn {
        padding: 12px;
        border-radius: 12px;
        font-weight: 600;
    }

/* MOBILE */
@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        padding: 25px;
    }
}
/* HERO SECTION */
.about-hero {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #ffffff;
    padding: 20px 20px;
}

    .about-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .about-hero p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
    }

/* MAIN CONTENT */
.about-content {
    background-color: #f8fafc;
}

    .about-content h2 {
        font-weight: 700;
        margin-bottom: 15px;
        color: #0f172a;
    }

    .about-content p,
    .about-content li {
        font-size: 1rem;
        line-height: 1.8;
        color: #334155;
    }

    /* SECTION BOX STYLE */
    .about-content > .container > div {
        background: #ffffff;
        padding: 30px;
        border-radius: 14px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    /* WHY CHOOSE US LIST */
    .about-content ul li {
        padding-left: 15px;
        border-left: 4px solid #2563eb;
    }

    /* GET IN TOUCH */
    .about-content .text-center {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: #ffffff;
    }

        .about-content .text-center h2 {
            color: #ffffff;
        }

        .about-content .text-center p {
            color: #e0e7ff;
        }

    /* SPACING */
    .about-content .mb-5 {
        margin-bottom: 40px !important;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-content > .container > div {
        padding: 20px;
    }
}
/* HERO */
.policy-hero {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #ffffff;
    padding: 20px 20px;
}

    .policy-hero h1 {
        font-size: 2.8rem;
        font-weight: 700;
    }

    .policy-hero p {
        opacity: 0.85;
        margin-top: 10px;
    }

/* CONTENT */
.policy-content {
    background-color: #f8fafc;
}

.policy-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

    .policy-card h2 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #020617;
        margin-bottom: 15px;
    }

    .policy-card p,
    .policy-card li {
        color: #334155;
        line-height: 1.8;
        font-size: 1rem;
    }

    .policy-card ul {
        padding-left: 20px;
    }

        .policy-card ul li {
            margin-bottom: 10px;
        }

/* CONTACT CARD */
.policy-contact {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #ffffff;
}

    .policy-contact h2,
    .policy-contact p {
        color: #ffffff;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-card {
        padding: 20px;
    }
}
/*activity page*/
/* PAGE BG */
.account-page {
    background: #f1f5f9;
}

/* SIDEBAR */
.account-sidebar {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    overflow: hidden;
}

/* USER BOX */
.user-box {
    padding: 30px 20px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
}

.profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
    margin-bottom: 10px;
}

.user-box h4 {
    font-weight: 700;
    margin-bottom: 2px;
}

.username {
    font-size: 0.9rem;
    opacity: 0.9;
}

.joined {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* MENU */
.account-menu {
    list-style: none;
    padding: 15px;
    margin: 0;
}

    .account-menu li {
        margin-bottom: 6px;
        border-bottom: 1px solid #eee;
    }

    .account-menu a {
        display: block;
        padding: 12px 16px;
        border-radius: 12px;
        text-decoration: none;
        color: #334155;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .account-menu li.active a,
        .account-menu a:hover {
            background: #2563eb;
            color: #ffffff;
        }

    .account-menu .logout a {
        background: #fee2e2;
        color: #b91c1c;
    }

        .account-menu .logout a:hover {
            background: #b91c1c;
            color: #ffffff;
        }

/* CONTENT */
.account-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

/* ACTIVITY CARDS */
.activity-card {
    padding: 35px;
    border-radius: 18px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

    .activity-card h3 {
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .activity-card p {
        margin: 0;
        font-size: 1.1rem;
    }

    /* CARD COLORS */
    .activity-card.wishlist {
        background: linear-gradient(135deg, #c522b3, #16a34a);
    }

    .activity-card.reviews {
        background: linear-gradient(135deg, #f1e663, #ea580c);
    }

    .activity-card.comments {
        background: linear-gradient(135deg, #63f18f, #4f46e5);
    }
    .activity-card.compare {
        background: linear-gradient(135deg, #e65f47, #4f46e5);
    }

/* 🔥 MOBILE SCROLLABLE TABS */
@media (max-width: 991px) {

    .account-sidebar {
        margin-bottom: 20px;
    }

    .account-menu {
        display: flex;
        overflow-x: auto;
        padding: 10px;
        gap: 10px;
        scrollbar-width: none;
    }

        .account-menu::-webkit-scrollbar {
            display: none;
        }

        .account-menu li {
            margin: 0;
            flex: 0 0 auto;
        }

        .account-menu a {
            white-space: nowrap;
            padding: 10px 18px;
            border-radius: 50px;
            background: #e2e8f0;
        }

        .account-menu li.active a {
            background: #2563eb;
            color: #ffffff;
        }
}
/* SIDEBAR WRAPPER */
.account-sidebar {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* USER BOX */
.user-box {
    padding: 28px 20px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
}

.profile-img {
    width: 90px;
    height: 90px;
    max-width: 100%;
    border-radius: 50%;
    border: 4px solid #ffffff;
    object-fit: cover;
}

/* TEXT */
.user-box h4 {
    margin-top: 10px;
    margin-bottom: 2px;
    font-weight: 700;
}

.username {
    font-size: 0.9rem;
    opacity: 0.9;
}

.joined {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* MENU DESKTOP */
.account-menu {
    list-style: none;
    padding: 15px;
    margin: 0;
}

    .account-menu li {
        margin-bottom: 6px;
    }

    .account-menu a {
        display: block;
        padding: 12px 16px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 500;
        color: #334155;
        transition: all 0.3s ease;
    }

        .account-menu li.active a,
        .account-menu a:hover {
            background: #2563eb;
            color: #ffffff;
        }

    /* LOGOUT */
    .account-menu .logout a {
        background: #fee2e2;
        color: #b91c1c;
    }

        .account-menu .logout a:hover {
            background: #b91c1c;
            color: #ffffff;
        }

/* 🔥 MOBILE LEFT-SCROLL MENU */
@media (max-width: 991px) {

    /* STACK SIDEBAR */
    .account-sidebar {
        margin-bottom: 15px;
    }

    /* MENU AS SCROLL TABS */
    .account-menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding: 12px;
        scrollbar-width: none; /* Firefox */
    }

        .account-menu::-webkit-scrollbar {
            display: none; /* Chrome */
        }

        .account-menu li {
            margin: 0;
            flex: 0 0 auto;
        }

        .account-menu a {
            white-space: nowrap;
            border-radius: 50px;
            background: #e5e7eb;
            padding: 10px 18px;
        }

        .account-menu li.active a {
            background: #2563eb;
            color: #ffffff;
        }

    /* IMAGE RESPONSIVE */
    .profile-img {
        width: 70px;
        height: 70px;
    }
}
/* MOBILE: 3 TABS PER ROW */
@media (max-width: 991px) {

    .account-menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 items per row */
        gap: 10px;
        padding: 12px;
    }

        .account-menu li {
            margin: 0;
        }

        .account-menu a {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            white-space: nowrap;
            padding: 10px 8px;
            border-radius: 12px;
            background: #e5e7eb;
            font-size: 0.85rem;
            height: 100%;
        }

        .account-menu li.active a {
            background: #2563eb;
            color: #ffffff;
        }

        .account-menu .logout a {
            background: #fee2e2;
            color: #b91c1c;
        }
}
/* USER BOX */
.user-box {
    padding: 16px 18px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
}

/* IMAGE */
.profile-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    flex-shrink: 0;
}

/* TEXT */
.user-info h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

.username {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.joined {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.85;
}

/* 🔒 FORCE SAME DESIGN ON MOBILE */
@media (max-width: 575px) {

    .user-box {
        flex-direction: row !important; /* no stacking */
        text-align: left !important;
    }

    .profile-img {
        width: 56px;
        height: 56px;
    }
}
/* PROFILE PAGE */
.profile-page {
    background: #f8fafc;
}

/* USER BOX */
.user-box {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    padding: 25px 15px;
    border-radius: 16px;
}

    .user-box .profile-img {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        border: 3px solid #ffffff;
        object-fit: cover;
        margin-bottom: 8px;
    }

    .user-box h4 {
        margin: 5px 0;
        font-weight: 700;
    }

    .user-box .username {
        font-size: 0.9rem;
        opacity: 0.9;
    }

/* SIDEBAR MENU */
.account-menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

    .account-menu li {
        margin-bottom: 8px;
    }

    .account-menu a {
        display: block;
        padding: 10px 12px;
        border-radius: 12px;
        text-decoration: none;
        color: #334155;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .account-menu li.active a,
        .account-menu a:hover {
            background: #2563eb;
            color: #ffffff;
        }

    .account-menu .logout a {
        background: #fee2e2;
        color: #b91c1c;
    }

        .account-menu .logout a:hover {
            background: #b91c1c;
            color: #ffffff;
        }

/* PROFILE CONTENT */
.profile-content {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

    .profile-content h2 {
        font-weight: 700;
        margin-bottom: 20px;
    }

/* FORM FIELDS */
.profile-form .form-label {
    font-weight: 500;
}

.profile-form .form-control,
.profile-form .form-select {
    border-radius: 12px;
    padding: 10px 12px;
}

/* SAVE BUTTON */
.profile-form .btn-primary {
    border-radius: 12px;
    padding: 10px 25px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
    .account-sidebar {
        margin-bottom: 20px;
    }
}

.wishlist-page {
    background: #f8fafc;
}

/* WATCH CARD */
.wishlist-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

    .wishlist-card:hover {
        transform: translateY(-5px);
    }

/* WATCH IMAGE */
.watch-img {
    /*  width: 100%;
    height: 200px;*/
    object-fit: cover;
    border-bottom: 1px solid #e5e7eb;
}

/* CONTENT */
.wishlist-content {
    padding: 15px;
}

.watch-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #111827;
}

.price {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 10px;
}

/* REMOVE BUTTON */
.remove-btn {
    border-radius: 12px;
    padding: 6px 12px;
}

/* RESPONSIVE */
@media (max-width: 575px) {
    .watch-img {
        height: 150px;
    }

    .watch-name {
        font-size: 0.95rem;
    }
}
/* NAVBAR USER AVATAR */
.navbar-nav .dropdown-toggle img {
    border: 2px solid #ffffff;
    object-fit: cover;
}

/* Dropdown hover color */
.dropdown-menu .dropdown-item:hover {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #fff;
}

/* Login Button */
#login-btn a {
    display: flex;
    align-items: center;
}

.h5, h5 {
    font-size: 14px;
}

<style >
/* IMAGE STYLES */
.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.main-image {
    width: 100%;
    border-radius: 12px;
}

/* THUMBNAILS */
.thumbnail-gallery img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: #0d6efd;
}

/* PRICE */
.mrp {
    text-decoration: line-through;
    color: #999;
}

.price {
    font-size: 14px;
    font-weight: 800;
    color: #0d6efd;
}

.discount-tag {
    background: #dc3545;
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 20px;
    margin-left: 10px;
}

/* BUY BUTTON */
.btn-buy-now {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #fff;
    border: none;
    font-weight: 700;
    border-radius: 12px;
    padding: 14px;
}

    .btn-buy-now:hover {
        opacity: 0.9;
        color: #fff;
    }

/* MOBILE */
@media (max-width: 991px) {
    .btn-buy-now {
        font-size: 16px;
        padding: 12px;
    }
}
/* ================= MOBILE STICKY FOOTER ================= */
.mobile-buy-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
    z-index: 999;
    padding: 10px 14px;
}

.mobile-buy-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-buy-info h6 {
    font-size: 14px;
}

.mobile-buy-footer .btn-buy-now {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 10px;
}

/* ADD SAFE SPACE SO CONTENT DOES NOT HIDE */
@media (max-width: 991px) {

    .category-nav .nav-item::after {
        display: none;
    }
}

.category-nav .nav-item {
    position: relative;
    padding: 0 16px;
}

    .category-nav .nav-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 8px;
        height: 8px;
        background: linear-gradient(135deg, #adb5bd, #dee2e6);
    }

a {
    color: #000;
    text-decoration: none;
}

/* Mobile Optimization */
@media (max-width: 767px) {
    .vs-badge {
        width: 40px;
        height: 40px;
        border-radius: 36%;
        font-size: 17px;
    }

    .mobile-vs-row {
        flex-wrap: nowrap;
    }

        .mobile-vs-row .col-md-5 {
            flex: 0 0 45%;
            max-width: 45%;
            padding: 0 5px;
        }

        .mobile-vs-row .col-md-2 {
            flex: 0 0 10%;
            max-width: 10%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .comparison-card img {
        max-height: 90px !important;
    }

    .comparison-card h5 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .comparison-card p {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .comparison-card .badge {
        font-size: 10px;
    }
}

.titlew {
    padding: 10px;
    border-bottom: 1px solid #007bff;
}

.hrtitlew {
    color: #007bff;
}

.compare-cell {
    position: relative;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4d4d;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    z-index: 20;
}

    .close-btn:hover {
        background: #e60000;
    }
/* Mobile styles (below 576px) */
@media (max-width: 575px) {

    /* col-sm-4 → full width on mobile */
    .col-sm-4 {
        width: 33% !important;
        flex: 0 0 33% !important;
    }

    /* col-sm-3 → 50% width (2 columns) on mobile */
    .col-sm-3 {
        width: 25% !important;
        flex: 0 0 25% !important;
    }

    /* col-sm-2 → 50% width (2 columns) on mobile */
    .col-sm-2 {
        width: 20% !important;
        flex: 0 0 20% !important;
    }

    /* col-sm-6 → full width on mobile */
    .col-sm-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }
}

#watch1-preview {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#watch2-preview {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.btn-outline-primary-fill {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.dropdown-item-fill {
    background-color: #2563eb;
    color: #fff;
}

.btn-outline-danger-fill {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.review-modern-card {
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.06);
}

.review-left {
    width: 95px;
}

.review-left-2 {
    width: 112px;
}
.avatar-lg {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.review-stars i {
    color: #ffc107;
    font-size: 14px;
}

.review-body {
    flex: 1;
}

.rating-1 .progress-bar {
    background-color: #dc3545;
}
/* Red */
.rating-2 .progress-bar {
    background-color: #fd7e14;
}
/* Orange */
.rating-3 .progress-bar {
    background-color: #ffc107;
}
/* Yellow */
.rating-4 .progress-bar {
    background-color: #28a745;
}
/* Green */
.rating-5 .progress-bar {
    background-color: #198754;
}
/* Dark Green */

.rating-progress {
    height: 8px;
    background: #eee;
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 29px;
}

.star-label {
    width: 35px;
}

.rating-progress {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 10px;
}
.star-label {
    order: 1;
}

.count-label {
    order: 2;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-progress {
    flex: 1; /* bar takes remaining space */
}

.count-label {
    margin-left: auto; /* pushes it to LAST */
    min-width: 30px;
    text-align: right;
    font-size: 13px;
    color: #555;
}
.summary-stars i {
    color: #ffc107;
}
.watch-img-wishlist {
    max-width: 230px;
    max-height: 230px;
}
.spnred {
    color: red;
}
/*h5 a {
    color: #0d6efd;
}*/
.no-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    max-width: 420px;
    margin: 60px auto;
}

.no-review-icon {
    font-size: 48px;
    color: #adb5bd;
}

.no-review-card h4 {
    color: #333;
}

.no-review-card p {
    font-size: 14px;
}
.price-action-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.sell-price {
    font-weight: 700;
    color: #212529;
}

.mrp-price {
    text-decoration: line-through;
    color: #6c757d;
}

.discount {
    color: #198754;
    font-weight: 600;
}

.watch-review-box {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
}

.watch-img {
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
}

.watch-img-2 {
    width: 60px;
    height: 60px;
}
.review-modern-card {
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,.07);
}

.review-top {
    display: flex;
    gap: 15px;
}

.review-left-2 {
    width: 120px;
}

.review-body {
    flex: 1;
}

.review-bottom {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

    .review-bottom h6,
    .review-bottom p {
        width: 100%;
    }
.no-review-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 18px;
    padding: 50px 25px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    max-width: 420px;
}

.no-review-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(13,110,253,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .no-review-icon-wrap i {
        font-size: 34px;
        color: #0d6efd;
    }

.no-review-card h4 {
    color: #212529;
}

.no-review-card p {
    font-size: 14px;
}
.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.change-password-card {
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .07);
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.thankyou-container {
    min-height: 80vh;
}

.thankyou-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 0.6s ease;
}

.check-icon {
    font-size: 70px;
    color: #28a745;
}

.thankyou-card h1 {
    font-weight: 700;
}

.thankyou-actions .btn {
    padding: 10px 22px;
    font-weight: 600;
    border-radius: 8px;
}

.support-text {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .thankyou-card {
        padding: 35px 20px;
    }

    .check-icon {
        font-size: 55px;
    }

    .thankyou-card h1 {
        font-size: 26px;
    }
}
.social-icons .social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 6px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social.fb {
    background: #3b5998;
}

.social.ig {
    background: #e1306c;
}

.social.tw {
    background: #1da1f2;
}

.social.yt {
    background: #ff0000;
}
.social.x {
    background: #000;
}
.x {
    background: #000;
}

.social:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.btn-primary {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    border-color: #785b31 !important;
}
.btn-outline-primary {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #785b31;
    border-color: #f4ca61;
}
.btn-success {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    border-color: #785b31;
}
.btn-sm {
    background: linear-gradient(135deg, #f4ca61, #785b31);
    color: #fff;
    border-color: #f4ca61;
}
.page-link {
    color: #785b31;
}
.active > .page-link, .page-link.active {
    background: #f4ca61;
    border-color: #785b31;
}
.btn-login {
    background: linear-gradient(135deg, #f4ca61, #785b31);
}
.view-more-btn:hover {
    background: linear-gradient(135deg,#785b31, #f4ca61);
}