/* -------------------------------------------------------------
 * Chronos BD - Luxury Watch Store Stylesheet
 * Screenshot 1 Inspired High-Converting Theme (Red, White & Soft Pink Accent)
 * Includes Ultra-Professional Motion Effects & Animations
 * ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --bg-dark: #FCF4F6;            /* Soft rose-pinkish white background */
    --bg-card: #FFFFFF;            /* Pure white clean cards */
    --bg-card-hover: #FFF9FA;
    --red-primary: #D30038;        /* Vibrant Crimson Red */
    --red-dark: #A30029;
    --red-light-bg: #FFEAEF;       /* Soft pink highlight pills */
    --red-gradient: linear-gradient(135deg, #FF1E40 0%, #B3002D 100%);
    --gold-accent: #FFD700;
    --text-main: #1F2421;          /* Dark crisp text */
    --text-muted: #5A626A;
    --border-color: rgba(211, 0, 56, 0.25);
    --border-light: rgba(211, 0, 56, 0.12);
    --shadow-soft: 0 10px 30px rgba(211, 0, 56, 0.08);
    --shadow-red: 0 8px 25px rgba(211, 0, 56, 0.3);
    --font-primary: 'Hind Siliguri', 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* -------------------------------------------------------------
 * Motion Effects & Keyframe Animations
 * ------------------------------------------------------------- */

/* Floating animation for main watch image */
@keyframes floatWatch {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Pulsing glow for main CTA button */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(211, 0, 56, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(211, 0, 56, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 0, 56, 0); }
}

/* WhatsApp wiggle animation */
@keyframes waWiggle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    10%, 20% { transform: scale(1.1) rotate(-8deg); }
    30%, 40% { transform: scale(1.1) rotate(8deg); }
    50% { transform: scale(1.1) rotate(-4deg); }
    60% { transform: scale(1) rotate(0deg); }
}

/* Shimmer metallic text highlight */
@keyframes textShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* -------------------------------------------------------------
 * Typography & Utilities
 * ------------------------------------------------------------- */
h1, h2, h3, h4 {
    color: var(--text-main);
}

.text-gold, .text-red {
    background: linear-gradient(90deg, #D30038 0%, #FF2A55 50%, #B3002D 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s linear infinite;
    font-weight: 800;
}

.strike-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-right: 8px;
}

.current-price {
    color: var(--red-primary);
    font-size: 2.2rem;
    font-weight: 800;
}

.badge-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: var(--red-light-bg);
    border: 1px solid var(--border-color);
    color: var(--red-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(211, 0, 56, 0.08);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red-gradient);
    color: #FFFFFF;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    animation: pulseGlow 2.5s infinite;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 40px rgba(211, 0, 56, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

/* Announcement Top Bar */
.top-bar {
    background: var(--red-gradient);
    color: #FFFFFF;
    text-align: center;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Header Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--border-light);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.04);
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--red-primary);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--red-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone, .header-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.header-phone {
    border: 1.5px solid var(--red-primary);
    color: var(--red-primary);
    background: var(--red-light-bg);
}

.header-phone:hover {
    background: var(--red-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.header-wa {
    background: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.header-wa:hover {
    background: #1EBE5A;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    position: relative;
    background: radial-gradient(circle at top center, #FFE6EC 0%, #FCF4F6 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 18px;
    font-weight: 800;
    color: #111827;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.hero-highlights {
    list-style: none;
    margin-bottom: 30px;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #374151;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.hero-highlights li:hover {
    transform: translateX(6px);
}

.hero-highlights i {
    color: var(--red-primary);
    font-size: 1.2rem;
}

.hero-price-box {
    background: var(--bg-card);
    border: 2px solid var(--red-primary);
    padding: 20px 30px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.hero-price-box:hover {
    transform: scale(1.03);
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    border: 4px solid #FFFFFF;
    box-shadow: 0 20px 45px rgba(211, 0, 56, 0.2);
    animation: floatWatch 5s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.hero-image:hover {
    animation-play-state: paused;
    transform: scale(1.04) rotate(1deg);
}

/* Feature Ribbons */
.trust-ribbon {
    background: #FFFFFF;
    border-y: 2px solid var(--border-light);
    padding: 35px 0;
    margin: 30px 0;
}

.ribbon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    text-align: center;
}

.ribbon-item {
    padding: 20px 15px;
    background: var(--red-light-bg);
    border-radius: 18px;
    border: 1px solid var(--border-light);
    transition: all 0.35s ease;
}

.ribbon-item:hover {
    transform: translateY(-6px);
    background: #FFFFFF;
    border-color: var(--red-primary);
    box-shadow: 0 10px 25px rgba(211, 0, 56, 0.12);
}

.ribbon-item i {
    font-size: 2.4rem;
    color: var(--red-primary);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.ribbon-item:hover i {
    transform: scale(1.2) rotate(-5deg);
}

.ribbon-item h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: #111827;
}

.ribbon-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #111827;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}

.product-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(211, 0, 56, 0.18);
}

.product-img-wrapper {
    position: relative;
    height: 290px;
    overflow: hidden;
    background: #FFF0F3;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--red-gradient);
    color: #FFF;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-body h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #111827;
}

.product-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-features-list {
    list-style: none;
    margin-bottom: 20px;
}

.product-features-list li {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features-list i {
    color: var(--red-primary);
}

.product-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Reviews / Testimonials Section */
.reviews-section {
    padding: 70px 0;
    background: #FFF5F7;
    border-y: 1px solid var(--border-light);
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(211, 0, 56, 0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(211, 0, 56, 0.1);
}

.review-stars {
    color: #FFB800;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.review-card p {
    font-style: italic;
    color: #374151;
    margin-bottom: 18px;
    font-size: 1rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--red-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.reviewer-info h4 {
    font-size: 0.95rem;
    color: #111827;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Order Section & Checkout Form */
.order-section {
    padding: 80px 0;
}

.order-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 3px solid var(--red-primary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(211, 0, 56, 0.12);
    transition: transform 0.3s ease;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.form-group label i {
    color: var(--red-primary);
    margin-right: 6px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    background: #FAF4F6;
    border: 1.5px solid #E5E7EB;
    color: #111827;
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--red-primary);
    background: #FFFFFF;
    box-shadow: 0 0 12px rgba(211, 0, 56, 0.2);
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.radio-box {
    background: #FAF4F6;
    border: 1.5px solid #E5E7EB;
    padding: 14px 18px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.radio-box.active, .radio-box:hover {
    border-color: var(--red-primary);
    background: var(--red-light-bg);
    color: var(--red-primary);
}

.radio-box input[type="radio"] {
    accent-color: var(--red-primary);
    width: 18px;
    height: 18px;
}

.order-summary-box {
    background: var(--red-light-bg);
    border: 2px solid var(--border-color);
    padding: 20px 25px;
    border-radius: 16px;
    margin: 25px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #4B5563;
    font-size: 1.05rem;
}

.summary-row.total {
    border-top: 2px dashed var(--border-color);
    padding-top: 14px;
    margin-top: 8px;
    color: var(--red-primary);
    font-size: 1.4rem;
    font-weight: 800;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #FFFFFF;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FAF4F6;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 18px 22px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-answer {
    padding: 0 22px 18px;
    color: #4B5563;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--red-primary);
}

/* Footer */
footer {
    background: var(--red-gradient);
    color: #FFFFFF;
    padding: 40px 0 20px;
    text-align: center;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-content .logo-text, .footer-content .logo-icon {
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-links a {
    color: #FFE6EC;
    text-decoration: none;
}

.footer-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Floating Action Widgets */
.floating-widgets {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(211, 0, 56, 0.3);
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.15);
}

.float-wa {
    background: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: waWiggle 5s ease-in-out infinite;
}

.float-call {
    background: var(--red-primary);
    animation: pulseGlow 2s infinite;
}

/* Call Hover Tooltip Preview */
.call-tooltip {
    position: absolute;
    right: 70px;
    background: #FFFFFF;
    border: 2px solid var(--red-primary);
    padding: 8px 18px;
    border-radius: 30px;
    white-space: nowrap;
    color: var(--red-primary);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.float-call:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-highlights li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }
    
    .order-wrapper {
        padding: 22px 16px;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

    .header-phone {
        display: none;
    }
}
