/* Custom CSS Variables */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --primary-gold: #d4af37;
    --gold-hover: #b8941f;
    --gold-light: #f4e5a1;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --transition: all 0.3s ease;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e5a1 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #333333 100%);
    --whatsapp-green: #25d366;
    --whatsapp-green-dark: #1eb257;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    overflow-x: hidden;
    background-color: var(--primary-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Utility Classes */
.text-gold {
    color: var(--primary-gold) !important;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

.bg-black {
    background-color: var(--primary-black) !important;
}

.btn-gold {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background-color: transparent;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline-white {
    border-color: var(--primary-white);
    color: var(--primary-white);
    background-color: transparent;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background-color: var(--primary-white);
    border-color: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: var(--primary-white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-dark);
    border-color: var(--whatsapp-green-dark);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: var(--primary-black);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-white) !important;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--primary-gold) !important;
}

.brand-text {
    margin-left: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--primary-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Desktop Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-action-btn {
    color: var(--primary-white);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 50%;
    position: relative;
}

.nav-action-btn:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-gold);
    color: var(--primary-black);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    overflow-y: auto;
    padding: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.mobile-brand i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-gold);
}

.mobile-menu-body {
    padding: 1rem 0;
}

/* Mobile Quick Actions */
.mobile-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action-btn.whatsapp-action {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.7);
}

.quick-action-btn.whatsapp-action i {
    color: var(--whatsapp-green);
}

.quick-action-btn.whatsapp-action:hover {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: var(--primary-white);
}

.quick-action-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.quick-action-btn i {
    font-size: 1.2rem;
}

.quick-action-btn span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-left: 4px solid var(--primary-gold);
}

.mobile-nav-link i:first-child {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.mobile-nav-link span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav-link i:last-child {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Mobile CTA Section */
.mobile-cta-section {
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-card {
    background: var(--gradient-gold);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
}

.mobile-cta-card h4 {
    color: var(--primary-black);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.mobile-cta-card p {
    color: var(--primary-black);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.mobile-contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--primary-white);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-gold);
    width: 20px;
    text-align: center;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1524592094714-0f0654e20314?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-white);
    position: relative;
    background-attachment: fixed;
    padding: 140px 0 20px;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.sell-watch-section {
    padding: 3rem 0 4rem;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12) 0, transparent 55%), #050608;
    color: var(--primary-white);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sell-watch-section .section-title {
    color: var(--primary-white);
}

.sell-watch-card {
    background: #0e1013;
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sell-step-number {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--primary-gold);
    color: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.sell-watch-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sell-watch-text {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-bottom: 4rem;
}

.hero-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-white);
    text-align: center;
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Brands Slider Section */
.premium-brands-slider-section {
    padding: 4rem 0;
    background: var(--primary-white);
    position: relative;
}

/* Section Header */
.slider-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.slider-section-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* Slider Container */
.brands-slider-container {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

.brands-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.brands-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.brands-slider:active {
    cursor: grabbing;
}

/* Brand Slide */
.brand-slide {
    min-width: calc(33.333% - 1rem);
    position: relative;
    height: 320px;
    margin-right: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    background: var(--primary-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.brand-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.brand-slide:hover .slide-image {
    transform: scale(1.05);
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: var(--primary-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.brand-slide:hover .slide-overlay {
    transform: translateY(0);
}

/* Slide Content */
.slide-content {
    text-align: left;
    color: var(--primary-white);
}

.slide-brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.slide-tagline {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.slide-stats {
    margin-bottom: 1rem;
}

.slide-stats span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Slide CTA */
.slide-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary-gold);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.slide-cta-btn:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.slide-cta-btn i {
    transition: var(--transition);
}

.slide-cta-btn:hover i {
    transform: translateX(5px);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slider-nav i {
    font-size: 1.2rem;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Compact Trust Signals */
.compact-trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary-gold);
    font-size: 1rem;
}

/* Collections Section */
.collections-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.collection-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 450px;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.collection-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.collection-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collection-card:hover .collection-image img {
    transform: scale(1.15);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-white);
    padding: 3rem 2rem;
}

.collection-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-white);
}

.collection-badge.exclusive {
    background: var(--gradient-gold);
    color: var(--primary-black);
    border-color: var(--primary-gold);
}

.collection-badge.bestseller {
    background: linear-gradient(135deg, #dc143c 0%, #ff6347 100%);
    color: var(--primary-white);
}

.collection-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.collection-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 300px;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background: var(--primary-white);
}

.product-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.vintage {
    background: var(--gradient-gold);
    color: var(--primary-black);
}

.product-badge.moonwatch {
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    color: var(--primary-white);
}

.product-badge.elegant {
    background: linear-gradient(135deg, #8b4513 0%, #daa520 100%);
    color: var(--primary-white);
}

.product-badge.rare {
    background: linear-gradient(135deg, #dc143c 0%, #ff6347 100%);
    color: var(--primary-white);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-white {
    background: var(--primary-white);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--primary-gold);
    color: var(--primary-white);
    transform: scale(1.1);
}

.product-info {
    padding: 2rem 1.5rem;
    text-align: left;
}

.product-brand {
    font-size: 0.85rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-black);
}

.product-year {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.product-pricing {
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-right: 1rem;
}

.product-original-price {
    font-size: 1.1rem;
    color: var(--medium-gray);
    text-decoration: line-through;
    font-weight: 400;
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 0;
}

.expertise-icon {
    transition: var(--transition);
}

.expertise-icon:hover {
    transform: translateY(-5px);
}

.expertise-icon i {
    transition: var(--transition);
}

.expertise-icon:hover i {
    color: var(--primary-gold) !important;
}

/* Instagram Section */
.instagram-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.instagram-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-post:hover img {
    transform: scale(1.15);
}

.instagram-overlay i {
    font-size: 2.5rem;
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.instagram-likes {
    color: var(--primary-white);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
}

.newsletter-form .form-control {
    border: 2px solid #333;
    background-color: transparent;
    color: var(--primary-white);
    border-radius: 8px;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background-color: transparent;
    color: var(--primary-white);
}

.newsletter-form .form-control::placeholder {
    color: #ccc;
}

/* Footer */
.footer-section {
    padding: 3rem 0 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links .social-link {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.social-links .social-link:hover {
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-gold);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
}

.floating-cta-group {
    position: fixed;
    right: 20px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
    z-index: 1100;
}

.floating-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    transition: var(--transition);
    border: none;
}

.floating-cta-btn i {
    font-size: 1.4rem;
}

.floating-cta-whatsapp {
    width: 52px;
    height: 52px;
    background-color: var(--whatsapp-green);
    color: #ffffff;
}

.floating-cta-call {
    width: 52px;
    height: 52px;
    background: var(--primary-gold);
    color: var(--primary-black);
}

.floating-cta-offer {
    padding: 0.55rem 1.2rem;
    min-width: 130px;
    background: #050608;
    color: var(--primary-white);
    border: 1px solid var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.floating-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #198754;
    backdrop-filter: blur(16px);
    display: none;
    padding: 1.4rem 1rem 0.6rem;
    z-index: 1090;
}

.mobile-bottom-bar-inner {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.bottom-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-white);
    font-size: 0.75rem;
}

.bottom-bar-item i {
    font-size: 1.4rem;
    margin-bottom: 0.15rem;
}

.bottom-bar-item.bottom-bar-whatsapp i {
    color: var(--whatsapp-green);
}

@media (max-width: 768px) {
    .floating-cta-group {
        display: none;
    }
    .mobile-bottom-bar {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none;
    }
}

.activity-toast-container {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-toast {
    background: rgba(3, 4, 6, 0.97);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
    border-left: 2px solid var(--primary-gold);
    opacity: 0;
    transform: translateX(-20px);
    animation: activityToastIn 0.3s forwards;
}

.activity-toast i {
    color: var(--primary-gold);
}

@keyframes activityToastIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
}

.form-control {
    border-radius: 8px;
    border: 2px solid #ddd;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Cart Styles */
.cart-item img {
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .collection-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        padding-top: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .collection-card {
        height: 400px;
    }
    
    .collection-title {
        font-size: 1.8rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    /* Premium Brands Slider Responsive - Tablet */
    .premium-brands-slider-section {
        padding: 3rem 0;
    }
    
    .slider-section-title {
        font-size: 2.2rem;
    }
    
    .brand-slide {
        min-width: calc(50% - 1rem);
        height: 300px;
    }
    
    .slide-brand-name {
        font-size: 1.2rem;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .compact-trust-signals {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        margin-bottom: 3rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0 !important;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .brand-text {
        display: none;
    }
    
    .brand-image {
        height: 150px;
    }
    
    .collection-card {
        height: 350px;
    }
    
    .collection-title {
        font-size: 1.6rem;
    }
    
    .collection-overlay {
        padding: 2rem 1.5rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 1.5rem 1rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.3rem;
    }
    
    .collections-section,
    .products-section,
    .instagram-section {
        padding: 4rem 0;
    }
    
    /* Premium Brands Slider Mobile */
    .premium-brands-slider-section {
        padding: 2.5rem 0;
    }
    
    .slider-section-title {
        font-size: 1.8rem;
    }
    
    .slider-section-subtitle {
        font-size: 0.9rem;
    }
    
    .brand-slide {
        min-width: calc(100% - 1rem);
        height: 280px;
    }
    
    .slide-brand-name {
        font-size: 1.3rem;
    }
    
    .slide-tagline {
        font-size: 1rem;
    }
    
    .slide-stats span {
        font-size: 0.8rem;
    }
    
    .slide-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 0.5rem;
    }
    
    .next-btn {
        right: 0.5rem;
    }
    
    .compact-trust-signals {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .trust-badge {
        justify-content: center;
    }
    
    /* Mobile Menu Adjustments */
    .mobile-menu-overlay {
        padding-top: 0;
    }
    
    .mobile-quick-actions {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .quick-action-btn {
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .brand-card {
        padding: 1rem;
    }
    
    .brand-image img {
        height: 120px;
    }
    
    .brand-overlay h5 {
        font-size: 1rem;
    }
    
    .brand-overlay p {
        font-size: 0.8rem;
    }
    
    .collection-card {
        height: 300px;
    }
    
    .collection-title {
        font-size: 1.4rem;
    }
    
    .collection-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .collection-overlay {
        padding: 1.5rem 1rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1.5rem 1rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .btn-white {
        width: 40px;
        height: 40px;
    }
    
    .collections-section,
    .products-section,
    .instagram-section {
        padding: 3rem 0;
    }
    
    /* Premium Brands Slider Small Mobile */
    .premium-brands-slider-section {
        padding: 2rem 0;
    }
    
    .slider-section-title {
        font-size: 1.6rem;
    }
    
    .slider-section-subtitle {
        font-size: 0.85rem;
    }
    
    .brand-slide {
        height: 280px;
    }
    
    .slide-brand-name {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .slide-tagline {
        font-size: 0.9rem;
    }
    
    .slide-stats span {
        font-size: 0.75rem;
    }
    
    .slide-cta-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav i {
        font-size: 1rem;
    }
    
    .compact-trust-signals {
        padding: 1rem 0;
    }
    
    .trust-badge {
        font-size: 0.8rem;
    }
    
    .trust-badge i {
        font-size: 0.9rem;
    }
    
    .instagram-post {
        border-radius: 15px;
    }
    
    .instagram-overlay i {
        font-size: 2rem;
    }
    
    .instagram-likes {
        font-size: 0.8rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-hover);
}
