
:root {
    --primary:rgb(18, 25, 56);
    --primary-dark:rgb(19, 16, 75);
    --accent: #f72585;
    --light: #f8f9fa;
    --primary-color: #fa561b;
    --dark: #212529;
    --success: #4bb543;
    --warning: #f8961e;
    --text: #2b2d42;
    --text-light: #8d99ae;
    --bg: #fefefe;
    --card-bg: #ffffff;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* Header Area */
.navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
}

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

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
}

/* Product Section */
.product-section {
    padding: 5rem 0;
    background-color: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #362b2b;
    border-radius: 2px;
}


/* Product Cards */
.product-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--card-bg);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--danger-color) 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(247, 37, 133, 0.3);
}

.product-wishlist {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-wishlist:hover {
    background: var(--accent);
    color: white;
}

.product-body {
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.category-line{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.product-title {
    font-size: 1.1rem;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #333333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title:hover {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.stars {
    color: #f1c40f;
    margin-right: 5px;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e26f03;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-right: 10px;
}



/* -------- */

/* .product-price {
    gap: 4px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.before-off {
    font-size: 0.9rem;
    font-weight: 500;
} */

.before-off{
    margin-top: 12px;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--text-light);
}

/* Add to Cart Button */
.add-to-cart-button {
    background: linear-gradient(135deg, #333333 0%, #333333 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 40px;
    height: 40px;
}

.add-to-cart-button:hover {
    background: linear-gradient(135deg, #333333 0%, #333333 100%);
    transform: translateY(-2px);
}

.add-to-cart-button .material-icons {
    font-size: 1.2rem;
}


.btn-view {
    background-color: #e8e9eb;
    color: rgb(56, 55, 55);
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border: none;
    padding: 4px;
    width: 80%;
    border-radius: 5px;
    font-weight: 500;
}

.btn-view:hover{
background: #e8e9eb;
}


.before-off {
    font-size: 1rem;
    font-weight: 500;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #212529;
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 12px 30px;
    background: white;
    color: var(--primary);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

/* Delays for staggered animation */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

/* Loading Animation */
.adding-to-cart {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: translateY(-10px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
    100% { transform: translateY(-10px) scale(1); }
}

@media (max-width: 1200px) {
    .current-price {
        font-size: 1rem;
        font-weight: 600;
        color: #cc6504;
    }
    .cart-buttons{
        gap: 5px;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .current-price {
        font-size: 1rem;
        font-weight: 600;
        color: #cc6504;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-image-container {
        height: 200px;
    }
    .before-off{
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .product-card {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}



.watches-hero {
    position: relative;
    height: 300px;
    color: white;
    text-align: center;
    overflow: hidden;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.watches-hero .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

.watches-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    z-index: 2;
}

.watches-hero .container {
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .watches-hero {
        display: none;
    }
}

.watches-hero .container h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.watches-hero p {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto;
}