/* ====================================================
   PINK & WHITE SECTIONS STYLING
   Targeting: Features, Category Nav, Product Cards
==================================================== */

:root {
    --pink-primary: #e8a2c0;
    --pink-light: #fdf5f8;
    --pink-dark: #d489ad;
    --text-dark: #333333;
    --text-muted: #777777;
    --white: #ffffff;
}

/* 1. FEATURES SECTION */
.features-single-line {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(232, 162, 192, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: var(--pink-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(232, 162, 192, 0.15);
    background: white;
    border: 1px solid var(--pink-primary);
}

.feature-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--pink-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-text h6 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 13px;
    margin: 0;
    color: var(--text-muted);
}

/* 2. CATEGORY NAV (PILLS) */
.category-nav-section {
    padding: 40px 0;
    background: white;
}

.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.category-link:hover {
    border-color: var(--pink-primary);
    color: var(--pink-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 162, 192, 0.2);
}

.category-link.active {
    background: var(--pink-primary);
    border-color: var(--pink-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(232, 162, 192, 0.4);
}

.nav-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-badge.sale {
    background: #FF4757;
    color: white;
}

.nav-badge.new {
    background: #2ED573;
    color: white;
}

/* 3. PRODUCT CARDS & SECTION HEADERS */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

/* New Luxury Card Style */
.category-product-card {
    background: transparent;
    /* Clean background like reference */
    border-radius: 0;
    /* Sharp corners for luxury feel */
    overflow: visible;
    /* Allow text to flow */
    position: relative;
    border: none;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.category-product-card:hover {
    transform: none;
    /* proper static card */
    box-shadow: none;
    border: none;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    /* Light gray neutral background */
    padding: 40px;
    /* More padding for breathing room */
    border-radius: 0;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.category-product-card:hover .product-image-wrapper {
    background: #f0f0f0;
    /* Slightly darker on hover */
}

.category-product-card img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth slow zoom */
    transform-origin: center center;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.category-product-card:hover img {
    transform: scale(1.35);
    /* Dramatic zoom to show details */
}

/* Product Info */
.category-product-card h5 {
    font-family: 'Inter', sans-serif;
    /* Clean modern sans-serif like Longines */
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--text-dark);
    text-align: left;
    /* Strict left align */
}

.category-product-card .price {
    color: var(--text-muted);
    /* Subtle price color */
    font-weight: 400;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    display: block;
    text-align: left;
    margin-bottom: 15px;
}

.category-product-card .original-price {
    display: none;
    /* Hide clutter for luxury look */
}

/* Minimal Add to Cart - MODIFIED TO BLACK BUTTON */
/* Minimal Add to Cart - MODIFIED TO BLACK BUTTON */
.btn-add-to-cart {
    width: auto;
    display: inline-block;
    margin-top: 5px;
    padding: 12px 30px;
    /* Match btn-black */
    border: 1px solid #000;
    background: #000;
    /* Black Background */
    color: #fff;
    /* White Text */
    border-radius: 0;
    /* Sharp corners */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    transform: none;
    /* No transform */
    box-shadow: none;
    /* No shadow */
}

.btn-view-detail {
    display: none;
    /* Hide standard view detail to clean up */
}

/* Quick View Badge */
.quick-view-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-product-card:hover .quick-view-badge {
    opacity: 1;
    transform: translateX(0);
}

.quick-view-badge:hover {
    background: var(--pink-primary);
    color: white;
}

/* ====================================================
   BEST SELLERS STYLING (Longines Match)
==================================================== */
.best-seller-card {
    background: transparent;
    border: none;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.best-seller-card:hover {
    transform: none;
    box-shadow: none;
}

.best-seller-card .product-image {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    padding: 40px;
    border-radius: 0;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.best-seller-card:hover .product-image {
    background: #f0f0f0;
}

.best-seller-card .product-image img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.best-seller-card:hover .product-image img {
    transform: scale(1.35);
    /* Dramatic Zoom */
}

/* Product Info */
.best-seller-card .product-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--text-dark);
    text-align: left;
}

.best-seller-card .product-desc {
    display: none;
    /* Hide short desc for clean look */
}

.best-seller-card .price {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    display: block;
    text-align: left;
    margin-bottom: 10px;
}

/* Minimal Actions */
.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-add-to-cart-main {
    width: auto;
    border: none;
    background: transparent;
    color: var(--pink-primary);
    border-bottom: 1px solid var(--pink-primary);
    padding: 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: inline-block;
}

.btn-add-to-cart-main:hover {
    color: var(--pink-dark);
    border-color: var(--pink-dark);
    background: transparent;
    transform: none;
    box-shadow: none;
}

.btn-add-to-cart-main i {
    display: none;
    /* Hide icon for minimal look */
}

.btn-quick-view {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.btn-quick-view:hover {
    color: var(--pink-primary);
}

.btn-quick-view i {
    display: none;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pink-primary);
    color: white;
    padding: 4px 10px;
    font-size: 10px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 2;
}