/* ==========================================================================
   VELORADESIGN — HIGH-CONTRAST MODERN LUXURY TYPOGRAPHY & DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --color-primary: #FDFBF7;
    --color-secondary: #F4EFE6;
    --color-accent: #B58E4A;          /* Refined Gold */
    --color-accent-hover: #9c783c;
    --color-bg: #FDFBF7;
    --color-surface: #F4EFE6;
    --color-surface-hover: #EBE3D5;
    --color-text: #2C2A26;             /* Deep Espresso/Soft Black */
    --color-muted: #4A4743;            /* Medium Espresso */
    --color-border: rgba(181, 142, 74, 0.25);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lora', Georgia, serif;
    --radius-btn: 4px;
    --radius-card: 10px;
    --shadow-gold: 0 15px 35px -10px rgba(181, 142, 74, 0.3);
    --shadow-card: 0 10px 30px -10px rgba(44,42,38,0.08);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text);
    letter-spacing: 0.04em;
}

p {
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #E5C158 0%, #B89528 100%);
    color: #0A0A0C;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(229, 193, 88, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 193, 88, 0.6);
}

.btn-outline {
    background-color: rgba(10, 10, 12, 0.6);
    border: 1.5px solid var(--color-accent);
    color: #FFFFFF;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: #0A0A0C;
    border-color: var(--color-accent);
}

/* Hero Section with High-Contrast Text Overlays */
.hero-slider-wrapper {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out, transform 8s ease-out;
    transform: scale(1.08);
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 12, 0.95) 35%, rgba(10, 10, 12, 0.8) 70%, rgba(10, 10, 12, 0.5) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.35rem;
    background: rgba(229, 193, 88, 0.2);
    border: 1.5px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-headline {
    font-size: 4.6rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-headline span {
    color: var(--color-accent);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #E4E4E7;
    line-height: 1.8;
    margin-bottom: 2.75rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.section-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Category Grid Stylish */
.category-card-stylish {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--color-border);
}

.category-card-stylish img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-overlay-stylish {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 15%, rgba(10,10,12,0.96) 85%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.25rem;
}

.category-card-stylish:hover img {
    transform: scale(1.08);
}

/* Product Card Stylish */
.product-card-stylish {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: var(--transition);
}

.product-card-stylish:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-gold);
}

.product-img-stylish {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #111113;
}

.product-img-stylish img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-stylish:hover .product-img-stylish img {
    transform: scale(1.06);
}

/* Feature Cards */
.feature-card-stylish {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 2.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card-stylish:hover {
    transform: translateY(-8px);
    background: var(--color-surface-hover);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-card);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(229, 193, 88, 0.15);
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: #070708;
    color: #FFFFFF;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(229, 193, 88, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #E4E4E7;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: #A1A1AA;
}

/* Form Controls High-Contrast */
input[type="text"], input[type="email"], input[type="number"], select, textarea {
    background-color: #121215 !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(229, 193, 88, 0.3) !important;
}

input::placeholder, textarea::placeholder {
    color: #A1A1AA !important;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background-color: #25D366;
    color: #FFFFFF;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .hero-headline { font-size: 3.4rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    #mobileMenuBtn { display: block !important; }
    .hero-headline { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
