@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* ============================================================
   HABIBI E-COMMERCE - MAIN STYLESHEET
   Premium Luxury E-Commerce Theme
   Dark & Light Mode Support
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Gold / Accent */
    --gold: #c8a96e;
    --gold-light: #d4ba85;
    --gold-dark: #b08d4f;
    --gold-hover: #dcc89a;

    /* Font Families */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==================== DARK THEME (DEFAULT) ==================== */
[data-theme="dark"] {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-input: #1a1a1a;
    --bg-header: #0d0d0d;
    --bg-nav: #0a0a0a;
    --bg-footer: #080808;
    --bg-trust: #0f0f0f;
    --bg-hover: #1e1e1e;

    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #777777;

    --border-color: #222222;
    --border-light: #2a2a2a;

    --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5);

    --overlay-gradient: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

/* ==================== LIGHT THEME ==================== */
[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-card: #ffffff;
    --bg-input: #f0f0f0;
    --bg-header: #ffffff;
    --bg-nav: #f5f5f5;
    --bg-footer: #1a1a1a;
    --bg-trust: #f9f9f9;
    --bg-hover: #f0f0f0;

    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-muted: #888888;

    --border-color: #e5e5e5;
    --border-light: #eeeeee;

    --shadow-card: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

    --overlay-gradient: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.2) 100%);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--gold);
    color: #000;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    padding: 8px 0;
    text-align: center;
}

.top-bar-text {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.5px;
}

/* ==================== HEADER ==================== */
.main-header {
    background-color: var(--bg-header);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 420px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 10px 45px 10px 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-input);
    color: var(--text-primary);
    font-size: 13px;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(200, 169, 110, 0.15);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px 10px;
    transition: var(--transition);
}

.search-btn:hover {
    color: var(--gold);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.header-action-item:hover {
    background-color: var(--bg-hover);
    color: var(--gold);
}

.action-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.action-text {
    display: flex;
    flex-direction: column;
}

.action-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.action-sub {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Theme Toggle */
.theme-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.theme-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 32px;
}

.theme-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0;
}

.theme-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gold);
    border-radius: 24px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.theme-toggle input:checked + .toggle-slider::before {
    transform: translateX(20px);
    background-color: #1a1a1a;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    display: none;
}

/* ==================== NAVIGATION ==================== */
.main-nav {
    background-color: var(--bg-nav);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.4s ease;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link-custom {
    display: block;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link-custom:hover,
.nav-item.active .nav-link-custom {
    color: var(--gold);
}

.nav-link-custom:hover::after,
.nav-item.active .nav-link-custom::after {
    width: 60%;
}

/* Dropdown */
.custom-dropdown {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: var(--shadow-hover);
    padding: 8px 0;
    min-width: 200px;
    margin-top: 0;
}

.custom-dropdown .dropdown-item {
    color: var(--text-secondary);
    padding: 8px 20px;
    font-size: 13px;
    transition: var(--transition);
}

.custom-dropdown .dropdown-item:hover {
    color: var(--gold);
    background-color: var(--bg-hover);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 40%, rgba(10,10,10,0.2) 70%, transparent 100%);
}

[data-theme="light"] .hero-overlay {
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.3) 70%, transparent 100%);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 60px 0;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hero-highlight {
    color: var(--gold);
    font-style: italic;
}

.hero-desc {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 380px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.btn-shop-now {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.btn-shop-now:hover {
    background-color: transparent;
    color: var(--gold);
}

/* ==================== TRUST BADGES ==================== */
.trust-badges {
    background-color: var(--bg-trust);
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transition: background-color 0.4s ease;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 0;
}

.trust-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.trust-text span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    padding: 50px 0 30px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
}

.view-all-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

/* Product Cards */
.product-card-wrapper {
    padding: 0 10px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-input);
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 8px 20px;
    background: var(--gold);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transform: translateY(15px);
    transition: var(--transition);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: var(--gold-hover);
    color: #000;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.badge-hot {
    background: #e74c3c;
    color: #fff;
}

.badge-new {
    background: var(--gold);
    color: #000;
}

.product-info {
    padding: 14px 16px;
}

.product-brand {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.product-name {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

.add-to-cart-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #000;
}

/* Slick Slider Custom Arrows */
.products-slider .slick-prev,
.products-slider .slick-next {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.products-slider .slick-prev {
    left: -15px;
}

.products-slider .slick-next {
    right: -15px;
}

.products-slider .slick-prev:hover,
.products-slider .slick-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.products-slider .slick-prev::before,
.products-slider .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--text-primary);
    opacity: 1;
}

.products-slider .slick-prev::before {
    content: '\f053';
}

.products-slider .slick-next::before {
    content: '\f054';
}

.products-slider .slick-prev:hover::before,
.products-slider .slick-next:hover::before {
    color: #000;
}

/* ==================== PROMOTIONAL BANNERS ==================== */
.promo-banners {
    padding: 20px 0 50px;
}

.promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    cursor: pointer;
}

.promo-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.promo-card:hover .promo-bg-img {
    transform: scale(1.05);
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%);
}

.promo-content {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 280px;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-style: italic;
}

.promo-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.5;
}

.promo-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.promo-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

/* ==================== CATEGORY ICONS ==================== */
.category-icons {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    transition: background-color 0.4s ease;
}

.category-icons-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    transition: var(--transition);
}

.category-icon-item:hover {
    transform: translateY(-5px);
}

.category-icon-item:hover .category-icon-circle {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.2);
}

.category-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    background-color: var(--bg-card);
}

.category-icon-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    transition: var(--transition);
}

.category-icon-item:hover .category-icon-label {
    color: var(--gold);
}

/* ==================== FOOTER ==================== */
.main-footer {
    background-color: var(--bg-footer);
    padding-top: 50px;
    transition: background-color 0.4s ease;
}

[data-theme="light"] .main-footer {
    background-color: #111111;
}

.footer-top {
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 260px;
}

.footer-logo img {
    height: 120px;
    width: auto;
    margin-bottom: 14px;
}

/* In light mode, show dark logo in footer (since footer is always dark) */
[data-theme="light"] .footer-logo-light {
    display: none !important;
}

[data-theme="light"] .footer-logo-dark {
    display: block !important;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background-color: rgba(200, 169, 110, 0.1);
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.newsletter-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
    line-height: 1.5;
}

.newsletter-input-group {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-btn {
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border: none;
    color: #000;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--gold-hover);
}

/* Footer Bottom */
.footer-bottom {
    padding: 22px 0;
    margin-top: 0;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 32px;
    border-radius: 4px;
    font-size: 20px;
}

.payment-icon.visa {
    background: #1a1f71;
    color: #fff;
}

.payment-icon.mastercard {
    background: #f79e1b;
    color: #fff;
}

.payment-icon.amex {
    background: #2e77bc;
    color: #fff;
}

.payment-icon.apple-pay {
    background: #333;
    color: #fff;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE - LARGE DESKTOP (>1200px) ==================== */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }

    .hero-section {
        min-height: 500px;
    }
}

/* ==================== RESPONSIVE - DESKTOP (992px - 1199px) ==================== */
@media (max-width: 1199px) {
    .nav-link-custom {
        padding: 14px 16px;
        font-size: 12px;
    }

    .header-actions {
        gap: 12px;
    }

    .action-text {
        display: none;
    }
}

/* ==================== RESPONSIVE - TABLET (768px - 991px) ==================== */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .header-search {
        display: none;
    }

    .header-actions {
        gap: 10px;
    }

    .action-text {
        display: none;
    }

    /* Mobile Nav */
    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link-custom {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link-custom::after {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-section {
        min-height: 380px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .promo-card {
        height: 200px;
    }

    .category-icon-circle {
        width: 60px;
        height: 60px;
    }

    .category-icon-circle svg {
        width: 28px;
        height: 28px;
    }
}

/* ==================== RESPONSIVE - MOBILE (<576px) ==================== */
@media (max-width: 575px) {
    .top-bar-text {
        font-size: 10px;
    }

    .main-header {
        padding: 10px 0;
    }

    .header-logo img {
        height: 70px;
    }

    .header-inner {
        gap: 10px;
    }

    .theme-toggle-wrapper {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 13px;
    }

    .hero-section {
        min-height: 320px;
    }

    .hero-content {
        padding: 30px 0;
    }

    .btn-shop-now {
        padding: 12px 28px;
        font-size: 12px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .trust-text strong {
        font-size: 11px;
    }

    .trust-text span {
        font-size: 10px;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 22px;
    }

    .products-section {
        padding: 35px 0 20px;
    }

    .promo-banners {
        padding: 10px 0 35px;
    }

    .promo-card {
        height: 180px;
        margin-bottom: 15px;
    }

    .promo-title {
        font-size: 20px;
    }

    .promo-desc {
        font-size: 12px;
    }

    .promo-content {
        left: 20px;
        max-width: 200px;
    }

    .category-icons {
        padding: 30px 0;
    }

    .category-icons-row {
        gap: 10px;
    }

    .category-icon-circle {
        width: 52px;
        height: 52px;
    }

    .category-icon-circle svg {
        width: 24px;
        height: 24px;
    }

    .category-icon-label {
        font-size: 11px;
    }

    .category-icon-item {
        padding: 6px 8px;
    }

    .main-footer {
        padding-top: 35px;
    }

    .footer-heading {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .payment-methods {
        justify-content: flex-start;
        margin-top: 15px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
    }
}

/* ==================== LIGHT MODE SPECIFIC OVERRIDES ==================== */
[data-theme="light"] .top-bar {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
}

[data-theme="light"] .hero-title {
    color: #1a1a1a;
}

[data-theme="light"] .hero-desc {
    color: #555;
}

[data-theme="light"] .product-card {
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

[data-theme="light"] .product-card:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

/* Light mode footer stays dark */
[data-theme="light"] .footer-heading,
[data-theme="light"] .footer-desc,
[data-theme="light"] .footer-links a,
[data-theme="light"] .newsletter-desc,
[data-theme="light"] .copyright,
[data-theme="light"] .social-link {
    /* These already have explicit white/rgba colors, no override needed */
}

/* ==================== SLICK DOTS ==================== */
.products-slider .slick-dots {
    bottom: -30px;
}

.products-slider .slick-dots li button::before {
    color: var(--text-muted);
    font-size: 8px;
    opacity: 0.5;
}

.products-slider .slick-dots li.slick-active button::before {
    color: var(--gold);
    opacity: 1;
}

/* ==================== MOBILE SEARCH (TOGGLE) ==================== */
.mobile-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.mobile-search-overlay.active {
    display: flex;
}

.mobile-search-form {
    width: 90%;
    max-width: 500px;
    position: relative;
}

.mobile-search-form input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
}

.mobile-search-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
}
/* ============================================================
   HABIBI E-COMMERCE - PRODUCT DETAIL PAGE STYLESHEET
   ============================================================ */

/* ==================== BREADCRUMB ==================== */
.breadcrumb-section {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
}

.custom-breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.custom-breadcrumb .breadcrumb-item a {
    color: var(--text-muted);
    transition: var(--transition);
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: var(--gold);
}

.custom-breadcrumb .breadcrumb-item.active {
    color: var(--text-secondary);
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: var(--text-muted);
    font-size: 11px;
    padding: 0 8px;
}

/* ==================== PRODUCT DETAIL SECTION ==================== */
.product-detail-section {
    padding: 40px 0;
}

/* ---- Product Gallery ---- */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    margin-bottom: 15px;
}

.main-image-wrapper {
    position: relative;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: crosshair;
}

.main-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.4s ease;
}

.main-image-wrapper:hover .main-product-img {
    transform: scale(1.03);
}

.zoom-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.zoom-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #000;
}

/* Thumbnail Slider */
.gallery-thumbs-slider {
    margin: 0 -5px;
}

.gallery-thumbs-slider .slick-list {
    padding: 0 !important;
}

.thumb-item {
    padding: 0 5px;
    cursor: pointer;
}

.thumb-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    padding: 5px;
    background-color: var(--bg-card);
    transition: var(--transition);
}

.thumb-item.active img,
.thumb-item:hover img {
    border-color: var(--gold);
}

/* Slick arrows for thumbs */
.gallery-thumbs-slider .slick-prev,
.gallery-thumbs-slider .slick-next {
    width: 30px;
    height: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.gallery-thumbs-slider .slick-prev {
    left: -5px;
}

.gallery-thumbs-slider .slick-next {
    right: -5px;
}

.gallery-thumbs-slider .slick-prev:hover,
.gallery-thumbs-slider .slick-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.gallery-thumbs-slider .slick-prev::before,
.gallery-thumbs-slider .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--text-primary);
    opacity: 1;
}

.gallery-thumbs-slider .slick-prev::before {
    content: '\f053';
}

.gallery-thumbs-slider .slick-next::before {
    content: '\f054';
}

.gallery-thumbs-slider .slick-prev:hover::before,
.gallery-thumbs-slider .slick-next:hover::before {
    color: #000;
}

/* ---- Product Detail Info ---- */
.product-detail-info {
    padding-left: 15px;
}

.product-meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.product-detail-brand {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.meta-separator {
    color: var(--text-muted);
    font-size: 14px;
}

.product-detail-category {
    font-size: 14px;
    color: var(--gold);
    transition: var(--transition);
}

.product-detail-category:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

.product-detail-name {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.product-detail-price {
    margin-bottom: 16px;
}

.current-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.original-price {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 12px;
}

.product-detail-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Stock & SKU */
.product-stock-sku {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

.stock-status {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stock-status.in-stock {
    color: #27ae60;
}

.stock-status.in-stock i {
    font-size: 8px;
}

.stock-status.out-of-stock {
    color: #e74c3c;
}

.sku-label {
    font-size: 13px;
    color: var(--text-muted);
}

.detail-divider {
    border-color: var(--border-color);
    margin: 18px 0;
}

/* Product Options */
.product-option-group {
    margin-bottom: 20px;
}

.option-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: block;
}

.selected-option-text {
    color: var(--gold);
    font-weight: 400;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    gap: 10px;
}

.color-swatch {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    outline: none;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--bg-primary), 0 0 0 5px var(--gold);
}

/* Size Options */
.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    padding: 8px 22px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-input);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.size-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.size-btn.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #000;
    font-weight: 600;
}

/* Quantity & Cart Row */
.quantity-cart-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-input);
}

.qty-btn {
    width: 40px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 12px;
}

.qty-btn:hover {
    background-color: var(--gold);
    color: #000;
}

.qty-input {
    width: 50px;
    height: 42px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Wishlist Button */
.wishlist-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-input);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    border-color: #e74c3c;
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

.wishlist-btn.active svg {
    fill: #e74c3c;
}

/* Add to Cart Button */
.btn-add-to-cart {
    flex: 1;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 4px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-to-cart:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

/* Buy Now Button */
.btn-buy-now {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 4px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 24px;
}

.btn-buy-now:hover {
    background-color: var(--gold);
    color: #000;
}

/* Product Badges Row */
.product-badges-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.product-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    color: var(--gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.badge-text span {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==================== PRODUCT TABS ==================== */
.product-tabs-section {
    padding: 30px 0 50px;
}

.product-tabs {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-card);
}

/* Tab Navigation */
.tab-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid var(--border-color);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-nav::-webkit-scrollbar {
    height: 0;
}

.tab-nav-item {
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.tab-nav-item:hover {
    color: var(--text-primary);
}

.tab-nav-item.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Tab Content */
.tab-content-area {
    padding: 28px 30px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-list li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 4px;
}

.product-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

.tab-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    margin-top: 8px;
}

/* Additional Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--border-color);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 12px 0;
    font-size: 13px;
}

.info-label {
    color: var(--text-muted);
    font-weight: 600;
    width: 180px;
}

.info-value {
    color: var(--text-primary);
}

/* ==================== RELATED PRODUCTS ==================== */
.related-products-section {
    padding: 30px 0 50px;
}

.highlight-gold {
    color: var(--gold);
    font-style: italic;
}

.related-nav-arrows {
    display: flex;
    gap: 8px;
}

.related-arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 12px;
}

.related-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background-color: rgba(200, 169, 110, 0.1);
}

/* ==================== ZOOM MODAL ==================== */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-modal.active {
    display: flex;
    opacity: 1;
}

.zoom-modal-content {
    position: relative;
    max-width: 85vw;
    max-height: 85vh;
}

.zoomed-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.zoom-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.zoom-close-btn:hover {
    background: var(--gold-hover);
    transform: scale(1.1);
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 991px) {
    .product-detail-info {
        padding-left: 0;
        margin-top: 20px;
    }

    .product-detail-name {
        font-size: 26px;
    }

    .current-price {
        font-size: 22px;
    }

    .product-badges-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .tab-nav-item {
        padding: 12px 18px;
        font-size: 11px;
    }

    .tab-content-area {
        padding: 22px;
    }

    .product-gallery {
        position: static;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .product-detail-section {
        padding: 25px 0;
    }

    .product-detail-name {
        font-size: 22px;
    }

    .current-price {
        font-size: 20px;
    }

    .product-detail-desc {
        font-size: 13px;
    }

    .product-stock-sku {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .quantity-cart-row {
        flex-wrap: wrap;
    }

    .btn-add-to-cart {
        flex: unset;
        width: 100%;
        order: 3;
    }

    .quantity-selector {
        flex: 1;
    }

    .product-badges-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .badge-text strong {
        font-size: 11px;
    }

    .tab-nav {
        overflow-x: auto;
    }

    .tab-nav-item {
        padding: 10px 14px;
        font-size: 10px;
    }

    .tab-content-area {
        padding: 18px 16px;
    }

    .related-products-section {
        padding: 20px 0 35px;
    }

    .custom-breadcrumb {
        font-size: 11px;
    }

    .info-label {
        width: 120px;
    }

    .zoom-modal-content {
        max-width: 95vw;
    }
}


/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

/* ==================== CONTACT HERO ==================== */
.contact-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.85) 40%, rgba(10,10,10,0.4) 70%, rgba(10,10,10,0.2) 100%);
}

[data-theme="light"] .contact-hero-overlay {
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.3) 70%, transparent 100%);
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    padding: 55px 0;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.contact-hero-title em {
    font-style: italic;
}

.contact-hero-divider {
    width: 50px;
    height: 3px;
    background-color: var(--gold);
    margin-bottom: 18px;
    border-radius: 2px;
}

.contact-hero-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 400px;
}

/* ==================== CONTACT INFO CARDS ==================== */
.contact-info-section {
    padding: 40px 0;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--gold-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-info-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==================== CONTACT FORM & MAP ==================== */
.contact-form-section {
    padding: 20px 0 50px;
}

.contact-form-wrapper,
.contact-map-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-form-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Form Elements */
.form-group-custom {
    margin-bottom: 18px;
}

.form-label-custom {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: block;
}

.required {
    color: var(--gold);
}

.form-input-custom {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-input);
    color: var(--text-primary);
    font-size: 13px;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
}

.form-input-custom::placeholder {
    color: var(--text-muted);
}

.form-input-custom:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(200, 169, 110, 0.12);
}

.form-select-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-select-custom option {
    background-color: var(--bg-card);
    color: var(--text-primary);
}

.form-textarea-custom {
    resize: vertical;
    min-height: 110px;
}

.btn-send-message {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 4px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.btn-send-message:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Map */
.map-container {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 16px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

[data-theme="light"] .map-container iframe {
    filter: none !important;
}

.map-info-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 220px;
    box-shadow: var(--shadow-hover);
}

.map-pin-icon {
    margin-bottom: 6px;
}

.map-info-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.map-info-address {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.map-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 6px 14px;
    transition: var(--transition);
}

.map-directions-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background-color: rgba(200, 169, 110, 0.08);
}

/* ==================== CONNECT WITH US ==================== */
.connect-social-section {
    padding: 40px 0;
}

.connect-social-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 30px 35px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.connect-social-left {
    flex-shrink: 0;
    min-width: 220px;
}

.connect-social-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.connect-social-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.connect-social-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end;
}

.social-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.social-card-item:hover {
    background-color: var(--bg-hover);
    transform: translateY(-2px);
}

.social-card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--border-color);
    font-size: 18px;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-card-item:hover .social-card-icon {
    border-color: var(--gold);
    color: var(--gold);
}

.social-card-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.social-card-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==================== FAQ SECTION ==================== */
.contact-faq-section {
    padding: 40px 0;
}

.faq-branding {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.faq-brand-image {
    margin-bottom: 20px;
}

.faq-logo-img {
    max-width: 180px;
    height: auto;
    opacity: 0.8;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.faq-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-view-faqs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 4px;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-view-faqs:hover {
    background-color: transparent;
    color: var(--gold);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-card);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-dark);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-chevron {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ==================== CONTACT CTA BANNER ==================== */
.contact-cta-section {
    padding: 0 0 50px;
}

.contact-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    min-height: 140px;
    padding: 35px 40px;
}

.contact-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.5) 100%);
}

[data-theme="light"] .contact-cta-overlay {
    background: linear-gradient(90deg, rgba(30,30,30,0.92) 0%, rgba(30,30,30,0.75) 50%, rgba(30,30,30,0.55) 100%);
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.contact-cta-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.7;
}

.contact-cta-action {
    position: relative;
    z-index: 1;
}

.btn-get-in-touch {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 4px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-get-in-touch:hover {
    background-color: transparent;
    color: var(--gold);
}

/* ==================== CONTACT PAGE RESPONSIVE ==================== */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 34px;
    }

    .connect-social-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .connect-social-right {
        justify-content: center;
    }

    .contact-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }

    .contact-form-wrapper,
    .contact-map-wrapper {
        height: auto;
    }
}

@media (max-width: 575px) {
    .contact-hero-content {
        padding: 35px 0;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-desc {
        font-size: 13px;
    }

    .contact-info-card {
        padding: 18px 16px;
    }

    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 22px 18px;
    }

    .map-container {
        height: 280px;
    }

    .map-info-card {
        bottom: 10px;
        left: 10px;
        padding: 12px 14px;
        min-width: 180px;
    }

    .connect-social-right {
        flex-direction: column;
        gap: 12px;
    }

    .faq-branding {
        padding: 24px 18px;
    }

    .contact-cta-inner {
        padding: 24px 20px;
    }

    .contact-cta-title {
        font-size: 22px;
    }
}

/* ============================================================
   BRANDS PAGE STYLES
   ============================================================ */

/* ==================== BRANDS HERO ==================== */
.brands-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.brands-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.brands-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.brands-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.85) 45%, rgba(10,10,10,0.2) 100%);
}

[data-theme="light"] .brands-hero-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.3) 100%);
}

.brands-hero .container {
    position: relative;
    z-index: 1;
}

.brands-hero-content {
    padding: 60px 0;
    max-width: 500px;
}

.hero-tag-gold {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.brands-hero-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.brands-hero-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ==================== TOP BRANDS GRID ==================== */
.top-brands-section {
    padding: 60px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.title-divider {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 40px;
}

.brand-grid {
    margin-bottom: 20px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 15px 15px;
    height: 100%;
    transition: var(--transition);
    text-decoration: none !important;
}

.brand-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.brand-logo-wrap {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: var(--transition);
}

.brand-card:hover .brand-logo-wrap {
    color: var(--gold);
}

.brand-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.brand-card:hover .brand-name {
    color: var(--gold);
}

.btn-view-all {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-view-all:hover {
    background-color: var(--gold);
    color: #000;
}

/* ==================== BEST SELLERS BY BRAND ==================== */
.best-sellers-brand-section {
    padding: 20px 0 60px;
}

.custom-showcase-row {
    margin: 0 -10px;
}

.custom-showcase-row > [class^="col-"] {
    padding: 0 10px;
}

.custom-banner-card {
    position: relative;
    border: 1px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px 30px;
}

.brand-showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.brand-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 100%);
    z-index: 1;
}

[data-theme="light"] .brand-showcase-overlay {
    background: linear-gradient(to right, rgba(30,30,30,0.9) 0%, rgba(30,30,30,0.6) 100%);
}

.brand-showcase-content {
    position: relative;
    z-index: 2;
}

.brand-showcase-title {
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.brand-showcase-desc {
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-shop-brand {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-shop-brand:hover {
    background-color: var(--gold);
    color: #000;
}

.brand-products-slider {
    margin: 0 -10px;
}

.product-item-wrap {
    padding: 0 10px;
}

.custom-product-card {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

[data-theme="light"] .custom-product-card {
    background-color: #f9f9f9;
    border-color: #e0e0e0;
}

.custom-product-card:hover {
    border-color: var(--gold);
}

.custom-img-wrap {
    height: 220px;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.custom-img-wrap .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #333;
    font-size: 16px;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
}

.custom-img-wrap .wishlist-btn:hover {
    color: var(--gold);
}

.custom-product-info {
    padding: 20px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-product-info .product-title {
    font-size: 13px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
}

[data-theme="light"] .custom-product-info .product-title {
    color: #000;
}

.custom-product-info .product-price {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    margin: 0;
}

.brand-products-slider .slick-prev,
.brand-products-slider .slick-next {
    width: 36px;
    height: 36px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.brand-products-slider .slick-prev { left: -18px; }
.brand-products-slider .slick-next { right: -18px; }

.brand-products-slider .slick-prev:before,
.brand-products-slider .slick-next:before {
    color: var(--gold);
    font-size: 12px;
    opacity: 1;
}

.brand-products-slider .slick-prev:hover,
.brand-products-slider .slick-next:hover {
    border-color: var(--gold);
}

/* ==================== LUXURY SALE BANNER ==================== */
.luxury-sale-section {
    padding: 20px 0 60px;
}

.luxury-sale-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
}

.luxury-sale-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.luxury-sale-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,0.3) 100%);
    z-index: 1;
}

[data-theme="light"] .luxury-sale-overlay {
    background: linear-gradient(90deg, rgba(30,30,30,0.92) 0%, rgba(30,30,30,0.7) 60%, rgba(30,30,30,0.3) 100%);
}

.luxury-sale-content {
    position: relative;
    z-index: 2;
}

.sale-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 12px;
}

.sale-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.sale-subtitle {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.sale-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.btn-shop-now {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 4px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-shop-now:hover {
    background-color: transparent;
    color: var(--gold);
}

.sale-badge {
    position: relative;
    z-index: 2;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(10,10,10,0.6);
    backdrop-filter: blur(4px);
    transform: rotate(10deg);
}

.sale-badge .up-to {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.sale-badge .percent {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin: 4px 0;
}

.sale-badge .off {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

/* ==================== FEATURES BAR ==================== */
.features-bar {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.feature-item {
    padding: 0 15px;
}

.feature-icon {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 12px;
}

.feature-item h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

/* ==================== BRANDS RESPONSIVE ==================== */
@media (max-width: 991px) {
    .brand-showcase-banner {
        min-height: 300px;
        padding: 30px;
    }
    
    .brand-products-slider-wrapper {
        padding: 30px 40px;
    }
    
    .luxury-sale-banner {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .brands-hero-title {
        font-size: 36px;
    }
    
    .luxury-sale-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .sale-badge {
        transform: rotate(0);
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
    
    .feature-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .brand-card {
        padding: 20px 10px 10px;
    }
    
    .brand-logo-wrap svg {
        width: 40px;
        height: auto;
    }
    
    .brand-logo-wrap span {
        font-size: 16px !important;
    }
    
    .brand-name {
        font-size: 10px;
    }
}


/* ============================================================
   PRODUCT LISTING (SHOP) PAGE STYLES
   ============================================================ */

/* --- Shop Hero --- */
.shop-listing-hero {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.shop-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-hero-content {
    max-width: 50%;
}

.shop-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.shop-hero-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.shop-hero-image {
    max-width: 45%;
    position: relative;
}

.shop-hero-image img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3); /* subtle gold border */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

/* --- Shop Sidebar Filters --- */
.shop-sidebar {
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
    height: 100%;
}

.filter-group {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.filter-group:first-child {
    padding-top: 0;
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.filter-header h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    margin: 0;
    letter-spacing: 1px;
}

.filter-header i {
    font-size: 12px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.filter-header.collapsed i {
    transform: rotate(180deg);
}

.custom-checkbox-container {
    display: block;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-secondary);
    user-select: none;
    transition: color 0.2s;
}

.custom-checkbox-container:hover {
    color: var(--text-primary);
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 1px solid var(--text-muted);
    border-radius: 3px;
    transition: all 0.2s;
}

.custom-checkbox-container:hover input ~ .checkmark {
    border-color: var(--gold);
}

.custom-checkbox-container input:checked ~ .checkmark {
    background-color: transparent;
    border-color: var(--gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox-container .checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid var(--gold);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.view-more-link {
    font-size: 11px;
    color: var(--gold);
    display: inline-block;
    margin-top: 5px;
    font-weight: 600;
}

.price-slider-wrap {
    padding: 10px 0;
}

.custom-range-slider {
    width: 100%;
    accent-color: var(--gold);
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-secondary);
}

.btn-clear-filters {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-clear-filters:hover {
    background-color: var(--gold);
    color: #000;
}

/* --- Shop Grid Header --- */
.shop-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.results-count {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.shop-grid-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-by-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-by-wrap label {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.custom-select-box {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 30px 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    cursor: pointer;
}

[data-theme="light"] .custom-select-box {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.custom-select-box:focus {
    border-color: var(--gold);
}

.view-toggles {
    display: flex;
    gap: 8px;
}

.view-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.view-btn.active, .view-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- Product Listing Card --- */
.custom-products-row {
    margin-bottom: 40px;
}

.product-listing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-listing-card:hover {
    border-color: var(--gold);
}

.product-listing-img-wrap {
    height: 220px;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-listing-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 1px;
    z-index: 2;
}

.badge-new {
    background-color: #000;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.badge-bestseller {
    background-color: var(--gold);
    color: #000;
}

.product-listing-img-wrap .wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #333;
    font-size: 16px;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
}

.product-listing-img-wrap .wishlist-btn:hover {
    color: var(--gold);
}

.product-listing-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-brand-name {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-listing-info .product-title {
    font-size: 12px;
    color: var(--text-primary);
    margin-bottom: auto;
    line-height: 1.4;
    font-weight: 500;
}

.product-listing-info .product-price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
    margin: 0;
}

.add-to-cart-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background-color: var(--gold);
    color: #000;
}

/* --- Elevate CTA Banner --- */
.shop-cta-banner {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
}

.cta-banner-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}

.shop-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.shop-cta-icon i {
    font-size: 40px;
    color: var(--gold);
}

.shop-cta-text {
    flex-grow: 1;
    padding: 0 30px;
}

.shop-cta-text h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.shop-cta-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.btn-shop-cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-shop-cta:hover {
    background-color: #fff;
    color: #000;
}

/* --- Pagination --- */
.shop-pagination .page-item .page-link {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    margin: 0 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 13px;
    transition: var(--transition);
}

.shop-pagination .page-item.active .page-link,
.shop-pagination .page-item .page-link:hover:not(.page-dots) {
    background-color: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.shop-pagination .page-item .page-link.page-dots {
    border: none;
    pointer-events: none;
}

/* --- Shop Responsive --- */
@media (max-width: 991px) {
    .shop-sidebar {
        border-right: none;
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .shop-hero-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .shop-hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .shop-hero-image {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .shop-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .shop-cta-text {
        padding: 0;
    }
    
    .shop-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}


/* ============================================================
   ABOUT US PAGE STYLES
   ============================================================ */

/* --- About Hero Full Width --- */
.about-hero-full {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-body);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: Solid dark on left, fading to transparent on right */
    background: linear-gradient(to right, rgba(14, 14, 14, 1) 0%, rgba(14, 14, 14, 0.95) 40%, rgba(14, 14, 14, 0) 80%);
}

[data-theme="light"] .about-hero-overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0) 80%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: 48px;
    font-weight: 400;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    margin-bottom: 15px;
}

.gold-line-left {
    border: none;
    height: 2px;
    width: 60px;
    background-color: var(--gold);
    margin-left: 0;
}

.gold-line-sm {
    border: none;
    height: 1px;
    width: 40px;
    background-color: var(--gold);
    margin: 15px 0;
}

.center-line {
    margin: 15px auto;
}

.about-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- Our Story --- */
.story-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.story-img {
    width: 100%;
    object-fit: cover;
    max-height: 500px;
    filter: brightness(0.8);
}

.story-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.story-habibi-logo {
    width: 250px;
    opacity: 0.9;
}

.subtitle-gold {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Vision & Mission --- */
.vision-mission {
    background-color: var(--bg-body);
}

.vm-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    height: 100%;
    transition: var(--transition);
}

.vm-card:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.1);
}

.vm-icon {
    font-size: 40px;
    color: var(--gold);
    margin-right: 25px;
    margin-top: 5px;
}

.vm-text h3 {
    font-size: 28px;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    margin-bottom: 10px;
}

.vm-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Our Values --- */
.our-values {
    background-color: var(--bg-body);
}

.value-box {
    display: flex;
    text-align: left;
    height: 100%;
    align-items: flex-start;
}

.value-icon {
    font-size: 32px;
    color: var(--gold);
    margin-right: 20px;
    margin-top: 5px;
}

.value-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.value-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.custom-values-row {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

/* --- Stats Banner --- */
.stats-banner {
    background-color: var(--bg-body);
    border-bottom: 1px solid var(--border-color);
}

.stat-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    font-size: 36px;
    color: var(--gold);
    margin-right: 15px;
}

.stat-info {
    text-align: left;
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* --- About CTA --- */
.about-cta-inner {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.cta-decor-img {
    height: 250px;
    object-fit: contain;
    margin-right: -20px;
    z-index: 1;
}

.cta-text-content {
    z-index: 2;
    padding: 40px 0 40px 20px;
}

.cta-text-content h2 {
    font-size: 32px;
    font-family: var(--font-secondary);
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-text-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 16px;
}

[data-theme="light"] .about-hero-img-wrap,
[data-theme="light"] .vm-card,
[data-theme="light"] .about-cta-inner {
    background-color: #fff;
}
[data-theme="light"] .custom-values-row,
[data-theme="light"] .stats-banner,
[data-theme="light"] .about-hero {
    border-color: #eee;
}

/* --- Utility Classes --- */
.section-padding {
    padding: 80px 0;
}

