
/* ============================================
   VELTOS PROFESSIONAL - Premium Cosmetics
   Luxury E-Commerce Stylesheet
   Color Theme: White, Black, Gold
   ============================================ */

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #B8960C;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --medium-gray: #333333;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --border-light: #E0E0E0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

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

.preloader-logo {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--light-gray);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--gold);
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: 15px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--black) !important;
    letter-spacing: 2px;
    font-weight: 700;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    padding: 8px 18px !important;
    position: relative;
    letter-spacing: 0.5px;
}

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

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

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

.nav-icons a {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-left: 20px;
    position: relative;
    transition: var(--transition);
}

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

.nav-icons .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 50%;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay .search-box {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-overlay input {
    width: 100%;
    padding: 20px 60px 20px 25px;
    font-size: 1.2rem;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--white);
    border-radius: 50px;
    outline: none;
}

.search-overlay input::placeholder {
    color: rgba(255,255,255,0.5);
}

.search-overlay .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.search-overlay .search-btn:hover {
    background: var(--gold-dark);
}

.search-overlay .close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.search-suggestions {
    background: var(--white);
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-suggestions.active {
    display: block;
}

.search-suggestions h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.suggestion-item:hover {
    background: var(--light-gray);
}

.suggestion-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.suggestion-item .info h5 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.suggestion-item .info p {
    font-size: 0.85rem;
    color: var(--gold);
    margin: 0;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-slide .slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 5%;
}

.hero-slide .slide-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.hero-slide .slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .slide-title {
    animation-delay: 0.3s;
}

.hero-slide .slide-desc {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 35px;
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.5s;
    transform: translateY(30px);
}

.hero-slide .btn-gold {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
    animation-delay: 0.7s;
    transform: translateY(30px);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--gold);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-slider .slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.slider-arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-arrows button:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    background: var(--gold);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 2px solid var(--gold);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: var(--transition);
    transform: skewX(-15deg);
}

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

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

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

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

.btn-black:hover {
    background: transparent;
    color: var(--black);
}

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

.section-header .section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.section-header .section-title {
    font-size: 2.8rem;
    color: var(--black);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.section-header .section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 30px auto 0;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border-light);
}

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

.product-card .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.product-card .product-badge.sale {
    background: #E74C3C;
}

.product-card .product-badge.new {
    background: var(--black);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--light-gray);
}

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

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

.product-card .product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.95);
    transition: var(--transition);
}

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

.product-card .product-actions button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.product-card .product-actions button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.product-card .product-actions button.active,
.product-card .product-actions .add-to-wishlist.active {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--white) !important;
}

.product-card .product-actions button.active i,
.product-card .product-actions .add-to-wishlist.active i {
    font-weight: 900;
}

.product-card .product-info {
    padding: 20px;
    text-align: center;
}

.product-card .product-category {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-card .product-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-family: var(--font-secondary);
}

.product-card .product-rating {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.product-card .product-rating .count {
    color: var(--text-muted);
    margin-left: 5px;
    font-size: 0.8rem;
}

.product-card .product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-card .product-price .current {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
}

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

/* ============================================
   CATEGORIES
   ============================================ */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.8);
}

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

.category-card .category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    padding-bottom: 40px;
}

.category-card .category-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.category-card .category-count {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.feature-box {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.feature-box:hover .icon {
    background: var(--gold);
    color: var(--white);
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   REVIEWS
   ============================================ */
.review-card {
    background: var(--white);
    padding: 35px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.review-card .stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.review-card .review-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-card .reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card .reviewer-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

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

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
}

.newsletter-section .section-title {
    color: var(--white);
}

.newsletter-section .section-title::after {
    background: var(--gold);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 16px 35px;
    background: var(--gold);
    border: 2px solid var(--gold);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-brand {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

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

.footer-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 5px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-section {
    background: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.breadcrumb-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.breadcrumb {
    justify-content: center;
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

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

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

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: var(--text-muted);
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-sidebar {
    background: var(--white);
    padding: 30px;
    border: 1px solid var(--border-light);
}

.filter-widget {
    margin-bottom: 35px;
}

.filter-widget:last-child {
    margin-bottom: 0;
}

.filter-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
}

.filter-widget h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.filter-list {
    list-style: none;
    padding: 0;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-list label:hover {
    color: var(--gold);
}

.filter-list input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-light);
    border-radius: 3px;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.filter-list input[type="checkbox"]:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.filter-list input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: bold;
}

.filter-list .count {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-range {
    padding: 10px 0;
}

.price-range input[type="range"] {
    width: 100%;
    margin-bottom: 15px;
    accent-color: var(--gold);
}

.price-range .price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rating-filter .stars {
    color: var(--gold);
    font-size: 0.85rem;
}

.rating-filter .stars .empty {
    color: var(--border-light);
}

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

.product-gallery .main-image {
    background: var(--light-gray);
    border: 1px solid var(--border-light);
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}

.product-gallery .main-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

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

.product-gallery .thumb-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-gallery .thumb-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.product-gallery .thumb-images img.active,
.product-gallery .thumb-images img:hover {
    border-color: var(--gold);
}

.product-details-info h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-details-info .rating {
    color: var(--gold);
    margin-bottom: 20px;
}

.product-details-info .price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

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

.product-details-info .price .original {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-details-info .price .discount {
    background: #E74C3C;
    color: var(--white);
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-details-info .short-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.product-meta {
    margin-bottom: 25px;
}

.product-meta li {
    display: flex;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.product-meta li span:first-child {
    width: 120px;
    color: var(--text-muted);
}

.product-meta li span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    width: fit-content;
    margin-bottom: 25px;
}

.quantity-selector button {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--light-gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--gold);
    color: var(--white);
}

.quantity-selector input {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    outline: none;
}

.product-actions-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-tabs {
    margin-top: 60px;
}

.product-tabs .nav-tabs {
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 30px;
}

.product-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    padding: 15px 25px !important;
    font-weight: 600;
    color: var(--text-muted) !important;
    background: none;
    margin-bottom: -2px;
}

.product-tabs .nav-tabs .nav-link.active {
    color: var(--gold) !important;
    border-bottom-color: var(--gold);
}

.product-tabs .tab-content {
    padding: 30px 0;
}

.product-tabs .tab-content h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.product-tabs .tab-content p,
.product-tabs .tab-content li {
    color: var(--text-muted);
    line-height: 1.8;
}

.product-tabs .tab-content ul {
    padding-left: 20px;
}

.product-tabs .tab-content li {
    margin-bottom: 8px;
}

/* Reviews in tabs */
.review-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-light);
}

.review-item:last-child {
    border-bottom: none;
}

.review-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-item .review-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.review-item .review-content .stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.review-item .review-content .date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.review-item .review-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.9rem;
}

.review-item .review-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.review-item .review-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    background: var(--light-gray);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.cart-table .product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-table .product-cell img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-table .product-cell .info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-table .product-cell .info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.cart-table .remove-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: #E74C3C;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-table .remove-btn:hover {
    background: #E74C3C;
    color: var(--white);
    border-color: #E74C3C;
}

.cart-summary {
    background: var(--light-gray);
    padding: 30px;
    border: 1px solid var(--border-light);
}

.cart-summary h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 15px;
    border-top: 2px solid var(--border-light);
    color: var(--gold);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-form {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--border-light);
}

.checkout-form h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
}

.checkout-form h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #E74C3C;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 0;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.form-select {
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 0;
    font-size: 0.95rem;
    background-color: var(--white);
}

.payment-method {
    border: 1px solid var(--border-light);
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.payment-method input {
    accent-color: var(--gold);
}

.payment-method label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.payment-method .method-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

/* ============================================
   ORDER TRACKING
   ============================================ */
.tracking-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tracking-search {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.tracking-search input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.tracking-search input:focus {
    border-color: var(--gold);
}

.tracking-timeline {
    position: relative;
    padding: 20px 0;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border-light);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-right: 40px;
    padding-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--border-light);
    border: 3px solid var(--white);
    z-index: 2;
}

.timeline-dot.active {
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.2);
}

.timeline-dot.current {
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
}

.timeline-content {
    width: 50%;
    padding: 0 40px;
}

.timeline-content h5 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.timeline-content .date {
    font-size: 0.8rem;
    color: var(--gold);
    margin-top: 5px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--gold);
    transition: var(--transition);
}

.contact-info-card:hover .icon {
    background: var(--gold);
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--border-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero .about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.about-hero .about-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.about-hero .about-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-hero .about-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-section {
    padding: 80px 0;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 25px 35px;
    text-align: center;
}

.about-image .experience-badge h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    line-height: 1;
}

.about-image .experience-badge p {
    font-size: 0.85rem;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.accordion-item {
    border: 1px solid var(--border-light);
    margin-bottom: 15px;
    border-radius: 0 !important;
    overflow: hidden;
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--light-gray);
    color: var(--gold);
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.chatbot-toggle .close-icon {
    display: none;
}

.chatbot-widget.active .chatbot-toggle .chat-icon {
    display: none;
}

.chatbot-widget.active .chatbot-toggle .close-icon {
    display: block;
}

.chatbot-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.chatbot-widget.active .chatbot-window {
    display: flex;
}

.chatbot-header {
    background: var(--black);
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chatbot-header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chatbot-header h5 {
    font-size: 1rem;
    margin: 0;
}

.chatbot-header p {
    font-size: 0.75rem;
    opacity: 0.7;
    margin: 0;
}

.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: var(--light-gray);
}

.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message .message-bubble {
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-message.bot .message-bubble {
    background: var(--white);
    color: var(--text-dark);
    border-bottom-left-radius: 5px;
}

.chat-message.user .message-bubble {
    background: var(--gold);
    color: var(--white);
    border-bottom-right-radius: 5px;
}

.chat-message .message-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.chatbot-footer {
    padding: 15px;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 10px;
}

.chatbot-footer input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
}

.chatbot-footer input:focus {
    border-color: var(--gold);
}

.chatbot-footer button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-footer button:hover {
    background: var(--gold-dark);
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-replies button {
    padding: 8px 15px;
    border: 1px solid var(--border-light);
    background: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.quick-replies button:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ============================================
   GOOGLE LOGIN MODAL
   ============================================ */
.modal-content {
    border-radius: 0;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: 1px solid var(--border-light);
    padding: 25px 30px;
}

.modal-header .modal-title {
    font-size: 1.3rem;
}

.modal-body {
    padding: 30px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-light);
    background: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.google-btn:hover {
    background: var(--light-gray);
    border-color: var(--gold);
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-slide .slide-title {
        font-size: 2.5rem;
    }

    .section-header .section-title {
        font-size: 2rem;
    }

    .about-hero .about-content h1 {
        font-size: 2.5rem;
    }

    .chatbot-window {
        width: 320px;
        height: 450px;
    }
}

@media (max-width: 767px) {
    .hero-slide .slide-title {
        font-size: 2rem;
    }

    .hero-slide .slide-desc {
        font-size: 0.95rem;
    }

    .section-header .section-title {
        font-size: 1.7rem;
    }

    .btn-gold, .btn-outline-gold, .btn-black {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    .product-card .product-actions {
        bottom: 0;
        opacity: 1;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--border-light);
        padding: 15px;
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    .cart-table td:last-child {
        border-bottom: none;
    }

    .tracking-timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
        padding-left: 50px;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        width: 100%;
        padding: 0;
    }

    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-window {
        width: calc(100vw - 40px);
        right: -10px;
    }

    .about-image .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }

    .about-image .experience-badge h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .hero-slide .slide-title {
        font-size: 1.6rem;
    }

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

    .navbar-brand {
        font-size: 1.4rem;
    }

    .checkout-form {
        padding: 25px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

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

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

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

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