@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura-Book.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura-Medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('../fonts/Futura-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary-bg: #ffffff;
    --secondary-bg: #f8f8f8;
    --text-primary: #0a0a0a;
    --text-secondary: #555555;
    --border-color: #f1f1f1;
    --accent-color: #1a472a;
    /* Dark Green from Logo */
    --gold-muted: #c5a059;
    /* Gold from Logo */
    --font-heading: 'Futura', sans-serif;
    --font-body: 'Futura', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wrapper {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pd-title,
.footer-logo-text,
.logo-text {
    font-family: var(--font-heading);
    font-weight: 500;
    /* Futura Medium */
}

p,
.pd-breadcrumb,
.footer-links-list a,
.top-navbar {
    font-family: var(--font-body);
    font-weight: 400;
    /* Futura Regular */
}

.hero-subtitle,
.pd-category,
.card-label {
    font-family: var(--font-body);
    font-weight: 300;
    /* Futura Light */
}

button,
.btn,
.search-btn {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Icon Protection - CRITICAL FIX */
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands,
.fa-brands *,
.fa-solid * {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 16px;
    letter-spacing: 0.3px;
}

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

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

.text-muted {
    color: #888 !important;
}

.opacity-75 {
    opacity: 0.9 !important;
}

/* Global Placeholders Visibility */
::placeholder {
    color: #555 !important;
    opacity: 1 !important;
}

input::placeholder,
textarea::placeholder {
    color: #555 !important;
}

/* Premium Top Mini Bar */
.top-navbar {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 10.5px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.top-navbar a {
    color: #333 !important;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.top-navbar a i {
    font-size: 13px;
    margin-right: 6px;
    color: var(--gold-muted);
}

.top-navbar a:hover {
    color: var(--accent-color) !important;
}

.divider {
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #eee;
    margin: 0 15px;
    vertical-align: middle;
}

.top-info-text {
    display: inline-flex;
    align-items: center;
    color: #666;
    font-weight: 500;
}

.top-info-text i {
    font-size: 13px;
    margin-right: 6px;
    color: var(--gold-muted);
}

.top-navbar .dropdown-toggle {
    font-size: 10.5px;
    font-weight: 600;
    border: none;
    color: #333 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-navbar .dropdown-item {
    font-size: 12px;
    padding: 10px 20px;
    font-weight: 500;
    color: #111 !important;
    transition: var(--transition);
}

.top-navbar .dropdown-item:hover {
    background-color: var(--gold-muted);
    color: #fff !important;
}

.top-navbar .dropdown-menu {
    border-radius: 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 10px !important;
}

.auth-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.auth-links a {
    font-weight: 700;
    color: var(--accent-color) !important;
}

.slash {
    color: #ddd;
    margin: 0 2px;
}

/* Zoom Functionality */
.zoom-container {
    cursor: crosshair;
}

.img-zoom-result {
    position: absolute;
    top: 0;
    left: calc(100% + 30px);
    width: 500px;
    height: 500px;
    border: 1px solid #ddd;
    background: #fff;
    z-index: 1000;
    overflow: hidden;
    display: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Mobile Sidebar Menu Styles */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 3000;
    transition: 0.3s ease;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2999;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

/* Main Header */
.main-header {
    background: #fff;
    position: relative;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 2px 0 0 0;
    transition: var(--transition);
}

.main-header .container {
    position: relative;
}

.main-header.sticky-top {
    position: sticky;
    top: 0;
}

.logo-brand {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
}

.logo-img {
    height: 150px;
    width: auto;
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1001;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: translateY(-50%) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--accent-color);
    margin-left: 100px;
    /* Reduced gap to bring text closer to the large logo */
    letter-spacing: 4px;
    text-transform: lowercase;
}

.action-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.action-link:hover {
    color: var(--gold-muted);
}

.header-actions {
    display: flex;
    gap: 12px;
}

.action-link i,
.cart-icon-wrapper {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-link i {
    font-size: 18px;
}

.top-currency-btn {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 1px;
    color: inherit;
}

.mobile-menu-icon {
    font-size: 20px;
}

.sidebar-logo-text {
    font-size: 18px;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--gold-muted);
    border-radius: 50px;
    padding: 0 0 0 15px;
    width: 100%;
    max-width: 350px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-search:focus-within {
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.15);
    transform: translateY(-1px);
}

.header-search .form-control {
    border: none;
    background: transparent;
    font-size: 15px;
    height: 38px;
    box-shadow: none !important;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 500;
    /* Futura Medium */
}

.header-search .form-control::placeholder {
    color: #999;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.search-icon {
    color: var(--gold-muted);
    font-size: 14px;
}

.search-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 20px;
    height: 32px;
    margin-right: 3px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Cart Badge */
.cart-icon-wrapper {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent-color);
    color: #fff;
    font-size: 8px;
    padding: 1px 4px;
    border-radius: 50%;
    min-width: 15px;
    text-align: center;
    font-weight: 700;
}

.tab-pane {
    font-size: 16px;
}

textarea {
    height: 100px;
}

/* Category Navbar */
/* Restoration of Brand Green Navbar */
.category-navbar {
    background: var(--accent-color);
    /* Theme Green */
    border-bottom: 2px solid var(--gold-muted);
    position: relative;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    min-height: 55px;
    flex-wrap: nowrap;
}

.nav-menu .nav-link {
    font-size: 10.5px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 20px 0 !important;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: var(--transition);
}

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

.nav-link i {
    font-size: 8px;
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.9);
}

/* Luxury Mega Menu System (Restored Compatibility) */
.has-mega-menu {
    position: static !important;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(15px);
    z-index: 2000;
    padding: 50px 0;
}

.has-mega-menu:hover .mega-menu-content,
.has-mega-menu.active .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-heading {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

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

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

.mega-links a {
    text-decoration: none;
    color: #222;
    /* Sharp black link color for mega menu */
    font-size: 12.5px;
    font-weight: 500;
    transition: var(--transition);
    display: block;
}

.mega-links a:hover {
    color: var(--gold-muted);
    padding-left: 8px;
}

.mega-promo-box {
    position: relative;
    height: 240px;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mega-promo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.9;
    transition: 0.6s ease;
}

.mega-promo-box:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.promo-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
    text-align: left;
}

.promo-overlay span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-muted);
    display: block;
    margin-bottom: 5px;
}

.promo-overlay h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

/* Section Headers */
.section-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-accent {
    width: 60px;
    height: 3px;
    background: var(--gold-muted);
    margin-top: 15px;
}

.bg-light-soft {
    background-color: #fdfdfd;
}

/* Sleek Rectangular Category Cards */
.category-card {
    display: block;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.category-img-wrapper {
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f8f8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

.category-card:hover h3 {
    color: var(--gold-muted);
}

/* Large Boutique Cards (Tall) */
.boutique-card {
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.boutique-img-wrapper {
    height: 550px;
    overflow: hidden;
    margin-bottom: 20px;
}

.boutique-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

.boutique-info-box {
    padding: 10px 0;
}

.boutique-info-box h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    /* Exact match with product titles */
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.boutique-info-box p {
    font-size: 14px;
    color: #000 !important;
    /* Pure black for maximum contrast */
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500 !important;
    /* Slightly bolder for sharpness */
    opacity: 1 !important;
}

.boutique-tag-sub {
    display: block;
    font-size: 11px;
    /* Exact match with brand labels */
    color: #555;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.boutique-follow-btn {
    display: none;
    /* Removed as requested */
}

.boutique-follow-btn:hover {
    background: #000;
    color: #fff;
}

.boutique-card:hover img {
    transform: scale(1.03);
}

/* Standard Product Cards (Best Sellers) */
.product-card {
    background: #fff;
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.product-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f8f8f8;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition);
}

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

.product-price {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-outline-gold {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--gold-muted);
    color: var(--gold-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold-muted);
    color: #fff;
}

/* Premium Product Cards (You may also like) */
.product-card-premium {
    background: #fff;
    border: 1px solid #f1f1f1;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-premium:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.pc-image {
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

.pc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.pc-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    letter-spacing: 1px;
}

.pc-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.pc-wishlist:hover {
    background: #dc3545;
    color: #fff;
}

.pc-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pc-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #000;
}

.pc-desc {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px !important;
}

.pc-price {
    font-size: 16px;
    color: var(--accent-color);
    margin-top: auto;
}

.pc-footer {
    border-top: 1px solid #f1f1f1;
    margin-top: 15px;
}

/* Physical Luxury Gift Cards */
.physical-gift-card {
    position: relative;
    height: 220px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center everything */
    align-items: center;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 20px;
}

.gift-card-icon {
    font-size: 80px !important;
    color: var(--gold-muted) !important;
    margin-bottom: 20px;
    display: block !important;
}

.gift-card-ramadan {
    background-color: #062b14;
}

.gift-card-appreciation {
    background-color: #004a2f;
}

.gift-card-birthday {
    background-color: #1a1a1a;
}

.gift-card-anniversary {
    background-color: #2c3e50;
}

.card-text-bottom h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #fff;
    z-index: 10;
}

.physical-gift-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
}

.physical-gift-card::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 2;
    pointer-events: none;
}

.physical-gift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.card-logo {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    opacity: 0.9;
}

.card-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    display: block;
    margin-bottom: 5px;
}

.card-category-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-validity {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

.card-chip {
    width: 35px;
    height: 25px;
    background: linear-gradient(135deg, #e0c07c, #b08d42);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-chip::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.card-occasion-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
    transition: var(--transition);
}

.physical-gift-card:hover .card-occasion-icon {
    transform: scale(1.15) rotate(5deg);
    opacity: 1;
    color: var(--gold-muted);
}

/* Metallic Backgrounds */
.bg-dark-gold {
    background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%);
}

.bg-emerald {
    background: linear-gradient(135deg, #062b14 0%, #1a472a 100%);
}

.bg-obsidian {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.bg-platinum-shine {
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
}

.gift-slider-item {
    padding: 15px;
    perspective: 1000px;
}

/* Review Cards (Standardized Sizes) */
.review-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 25px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-muted);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-img-wrapper {
    height: 220px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    background: #f8f8f8;
}

.review-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.review-stars {
    color: var(--gold-muted);
    margin-bottom: 12px;
    font-size: 11px;
}

.review-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-info p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.reviewer {
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1px;
}

/* Newsletter */
.newsletter-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/hero_3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.newsletter-section h2,
.newsletter-section p {
    color: #fff !important;
}

.newsletter-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.btn-gold-newsletter {
    background: var(--gold-muted);
    color: #fff;
    padding: 0 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-gold-newsletter:hover {
    background: #fff;
    color: var(--gold-muted);
}

/* Professional Luxury Footer */
.footer-branded {
    background-color: var(--accent-color);
    color: #fff;
    border-top: 1px solid var(--gold-muted);
    padding: 80px 0 40px;
    /* Enhanced vertical breathing room */
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 6px;
    color: #fff;
    text-transform: lowercase;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 25px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--gold-muted);
    text-transform: uppercase;
}

.footer-brand-section p,
.footer-branded p,
.footer-links-list a,
.copyright-text {
    color: rgba(255, 255, 255, 0.85) !important;
    display: block;
    margin-bottom: 15px;
    font-size: 11px;
    /* Slightly smaller for all-caps look */
    font-weight: 500;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    /* Removed underlines */
}

.footer-desc {
    color: #ffffff !important;
    font-size: 11px !important;
    margin-bottom: 20px !important;
    display: block !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}

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

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

.footer-links-list a:hover {
    color: var(--gold-muted) !important;
    /* Golden on hover */
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
    text-decoration: none !important;
    /* Removed underline */
}

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

.newsletter-integrated {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle box */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.nl-input {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 12px;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    letter-spacing: 1px;
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.nl-btn {
    background: var(--gold-muted);
    color: #fff;
    border: none;
    padding: 0 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.nl-btn:hover {
    background: #fff;
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-icons {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.4);
}

.payment-icons i {
    margin-left: 15px;
}

.filter-white {
    filter: brightness(0) invert(1);
}

.hero-img-multi {
    height: 80vh;
    width: 33.4% !important;
    /* Slightly more than 1/3 */
    object-fit: cover;
    object-position: top;
    border: none !important;
    margin: 0 !important;
    margin-right: -1px !important;
    /* Force overlap */
    padding: 0 !important;
    display: block;
}

.carousel-item .d-flex {
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #000;
    overflow: hidden;
}

/* Removed individual overrides to focus all on the dress */

#heroCarousel {
    background: #000;
}

.carousel-caption {
    bottom: 0;
    top: 0;
    left: 10%;
    right: auto;
    display: flex !important;
    align-items: center;
    text-align: left;
    padding: 0;
}

.hero-content {
    color: #fff;
    max-width: 800px;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-left: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 82px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.hero-title span {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-muted);
    text-shadow: none;
}

.hero-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold-muted);
    margin-bottom: 20px;
}

/* Unified Product Component */
.product-card {
    background: #fff;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-info {
    padding: 15px 0;
    flex-grow: 1;
}

.product-brand {
    display: block;
    font-size: 11px;
    font-weight: 500;
    /* Increased weight */
    color: #555;
    /* Darker grey for better visibility */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
}

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

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

.btn-dark-premium {
    background: var(--accent-color);
    color: #fff;
    padding: 14px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--accent-color);
}

.btn-dark-premium:hover {
    background: transparent;
    color: var(--accent-color);
}

/* View All Buttons (Updated: Black Box) */
.view-all-btn {
    display: inline-block;
    padding: 8px 30px;
    background: #000;
    color: #fff !important;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: 1px solid #000;
    margin-top: 20px;
}

.view-all-btn:hover {
    background: #333;
    color: #fff !important;
}

/* Owl Carousel Customization */
.owl-theme .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    pointer-events: none;
}

.owl-theme .owl-nav [class*='owl-'] {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background: #fff !important;
    color: var(--accent-color) !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    transition: var(--transition);
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
}

.owl-prev {
    position: absolute;
    left: -20px;
}

.owl-next {
    position: absolute;
    right: -20px;
}

.owl-carousel {
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    width: 100%;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-muted);
    margin: 0 auto;
}

.owl-dots {
    margin-top: 30px !important;
    text-align: center;
}

.owl-dot span {
    background: #ddd !important;
    width: 8px !important;
    height: 8px !important;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
}

.owl-dot.active span {
    background: var(--gold-muted) !important;
    width: 25px !important;
    border-radius: 50px;
}

/* =========================================
   Product Detail Page Styles (KHWAHISH Theme)
   ========================================= */
.product-detail-page {
    background-color: #fff;
    color: #333;
    /* Dark gray for a softer, more premium feel than pure black */
    font-size: 14px;
    line-height: 1.6;
}

.product-detail-page h1,
.product-detail-page h2,
.product-detail-page h3,
.product-detail-page h4 {
    color: #111;
    /* Sharper black for headings */
    margin-bottom: 1rem;
}

.product-detail-page p {
    color: #555;
    /* Slightly lighter for long text */
    font-size: 14px;
    line-height: 1.8;
}

.product-detail-page .text-muted {
    color: #888 !important;
}

/* Breadcrumbs */
.pd-breadcrumb {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 30px;
}

.pd-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
}

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

.pd-breadcrumb .separator {
    margin: 0 10px;
}

/* Image Gallery */
.main-view {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid #f1f1f1;
    overflow: visible;
    /* Changed from hidden to allow zoom result visibility */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    aspect-ratio: 3/4;
    /* Consistent aspect ratio */
}

.main-view-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill the container completely */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.main-view-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.main-view:hover .main-view-img {
    transform: scale(1.05);
}

.out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-color);
    padding: 15px 40px;
    font-weight: 700;
    letter-spacing: 4px;
    border: 1px solid var(--accent-color);
    z-index: 10;
    pointer-events: none;
    font-size: 14px;
}

.thumbnail-list {
    width: 100px;
    flex-shrink: 0;
}

.thumb-item {
    width: 100%;
    height: 130px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.thumb-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: var(--transition);
}

.thumb-item:hover::after {
    opacity: 1;
}

.thumb-item.active {
    border-color: var(--accent-color);
    border-width: 1px;
}

.thumb-item.active::after {
    opacity: 0.2;
    background: var(--accent-color);
}

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

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

/* Info Section */
.pd-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 12px;
    background: #f1f1f1;
    color: #444;
    margin-bottom: 15px;
    border-radius: 50px;
}

.pd-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: #111;
    /* Sharp black */
    margin-bottom: 8px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pd-category {
    font-family: var(--font-body);
    font-size: 11px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 25px;
    display: block;
}

.pd-category-soft {
    color: #666;
    font-weight: 400;
}

.pd-price-row {
    margin-bottom: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.pd-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.pd-old-price {
    font-size: 15px;
    color: #bbb;
    text-decoration: line-through;
    margin-right: 15px;
    font-weight: 400;
}

.size-guide-trigger {
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.9;
}

.size-guide-trigger:hover {
    opacity: 1;
    transform: translateX(5px);
}

.size-guide-text {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.size-icon-box {
    width: 32px;
    height: 32px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.size-guide-icon {
    font-size: 16px;
}

.skywards-text {
    font-size: 13px;
    color: #555;
}

/* Selection Controls */
.pd-select {
    border: 1px solid #e0e0e0;
    height: 50px;
    font-size: 14.5px;
    color: #111;
    letter-spacing: 0.5px;
    padding: 0 15px;
    width: 100%;
}

.pd-quantity-control {
    border: 1px solid #e0e0e0;
    height: 50px;
    width: 100%;
}

.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    font-style: italic;
}

.overall-rating-card {
    border-left: 4px solid var(--gold-muted);
    padding-left: 20px;
}

.overall-rating-card h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.star-rating i {
    font-size: 10px;
    color: #000;
    margin-right: 2px;
}

.btn-qty {
    font-size: 12px;
    color: #000;
    width: 40px;
    border: none;
    background: transparent;
}

.qty-input {
    font-size: 15px;
    color: #000;
    border: none;
    background: transparent;
    width: 35px;
    text-align: center;
    font-weight: 600;
}

.pd-textarea {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 14.5px;
    color: #111;
    font-family: var(--font-body);
    resize: none;
    width: 100%;
    height: 100px;
}

/* Buttons */
.btn-bag {
    background: var(--accent-color);
    color: #fff;
    height: 55px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
}

.btn-bag:hover {
    background: var(--gold-muted);
    color: #fff;
}

.btn-buy {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    height: 50px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-buy:hover {
    background: #f9f9f9;
    border-color: var(--gold-muted);
    color: var(--gold-muted);
}

/* Tabs */
.pd-tabs {
    margin-top: 25px;
}

.pd-tabs .nav-tabs {
    border: none;
    gap: 20px;
    margin-bottom: 5px;
    flex-wrap: wrap;
    /* Allow wrapping on small screens */
}

.pd-tabs-nav {
    border-bottom: none;
}

.tamara-widget {
    font-size: 12px;
    color: #666;
}

.tamara-logo {
    opacity: 0.9;
}

.pd-tabs .nav-link {
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #666;
    /* Darker than #aaa */
    font-weight: 700;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    background: transparent !important;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

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

.tab-content {
    font-family: var(--font-body);
    font-size: 13px;
    /* Matched closer to metadata value size */
    line-height: 1.7;
    color: #333;
    /* Consistent with metadata value color */
    padding-top: 15px;
}

.metadata-list .row {
    padding-bottom: 5px;
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 0;
}

.metadata-list .row:last-child {
    border-bottom: none;
}

/* Metadata Grid in Tabs */
.metadata-grid .fw-bold {
    color: #888 !important;
    font-size: 10px;
    /* Reduced from 11px */
    letter-spacing: 1.2px;
    font-weight: 600 !important;
}

.metadata-grid .text-muted {
    color: #333 !important;
    font-size: 12.5px;
    /* Reduced from 14px */
    font-weight: 500;
}

.trust-item {
    text-align: center;
}

.trust-item i {
    font-size: 20px;
    color: var(--gold-muted);
    margin-bottom: 10px;
    display: block;
}

.trust-item span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #444;
}

/* Wishlist & Whatsapp */
.wishlist-btn,
.whatsapp-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.wishlist-btn:hover {
    background: #fdf2f2;
    color: #dc3545;
    transform: translateY(-3px);
}

.whatsapp-btn:hover {
    background: #f2fdf2;
    transform: translateY(-3px);
}

/* Suggested Products Cards */
.product-card-premium .pc-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.product-card-premium .pc-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
}

.product-card-premium .pc-price {
    font-size: 14px;
    color: #000;
    font-weight: 700;
}

.product-card-premium .pc-footer a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile Optimizations */
@media (max-width: 991px) {
    .mega-promo-box {
        display: none !important;
    }

    .thumbnail-list {
        width: 100%;
        flex-direction: row !important;
        order: 2;
        margin-top: 15px;
    }

    .thumb-item {
        width: 80px;
        height: 100px;
        margin-bottom: 0;
        margin-right: 10px;
    }

    .pd-title {
        font-size: 30px;
    }
}

/* Frequently Bought Together Enhanced */
.fbt-wrapper {
    border: 1px solid #f1f1f1;
    border-radius: 8px;
}

.pd-section-heading {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.fbt-img-box {
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.fbt-img-box:hover {
    border-color: var(--gold-muted);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fbt-size-note {
    font-size: 11px;
}

.fbt-total {
    border-top: none;
}

.fbt-add-btn {
    height: auto;
    font-size: 11px;
}

.rating-score {
    font-size: 18px;
    font-weight: 400;
}

.size-modal-title {
    font-size: 18px;
}

.size-guide-table {
    font-size: 14px;
    color: #444;
    z-index: 1001;
}

.size-guide-thead {
    border-bottom: 1px solid #eee;
    color: #000;
}

.size-guide-row {
    font-weight: 600;
}

.size-measure-title {
    font-size: 14px;
}

/* Premium Product Cards (Boksha Style) */
/* Redundant premium card styles removed for professional code consolidation */

/* WhatsApp Gold Button */
.btn-whatsapp-gold {
    background: var(--gold-muted);
    color: #fff !important;
    border: 1px solid var(--gold-muted);
    height: 55px;
    /* Matched with btn-bag */
    font-size: 14px;
    /* Matched with btn-bag */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-whatsapp-gold i {
    font-size: 20px;
    /* Larger icon */
    margin-left: 8px;
}

.btn-whatsapp-gold:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff !important;
}

/* Ratings & Reviews */
.rating-stars i,
.overall-rating-card .fa-star,
.review-item-boksha .fa-star {
    font-size: 14px !important;
    margin-right: 1px;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 991px) {
    .top-navbar {
        display: none;
    }

    .main-header {
        padding: 15px 0;
    }

    .logo-img {
        height: 65px !important;
        /* Larger logo on mobile */
        top: 50% !important;
    }

    .logo-text {
        font-size: 18px !important;
        margin-left: 55px !important;
        /* Bring text closer to the larger logo */
        letter-spacing: 2px !important;
    }

    .category-navbar {
        display: none;
    }

    .hero-title {
        font-size: 28px !important;
        letter-spacing: 4px !important;
    }

    .section-title {
        font-size: 20px !important;
        letter-spacing: 2px !important;
    }

    .col-md-6.col-6 {
        width: 50% !important;
    }

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

    .product-img-wrapper {
        height: 220px !important;
    }

    .footer-branded {
        padding: 50px 0 30px;
        text-align: justify;
        /* Changed from left to justify */
    }

    .footer-title {
        margin-top: 30px;
        margin-bottom: 20px;
        text-align: left;
        /* Keep titles left-aligned */
    }

    .footer-brand-section p {
        text-align: justify;
    }

    .footer-social {
        justify-content: flex-start;
        /* Changed from center */
    }

    .newsletter-integrated {
        max-width: 320px;
        margin: 15px auto 0;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: center;
    }

    .payment-icons {
        margin-top: 20px;
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 24px !important;
    }

    .product-img-wrapper {
        height: 180px !important;
    }
}

/* Mobile Sidebar & Overlay */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 100vw;
    box-sizing: border-box;
    height: 100vh;
    background: #fff;
    z-index: 11000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 50px;
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
}

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

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav-links li a {
    display: block;
    padding: 18px 25px;
    color: var(--text-primary);
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #f5f5f5;
    transition: var(--transition);
}

.mobile-nav-links li a:hover {
    color: var(--gold-muted);
    background: #fafafa;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
    display: none;
    /* Hidden by default */
}

.mobile-submenu li a {
    padding: 12px 40px !important;
    font-size: 12px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    color: #555 !important;
}

/* Sticky Mobile Header Fix */
@media (max-width: 991px) {
    .main-header {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10000;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        padding: 10px 0 !important;
    }

    .header-search {
        background: #f8f8f8 !important;
        border: 1px solid #eee !important;
        height: 40px;
    }

    .header-search input {
        font-size: 13px !important;
    }

    .action-link i {
        font-size: 18px;
    }
}

/* Product Detail Mobile Optimizations */
@media (max-width: 991px) {
    .product-detail-page {
        overflow-x: hidden !important;
        padding-top: 15px !important;
    }

    .product-detail-page .row.g-5 {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .product-detail-page .d-flex.flex-row-reverse {
        flex-direction: column !important;
    }

    .thumbnail-list {
        flex-direction: row !important;
        width: 100% !important;
        order: 2;
        margin-top: 12px;
        overflow-x: auto;
        padding-bottom: 8px;
        gap: 10px !important;
        scrollbar-width: none;
    }

    .thumbnail-list::-webkit-scrollbar {
        display: none;
    }

    .thumb-item {
        width: 70px !important;
        height: 90px !important;
        flex-shrink: 0;
        margin: 0 !important;
    }

    .main-view {
        width: 100% !important;
        order: 1;
    }

    .pd-title {
        font-size: 22px !important;
        margin-top: 10px;
        color: #111 !important;
        letter-spacing: 1.2px !important;
    }

    .pd-price {
        font-size: 19px !important;
        color: #111 !important;
    }

    .pd-category {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 15px !important;
    }

    .tab-content {
        font-size: 12px !important;
        color: #444 !important;
        line-height: 1.6 !important;
    }

    .pd-action-btns .btn,
    .product-info-column .btn {
        height: 50px !important;
        font-size: 13px !important;
        letter-spacing: 1px !important;
    }

    .fbt-check-item .form-check-label,
    .fbt-check-item .small {
        font-size: 12px !important;
    }

    .fbt-total .h4 {
        font-size: 18px !important;
    }

    .overall-rating-card {
        padding: 20px !important;
    }

    .pc-image {
        height: 260px !important;
    }

    /* Side-Scrolling Protection */
    .container,
    .container-fluid,
    .row,
    .wrapper,
    body,
    html {
        overflow-x: hidden !important;
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {

    /* Fixed Tabs on Mobile: Allow wrapping to avoid side-scroll */
    .pd-tabs .nav-tabs {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 10px 20px !important;
        border-bottom: 1px solid #eee !important;
        padding-bottom: 10px !important;
    }

    .pd-tabs .nav-link {
        padding: 5px 0 !important;
        font-size: 12px !important;
        border-bottom: 2px solid transparent !important;
        white-space: normal !important;
    }

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

    .metadata-list {
        width: 100% !important;
        padding: 15px 0 !important;
    }

    .metadata-item {
        margin-bottom: 20px !important;
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 10px;
    }

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

    .metadata-item .fw-bold {
        font-size: 12px !important;
        margin-bottom: 5px !important;
        display: block;
        color: #888;
        font-weight: 500 !important;
    }

    .metadata-item .text-muted {
        font-size: 15px !important;
        display: block;
        color: #000 !important;
        font-weight: 600 !important;
    }

}

@media (max-width: 480px) {
    .fbt-img-box img {
        width: 55px !important;
    }
}

/* FINAL DEFINITIVE MOBILE RESPONSIVENESS FIX */
@media (max-width: 991px) {

    html,
    body,
    .wrapper {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
        max-width: 100% !important;
    }

    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow: hidden !important;
    }

    /* Prevent AOS from causing horizontal scroll */
    [data-aos] {
        overflow: hidden !important;
    }

    /* FBT Section Mobile Optimization */
    .fbt-img-box img {
        width: 60px !important;
        border: 1px solid #eee;
        padding: 2px;
        background: #fff;
    }

    .fbt-items-display {
        gap: 8px !important;
        justify-content: center !important;
        width: 100% !important;
        flex-wrap: nowrap !important;
        /* Ensure it doesn't wrap oddly */
        overflow: hidden !important;
    }

    .fbt-wrapper {
        padding: 15px !important;
        width: 100% !important;
        overflow: hidden !important;
        background: #fafafa !important;
    }

    /* Metadata Grid Fix */
    .metadata-grid {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .metadata-grid>[class*='col-'] {
        padding-left: 5px !important;
        padding-right: 5px !important;
        margin-bottom: 5px !important;
    }

    .metadata-grid .fw-bold {
        font-size: 10px !important;
        /* Smaller label */
        letter-spacing: 0.5px !important;
    }

    .metadata-grid .text-muted {
        font-size: 12px !important;
        /* Smaller value */
    }

    /* Tabs Fix */
    .pd-tabs-nav {
        margin-left: -5px !important;
        margin-right: -5px !important;
        padding: 0 5px !important;
    }

    /* Header Fix */
    .main-header {
        overflow: hidden !important;
    }

    /* Image Gallery Fix */
    .zoom-container {
        overflow: hidden !important;
    }

    .img-zoom-result {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .fbt-img-box img {
        width: 60px !important;
    }
}

/* Updated Hero Slider Height (Bigger) */
.hero-single-wrapper {
    background-color: #f8f8f8;
    width: 100%;
    height: 85vh; /* Increased from 75vh */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-img-single {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 20%; 
}

@media (max-width: 768px) {
    .hero-single-wrapper {
        height: 60vh; /* Also bigger for mobile */
    }
}

.img-zoom-result {
    display: none ;
}


@media (max-width: 480px) {
    .fbt-img-box img {
        width: 60px !important;
    }
}
