/* ==========================================================================
   MADE IN DUBAI - PREMIUM STYLESHEET
   Author: Antigravity AI
   Colors: Dark Obsidian (#0A0A0A, #121212, #181818) & Gold (#D4AF37, #AA7C11, #F3E5AB)
   ========================================================================== */

/* 1. INITIAL SYSTEM & VARIABLES */
:root {
    --bg-deep: #0A0A0A;
    --bg-dark: #121212;
    --bg-card: #181818;
    --bg-card-hover: #222222;
    
    --gold: #D4AF37;
    --gold-dark: #AA7C11;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #AA7C11 0%, #D4AF37 50%, #F3E5AB 100%);
    
    --text-white: #FFFFFF;
    --text-muted: #A0A0A0;
    --text-dark: #1A1A1A;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --container-width: 1200px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --gold-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* 2. BASE RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
}

/* 3. BUTTONS & UI ELEMENTS */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--gold-shadow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--gold-shadow);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn-animated::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: 0s;
}

.btn-animated:hover::after {
    left: 120%;
    transition: all 0.8s ease-in-out;
}

.text-gold {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-divider {
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 15px auto 0;
    position: relative;
}

.gold-divider::before {
    content: '◆';
    color: var(--gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    background-color: var(--bg-deep);
    padding: 0 8px;
}

/* 4. TOP ANNOUNCEMENT BAR */
.top-bar {
    background-color: #050505;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-align: center;
    padding: 8px 0;
}

/* 5. MAIN HEADER */
.main-header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 0;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-family: var(--font-serif);
    line-height: 1;
}

.logo-light {
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--text-white);
}

.logo-gold {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white);
    padding: 5px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-trigger, .contact-icon {
    font-size: 18px;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
}

.search-trigger:hover, .contact-icon:hover {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    font-size: 22px;
    color: var(--text-white);
    cursor: pointer;
}

/* 6. SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.98);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.search-box {
    position: relative;
    width: 80%;
    max-width: 600px;
}

.search-box input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--gold);
    color: var(--text-white);
    font-size: 24px;
    padding: 10px 40px 10px 10px;
    outline: none;
    font-family: var(--font-serif);
}

.search-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
}

/* 7. HERO SLIDER */
.hero-slider {
    position: relative;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide-title {
    font-family: var(--font-serif);
    font-size: 56px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.slide-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 35px;
    font-weight: 300;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* 8. FEATURES RIBBON */
.features-ribbon {
    background-color: var(--bg-dark);
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    font-size: 32px;
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-text h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* 9. SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* 10. BRANDS SECTION */
.brands-section {
    background-color: var(--bg-deep);
    padding: 80px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background-color: rgba(212, 175, 55, 0.15); /* Gold divider line color */
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.brand-card {
    background-color: #000000;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.brand-logo-img {
    max-width: 95%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(0.9) grayscale(0.2);
}

.brand-card:hover {
    background-color: #080808;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.12);
}

.brand-card:hover .brand-logo-img {
    transform: scale(1.06);
    filter: brightness(1.1) grayscale(0);
}

.center-btn {
    text-align: center;
}

/* 11. CATEGORIES BANNER SECTION */
.categories-section {
    padding: 20px 0;
    background-color: var(--bg-deep);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.category-banner {
    background-size: cover;
    background-position: center;
    height: 380px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.category-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.2) 70%);
    z-index: 1;
    transition: var(--transition);
}

.category-banner:hover::before {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    transform: translateY(15px);
    transition: var(--transition);
}

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

.banner-content h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.banner-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 300;
}

.gender-banner-btn {
    opacity: 0;
    transition: var(--transition);
}

.category-banner:hover .gender-banner-btn {
    opacity: 1;
}

/* 12. PRODUCT CATALOG SECTION (PERFUMES & WATCHES) */
.catalog-section, .watches-section {
    background-color: var(--bg-deep);
    padding: 80px 0;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-dark);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.brand-select-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-select-wrapper label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.filter-select {
    background-color: var(--bg-deep);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-size: 13px;
    outline: none;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.filter-select:focus {
    border-color: var(--gold);
    box-shadow: var(--gold-shadow);
}

.gender-filter-buttons {
    display: flex;
    gap: 10px;
}

.gender-filter-buttons .filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.gender-filter-buttons .filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gender-filter-buttons .filter-btn.active {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
}

.catalog-results-info {
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* PRODUCT CARD STYLING */
.product-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), var(--gold-shadow);
}

.product-image-container {
    position: relative;
    height: 300px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.product-card img {
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold-dark);
    color: var(--text-white);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    z-index: 5;
}

.product-badge.unisex {
    background-color: #4a5568;
}

.product-badge.kadin {
    background-color: #b83280;
}

.product-badge.erkek {
    background-color: #2b6cb0;
}

.product-details-preview {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.product-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-stars {
    color: #ffd700;
    font-size: 11px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.product-original-price {
    font-size: 13px;
    text-decoration: line-through;
    color: var(--text-muted);
}

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

.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

.quick-view-btn {
    background-color: var(--text-white);
    color: var(--text-dark);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    transform: translateY(15px);
    transition: var(--transition);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* 13. ABOUT COMPANY SECTION */
.about-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    position: relative;
    z-index: 2;
    box-shadow: var(--box-shadow);
}

.about-image-border {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    z-index: 1;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-description {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background-color: var(--bg-deep);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 14. CUSTOMER TESTIMONIALS */
.testimonials-section {
    background-color: var(--bg-deep);
    padding: 80px 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--bg-dark);
    padding: 50px 60px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: var(--box-shadow);
}

.rating-stars {
    color: #ffd700;
    font-size: 14px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    color: #e0e0e0;
    line-height: 1.6;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.t-dot.active {
    background-color: var(--gold);
    transform: scale(1.3);
}

/* 15. TRUST FOOTER RIBBON */
.trust-footer-ribbon {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-item i {
    color: var(--gold);
    font-size: 16px;
}

/* 16. FOOTER */
.footer {
    background-color: #080808;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: inline-flex;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-white);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-links h3, .footer-instagram h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--gold-light);
    text-transform: uppercase;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
}

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

.footer-instagram {
    display: flex;
    flex-direction: column;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.insta-img {
    aspect-ratio: 1;
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.insta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    color: var(--text-muted);
}

.troy-logo {
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--text-muted);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* 17. FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--text-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--box-shadow);
}

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

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* 18. PRODUCT DETAIL MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(40px);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
}

.modal-image-area {
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    min-height: 400px;
}

.modal-image-area img {
    max-height: 380px;
    object-fit: contain;
}

.modal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--gold);
    color: var(--text-dark);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.modal-info-area {
    padding: 50px;
    overflow-y: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-brand {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.2;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-rating .stars {
    color: #ffd700;
    font-size: 13px;
}

.modal-rating .rating-value {
    font-size: 12px;
    color: var(--text-muted);
}

.modal-price-area {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 10px 0;
}

.modal-price-area .original-price {
    font-size: 15px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.modal-price-area .discounted-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-light);
}

.modal-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.scent-notes-box {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 10px 0;
}

.scent-notes-box h3 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 8px;
}

.scent-notes-box .note-item {
    font-size: 13px;
    margin-bottom: 6px;
}

.scent-notes-box .note-item:last-child {
    margin-bottom: 0;
}

.scent-notes-box .note-item strong {
    color: var(--text-white);
}

.scent-notes-box .note-item span {
    color: var(--text-muted);
}

.modal-shipping-info {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-shipping-info i {
    color: var(--gold);
}

.modal-action {
    margin-top: 15px;
}

.btn-whatsapp {
    background-color: #25d366;
    background-image: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* 19. RESPONSIVE DESIGN - MEDIA QUERIES */

@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
    .footer-instagram {
        grid-column: span 4;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    :root {
        --container-width: 720px;
    }
    
    .slide-title {
        font-size: 40px;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-banner {
        height: 280px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image-area {
        min-height: 300px;
        padding: 20px;
    }
    
    .modal-image-area img {
        max-height: 280px;
    }
    
    .modal-info-area {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-instagram {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 540px;
    }
    
    .main-header {
        padding: 15px 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-deep);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px;
        transition: var(--transition);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .slide-title {
        font-size: 32px;
    }
    
    .features-ribbon {
        padding: 30px 0;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        padding: 15px 20px;
    }
    
    .brand-select-wrapper {
        justify-content: space-between;
    }
    
    .gender-filter-buttons {
        justify-content: space-between;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .trust-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-instagram {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    :root {
        --container-width: 100%;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }
    
    .slide-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }
    
    .slide-description {
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-slider {
        height: 50vh !important;
        min-height: 350px !important;
    }
    
    .slide {
        padding: 40px 0 !important;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
    
    .brand-card {
        height: 120px;
        padding: 8px;
    }
    
    .brand-logo-img {
        max-height: 95%;
        max-width: 98%;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image-container {
        height: 180px;
        padding: 10px;
    }
    
    .product-details-preview {
        padding: 12px;
        gap: 4px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .product-original-price {
        font-size: 11px;
    }
    
    .modal-info-area {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    /* Product Detail Page Mobile Overrides */
    .detail-section {
        padding: 40px 0 !important;
    }
    
    .detail-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .detail-image-area {
        padding: 20px !important;
    }
    
    .detail-image-area img {
        max-height: 250px !important;
    }
    
    .detail-title {
        font-size: 24px !important;
    }
    
    .detail-price-area .discounted-price {
        font-size: 26px !important;
    }
    
    .detail-desc {
        font-size: 14px !important;
    }
    
    .scent-notes-box {
        padding: 15px !important;
    }
    
    .note-item {
        font-size: 12px !important;
    }
    
    .detail-trust-info {
        gap: 10px !important;
    }
    
    .trust-pill {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }
    
    .detail-action .btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
    
    .floating-whatsapp {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
        z-index: 99999 !important;
        display: flex !important;
    }
}

/* 20. BREADCRUMBS */
.breadcrumbs-section {
    padding: 20px 0;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumbs a {
    color: var(--text-muted);
}
.breadcrumbs a:hover {
    color: var(--gold);
}
.breadcrumbs i {
    font-size: 10px;
}
.breadcrumbs span {
    color: var(--gold-light);
}

/* 21. PRODUCT DETAIL SECTION */
.detail-section {
    padding: 80px 0;
    background-color: var(--bg-deep);
}
.detail-grid {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    gap: 60px;
}
.detail-image-area {
    background-color: #1a1a1a;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    box-shadow: var(--box-shadow);
}
.detail-image-area img {
    max-height: 480px;
    object-fit: contain;
    transition: var(--transition);
}
.detail-image-area:hover img {
    transform: scale(1.05);
}
.detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--gold);
    color: var(--text-dark);
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}
.detail-badge.erkek { background-color: #2b6cb0; color: #fff; }
.detail-badge.kadin { background-color: #b83280; color: #fff; }
.detail-badge.unisex { background-color: #4a5568; color: #fff; }

.detail-info-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail-brand {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}
.detail-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
}
.detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}
.detail-rating .stars {
    color: #ffd700;
    font-size: 13px;
}
.detail-rating .rating-value {
    font-size: 12px;
    color: var(--text-muted);
}
.detail-price-area {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 10px 0;
}
.detail-price-area .original-price {
    font-size: 16px;
    text-decoration: line-through;
    color: var(--text-muted);
}
.detail-price-area .discounted-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
}
.detail-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}
.detail-trust-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 15px 0;
}
.trust-pill {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-pill i {
    color: var(--gold);
}
.detail-action {
    margin-top: 15px;
}

/* RESPONSIVE DETAIL */
@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .detail-image-area {
        padding: 40px;
    }
    .detail-image-area img {
        max-height: 350px;
    }
    .detail-title {
        font-size: 30px;
    }
}
