/* ============================================
   PARFUM DISCOVERY - Professional Luxury CSS
   ============================================ */

/* ============ VARIABLES ============ */
:root {
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --gold-dark: #a8854a;
    --black: #0a0a0a;
    --black-soft: #1a1a1a;
    --dark: #222222;
    --gray-900: #2d2d2d;
    --gray-800: #3d3d3d;
    --gray-700: #555555;
    --gray-600: #777777;
    --gray-500: #999999;
    --gray-400: #bbbbbb;
    --gray-300: #dddddd;
    --gray-200: #eeeeee;
    --gray-100: #f5f5f5;
    --cream: #faf8f5;
    --white: #ffffff;
    --danger: #dc3545;
    --success: #28a745;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(201,169,110,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============ SELECTION ============ */
::selection {
    background: var(--gold);
    color: var(--white);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    animation: fadeInUp 1s ease;
    letter-spacing: 3px;
}

.preloader-logo::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
    animation: expandWidth 1.5s ease infinite;
}

.preloader-logo-img {
    width: min(180px, 46vw);
    height: auto;
    border-radius: 22px;
    animation: fadeInUp 1s ease;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.35));
}

@keyframes expandWidth {
    0%, 100% { width: 40px; }
    50% { width: 80px; }
}

/* ============ TOP BAR ============ */
.top-bar {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    color: var(--gray-400);
    padding: 10px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(201,169,110,0.2);
}

.top-bar a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.top-bar a:hover {
    color: var(--gold-light);
}

.top-bar .marquee {
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ============ NAVBAR ============ */
.main-nav {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-nav.scrolled {
    box-shadow: var(--shadow-md);
    padding: 2px 0;
}

.main-nav .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black) !important;
    letter-spacing: 1px;
}

.main-nav .navbar-brand .brand-gold {
    color: var(--gold);
}

.main-nav .site-logo {
    width: clamp(118px, 13vw, 172px);
    height: 54px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.main-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.2px;
    padding: 20px 18px !important;
    position: relative;
    transition: var(--transition);
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 70%;
}

.main-nav .nav-link:hover {
    color: var(--gold) !important;
}

.nav-icons a {
    color: var(--dark);
    font-size: 1.1rem;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
}

.nav-icons a:hover {
    color: var(--gold);
    background: rgba(201,169,110,0.1);
}

/* ============ HERO SLIDER ============ */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    height: clamp(520px, 72vh, 760px);
    min-height: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slider .hero-slide-1,
.hero-slider .hero-slide-5 {
    background-position: center 42%;
}

.hero-slider .hero-slide-2,
.hero-slider .hero-slide-3,
.hero-slider .hero-slide-4 {
    background-position: center;
}

.hero-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.hero-slider .slide-content .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-slider .slide-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: none;
    font-weight: 700;
    line-height: 1.1;
}

.hero-slider .slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: none;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 35px;
    border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* ============ BUTTONS ============ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    padding: 14px 35px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,110,0.5);
    color: var(--white);
}

.btn-dark-luxury {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    padding: 14px 35px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-dark-luxury:hover {
    background: transparent;
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============ SECTION STYLES ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header .section-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--black);
    margin-bottom: 15px;
}

.section-header .section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 15px;
}

/* ============ PRODUCT CARDS ============ */
.product-card {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}

.product-card .card-img-top {
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card .card-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    transition: var(--transition);
}

.product-card:hover .card-overlay {
    bottom: 0;
}

.product-card .card-overlay .overlay-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.product-card .card-overlay .overlay-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.product-card .badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--danger);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(220,53,69,0.3);
}

.product-card .badge-new {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
}

.product-card .card-body {
    padding: 20px;
}

.product-card .brand {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.product-card .card-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .card-title a {
    color: var(--dark);
}

.product-card .card-title a:hover {
    color: var(--gold);
}

.product-card .volume-tag {
    font-size: 12px;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.product-card .price {
    color: var(--black);
    font-weight: 700;
    font-size: 18px;
}

.product-card .price-old {
    color: var(--gray-500);
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 400;
}

.product-card .btn-commander {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: block;
    text-align: center;
}

.product-card .btn-commander:hover {
    background: var(--black);
    color: var(--white);
}

/* ============ CATEGORIES SECTION ============ */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 350px;
    cursor: pointer;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.category-card .category-content {
    color: var(--white);
    transform: translateY(10px);
    transition: var(--transition);
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-card .category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.category-card .category-content p {
    opacity: 0;
    transition: var(--transition);
    margin: 0;
    font-size: 14px;
    color: var(--gold-light);
}

.category-card:hover .category-content p {
    opacity: 1;
}

/* ============ TRUST BADGES ============ */
.trust-section {
    background: var(--cream);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-badge {
    text-align: center;
    padding: 30px 15px;
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-badge .trust-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: var(--shadow-gold);
}

.trust-badge h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--black);
}

.trust-badge p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* ============ BRANDS SECTION ============ */
.brands-section {
    padding: 50px 0;
    background: var(--white);
}

.brand-logo {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
    height: 40px;
    object-fit: contain;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: var(--gold-light);
    opacity: 0.4;
}

.testimonial-card .stars {
    color: var(--gold);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-card .author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.testimonial-card .author-city {
    font-size: 12px;
    color: var(--gray-500);
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
}

.newsletter-section h2 {
    color: var(--white);
    font-size: 2rem;
}

.newsletter-section p {
    color: var(--gray-400);
}

.newsletter-input-group {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 15px 25px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-800);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.newsletter-input-group input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.08);
}

.newsletter-input-group input::placeholder {
    color: var(--gray-500);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.footer h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer a {
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer .footer-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer .footer-brand span {
    color: var(--gold);
}

.footer .footer-logo {
    width: min(220px, 70vw);
    height: auto;
    border-radius: 8px;
    display: block;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--gray-800);
    margin-right: 8px;
    color: var(--gray-400);
    transition: var(--transition);
    padding: 0;
}

.footer .social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer .footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 25px;
    margin-top: 50px;
}

.footer .payment-icons i {
    font-size: 1.8rem;
    color: var(--gray-500);
    margin: 0 8px;
    transition: var(--transition-fast);
}

.footer .payment-icons i:hover {
    color: var(--gold);
}

/* ============ WHATSAPP BUTTON ============ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: var(--transition);
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
    color: white;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

.whatsapp-float .tooltip-text {
    position: absolute;
    right: 70px;
    background: var(--black);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* ============ PROMO BAR ============ */
.promo-bar {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 12px 0;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.promo-bar .promo-badge {
    background: var(--black);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-left: 8px;
}

/* ============ PRODUCT PAGE ============ */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery .main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-100);
    box-shadow: var(--shadow-md);
}

.product-gallery .main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-gallery .main-image:hover img {
    transform: scale(1.05);
}

.product-info .product-brand {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info .product-name {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--black);
    margin-bottom: 15px;
}

.product-info .product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
}

.product-info .product-price .old-price {
    font-size: 1.2rem;
    color: var(--gray-500);
    text-decoration: line-through;
    font-weight: 400;
}

.product-info .product-price .save-badge {
    background: rgba(220,53,69,0.1);
    color: var(--danger);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

.product-info .product-tags .tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-700);
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid var(--gray-200);
}

.product-info .stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

.product-info .stock-status.in-stock {
    background: rgba(40,167,69,0.1);
    color: var(--success);
}

.product-info .stock-status.out-of-stock {
    background: rgba(220,53,69,0.1);
    color: var(--danger);
}

.product-info .btn-order-now {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    text-align: center;
}

.product-info .btn-order-now:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
}

.product-info .btn-call {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--black);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
}

.product-info .btn-call:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.guarantee-box {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid var(--gray-200);
}

.guarantee-box .guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.guarantee-box .guarantee-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.guarantee-box .guarantee-item i {
    color: var(--gold);
    font-size: 1.2rem;
    width: 25px;
}

.guarantee-box .guarantee-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}

/* ============ SHOP PAGE ============ */
.shop-sidebar .filter-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.shop-sidebar .filter-card h5 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.shop-sidebar .filter-link {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.shop-sidebar .filter-link:hover,
.shop-sidebar .filter-link.active {
    background: rgba(201,169,110,0.1);
    color: var(--gold-dark);
    font-weight: 600;
    padding-left: 0;
}

.shop-sidebar .filter-link i {
    width: 25px;
    text-align: center;
    margin-right: 8px;
}

/* ============ URGENCY ELEMENTS ============ */
.urgency-bar {
    background: linear-gradient(90deg, #fff3cd, #fff8e1);
    border: 1px solid #ffc107;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.urgency-bar i {
    color: #ff6b00;
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

.urgency-bar span {
    font-size: 13px;
    font-weight: 600;
    color: #856404;
}

/* ============ AD BANNERS ============ */
.ad-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.ad-banner:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.ad-banner img {
    width: 100%;
    height: auto;
    transition: transform 0.6s;
}

.ad-banner:hover img {
    transform: scale(1.05);
}

.ad-banner .ad-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
}

.ad-banner .ad-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.ad-banner .btn-ad {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.ad-banner .btn-ad:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============ ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============ COUNTER ANIMATION ============ */
.counter-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
    padding: 60px 0;
}

.counter-item {
    text-align: center;
    color: var(--white);
}

.counter-item .counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.counter-item .counter-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--gray-600);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: var(--gold);
}

/* ============ PAGINATION ============ */
.pagination .page-link {
    border: none;
    color: var(--dark);
    padding: 10px 16px;
    margin: 0 3px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition-fast);
}

.pagination .page-item.active .page-link {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.pagination .page-link:hover {
    background: var(--gray-100);
    color: var(--gold);
}

/* ============ ORDER FORM ============ */
.order-form-card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.order-form-card .card-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 20px 30px;
    border: none;
}

.order-form-card .card-header h4 {
    color: var(--white);
    margin: 0;
    font-family: var(--font-body);
    font-weight: 600;
}

.order-form-card .form-control {
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    padding: 12px 18px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.order-form-card .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    .hero-slider .swiper-slide {
        height: clamp(430px, 58vh, 560px);
        background-position: center;
    }

    .hero-slider .slide-content h1 {
        font-size: 2rem;
    }

    .main-nav .nav-link {
        padding: 12px 0 !important;
    }

    .product-card .card-img-top {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .hero-slider .swiper-slide {
        height: clamp(420px, 70vh, 520px);
        background-position: center top;
    }

    .hero-slider .hero-slide-1,
    .hero-slider .hero-slide-5 {
        background-position: center top;
    }

    .hero-slider .hero-slide-2,
    .hero-slider .hero-slide-3,
    .hero-slider .hero-slide-4 {
        background-size: auto 100%;
        background-position: center center;
    }

    .hero-slider .slide-content {
        max-width: min(100%, 420px);
        padding: 0 10px;
    }

    .hero-slider .slide-content h1 {
        font-size: 1.6rem;
    }

    .hero-slider .slide-content p {
        font-size: 0.9rem;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        display: none;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .product-card .card-img-top {
        height: 180px;
    }

    .product-card .card-body {
        padding: 12px;
    }

    .product-card .price {
        font-size: 15px;
    }

    .trust-badge {
        padding: 20px 10px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .counter-item .counter-number {
        font-size: 1.8rem;
    }
}

/* ============ FLASH MESSAGES ============ */
.alert {
    border: none;
    border-radius: 0;
    font-size: 14px;
}

/* ============ MISC ============ */
.bg-cream { background-color: var(--cream); }
.text-gold { color: var(--gold); }
.border-gold { border-color: var(--gold) !important; }

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

/* Section title backward compat */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto;
}

/* Swiper overrides */
.heroSwiper .swiper-pagination {
    bottom: 30px;
}

/* Smooth page load */
.page-content {
    opacity: 0;
    animation: pageLoad 0.6s ease forwards;
    animation-delay: 0.2s;
}

@keyframes pageLoad {
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

