/* ============================================
   LUXURY FURNITURE STORE - CUSTOM STYLES
   Premium, Modern, Elegant Design
   ============================================ */

/* ===== GLOBAL STYLES ===== */
:root {
    /* Brand: black, white, #febf0a */
    --brand-black: #000000;
    --brand-white: #ffffff;
    --brand-gold: #febf0a;
    --primary-dark: #1a1a1a;
    --primary-black: #0d0d0d;
    --accent-beige: #F5F5DC;
    --accent-gold: #febf0a;
    --accent-gold-light: #fecf4d;
    --accent-gold-dark: #d4a008;
    --accent-warm: #E8D5B7;
    --accent-royal: #1E3A8A;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --bg-gradient-premium: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 6px 25px rgba(212, 175, 55, 0.35);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== BRAND COLORS: BLACK, WHITE, #febf0a (frontend) ===== */
body .btn-warning {
    background-color: var(--brand-gold) !important;
    border-color: var(--brand-gold) !important;
    color: var(--brand-black) !important;
}
body .btn-warning:hover:not(:disabled) {
    background-color: var(--accent-gold-dark) !important;
    border-color: var(--accent-gold-dark) !important;
    color: var(--brand-white) !important;
}
body .text-warning {
    color: var(--brand-gold) !important;
}
body .bg-warning {
    background-color: var(--brand-gold) !important;
    color: var(--brand-black) !important;
}

/* ===== ICON SIZE REDUCTION ===== */
/* Reduce Font Awesome icon sizes globally */
.fa-5x {
    font-size: 2rem !important;
}

.fa-4x {
    font-size: 1.5rem !important;
}

.fa-3x {
    font-size: 1.25rem !important;
}

.fa-2x {
    font-size: 1.1rem !important;
}

/* Reduce large icon font sizes */
i[class*="fa-"] {
    font-size: inherit;
}

/* Specific icon size reductions */
.icon-wrapper i,
.trust-icon-wrapper i,
.feature-icon i {
    font-size: 1.5rem !important;
}

.status-icon-wrapper i {
    font-size: 1rem !important;
}

.cart-icon-wrapper i {
    font-size: 1.2rem !important;
}

.search-icon-wrapper i {
    font-size: 1.2rem !important;
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.75;
    background-color: var(--bg-white);
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(232, 213, 183, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
/* Serif for headings (premium feel), body stays Poppins */
h1, h2, h3, h4, h5, h6,
.hero-headline,
.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm));
    border-radius: 2px;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    font-size: 0.9rem;
    z-index: 1050;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.announcement-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(212, 175, 55, 0.03) 10px,
            rgba(212, 175, 55, 0.03) 20px
        );
    pointer-events: none;
}

.announcement-bar * {
    color: #ffffff !important;
}

.announcement-bar i {
    opacity: 1;
    color: #D4AF37 !important;
}

.announcement-bar span {
    color: #ffffff !important;
}

.announcement-bar .badge {
    animation: pulse-badge 2s infinite;
}

/* ===== TOP INFO BAR ===== */
.top-info-bar {
    background: var(--bg-gradient-premium) !important;
}

.info-bar-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: var(--transition);
    border-radius: 8px;
}

.info-bar-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.info-bar-item i {
    transition: var(--transition);
}

.info-bar-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 1.25rem 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    letter-spacing: 2px;
    font-size: 1.75rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm));
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 44, 44, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.625rem 1.25rem;
    transition: var(--transition-smooth);
    position: relative;
    border-radius: 8px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 213, 183, 0.1));
    border-radius: 8px;
    opacity: 0;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    opacity: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold-dark);
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm));
    border-radius: 2px;
    transition: var(--transition-smooth);
}

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

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: heroZoom 20s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.65) 0%, rgba(44, 44, 44, 0.5) 50%, rgba(26, 26, 26, 0.65) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(232, 213, 183, 0.1) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
    animation: patternPulse 8s ease-in-out infinite;
}

@keyframes patternPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-badge {
    animation: fadeInDown 0.8s ease-out;
}

.hero-trust-badges {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.trust-badge-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Hero Carousel Styles */
.hero-section .carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .carousel-inner {
    height: 100%;
}

.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 4;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-section .carousel-control-prev {
    left: 20px;
}

.hero-section .carousel-control-next {
    right: 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section h1,
.hero-section .hero-text {
    color: #ffffff !important;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.hero-section h1.hero-text {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(0, 0, 0, 0.3) !important;
}

.hero-section .lead {
    color: #ffffff !important;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-section .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* ===== DARK BACKGROUND - WHITE TEXT ===== */
.bg-dark,
.bg-black {
    color: #ffffff !important;
}

.bg-dark *,
.bg-black * {
    color: #ffffff !important;
}

/* Exception: White background elements inside dark sections should have dark text */
.bg-dark .bg-white,
.bg-dark .bg-white *,
.bg-dark .bg-light,
.bg-dark .bg-light *,
.bg-black .bg-white,
.bg-black .bg-white *,
.bg-black .bg-light,
.bg-black .bg-light * {
    color: var(--primary-dark) !important;
}

.bg-dark .bg-white .text-dark,
.bg-dark .bg-light .text-dark,
.bg-black .bg-white .text-dark,
.bg-black .bg-light .text-dark {
    color: var(--primary-dark) !important;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-black h1,
.bg-black h2,
.bg-black h3,
.bg-black h4,
.bg-black h5,
.bg-black h6 {
    color: #ffffff !important;
}

/* Exception: Headings inside white backgrounds */
.bg-dark .bg-white h1,
.bg-dark .bg-white h2,
.bg-dark .bg-white h3,
.bg-dark .bg-white h4,
.bg-dark .bg-white h5,
.bg-dark .bg-white h6,
.bg-dark .bg-light h1,
.bg-dark .bg-light h2,
.bg-dark .bg-light h3,
.bg-dark .bg-light h4,
.bg-dark .bg-light h5,
.bg-dark .bg-light h6 {
    color: var(--primary-dark) !important;
}

.bg-dark p,
.bg-dark span,
.bg-dark div,
.bg-black p,
.bg-black span,
.bg-black div {
    color: #ffffff !important;
}

/* Exception: Text inside white backgrounds */
.bg-dark .bg-white p,
.bg-dark .bg-white span,
.bg-dark .bg-white div,
.bg-dark .bg-light p,
.bg-dark .bg-light span,
.bg-dark .bg-light div {
    color: var(--primary-dark) !important;
}

.bg-dark .text-muted,
.bg-black .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.bg-dark a,
.bg-black a {
    color: #ffffff !important;
}

.bg-dark a:hover,
.bg-black a:hover {
    color: var(--accent-gold) !important;
}

/* Exception: Links inside white backgrounds */
.bg-dark .bg-white a,
.bg-dark .bg-light a {
    color: var(--primary-dark) !important;
}

.bg-dark .bg-white a:hover,
.bg-dark .bg-light a:hover {
    color: var(--accent-gold) !important;
}

/* White/Light background - buttons should have black text */
.bg-white .btn,
.bg-light .btn,
section.bg-white .btn,
section.bg-light .btn {
    color: var(--primary-dark) !important;
}

.bg-white .btn-warning,
.bg-light .btn-warning {
    color: var(--primary-dark) !important;
}

.bg-white .btn-outline-dark,
.bg-light .btn-outline-dark {
    color: var(--primary-dark) !important;
    border-color: var(--primary-dark);
}

.bg-white .btn-outline-dark:hover,
.bg-light .btn-outline-dark:hover {
    background-color: var(--primary-dark);
    color: #ffffff !important;
}

/* Ensure buttons in white sections have proper contrast */
.bg-white * .btn,
.bg-light * .btn {
    color: var(--primary-dark) !important;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section .text-white,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.hero-section p,
.hero-section span,
.hero-section div {
    color: #ffffff !important;
}

.min-vh-75 {
    min-height: 75vh;
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #C9A52F 50%, var(--accent-gold) 100%);
    background-size: 200% 100%;
    border-color: var(--accent-gold);
    color: var(--primary-dark) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

.btn-warning:hover {
    background-position: 100% 0;
    border-color: #C9A52F;
    color: var(--primary-dark) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-warning:active {
    transform: translateY(-1px);
}

.btn-outline-dark {
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark) !important;
    background-color: transparent;
}

.btn-outline-dark:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff !important;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-dark {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
}

.btn-dark:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.4);
}

/* White background buttons should have black text */
.bg-white .btn-warning,
.bg-light .btn-warning {
    color: var(--primary-dark) !important;
}

.bg-white .btn-outline-dark,
.bg-light .btn-outline-dark {
    color: var(--primary-dark) !important;
    border-color: var(--primary-dark);
}

.bg-white .btn-outline-dark:hover,
.bg-light .btn-outline-dark:hover {
    background-color: var(--primary-dark);
    color: #ffffff !important;
}

/* ===== IMAGE OPTIMIZATION ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

.card-img-top {
    width: 100%;
    object-fit: cover;
    background-color: var(--bg-light);
}

/* ===== CARDS ===== */
.card {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(212, 175, 55, 0.3);
}

.category-card,
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--bg-white);
}

/* Category Card Borders */
.category-card {
    border: 4px solid #9ca3af !important;
    border-radius: 12px;
}

.category-card.card {
    border: 4px solid #9ca3af !important;
}

.category-card:hover {
    border-color: #D4AF37 !important;
    border-width: 4px !important;
}

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card a:hover {
    text-decoration: none;
    color: inherit;
}


.product-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-item[style*="display: none"] {
    display: none !important;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2) !important;
    border-color: #D4AF37 !important;
    border-width: 4px !important;
}

.card-img-wrapper {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-img-wrapper::after {
    opacity: 1;
}

.card-img-top {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 280px;
    object-fit: cover;
    width: 100%;
}

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

.card-body {
    padding: 1.5rem;
    background: var(--bg-white);
    position: relative;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

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

/* ===== PRODUCT CARDS ===== */
.product-card {
    position: relative;
    border-radius: 12px;
    border: 4px solid #9ca3af !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.product-card.card {
    border: 4px solid #9ca3af !important;
}

.product-card:hover {
    border-color: #D4AF37 !important;
    border-width: 4px !important;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3) !important;
}

.product-card .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.product-card .badge.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    animation: pulse-badge 2s infinite;
}

.product-card .badge.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%) !important;
}

.product-card .badge.bg-warning {
    background: linear-gradient(135deg, #febf0a 0%, #e0a800 100%) !important;
    color: var(--primary-dark) !important;
}

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

.quick-view-btn {
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.75rem !important;
    padding: 0.35rem 0.7rem !important;
}

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

.quick-view-btn:hover {
    background: var(--bg-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Product Card Price Styling */
.product-card .text-muted {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-card .fw-bold.text-dark.fs-5 {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.product-card .text-decoration-line-through {
    opacity: 0.6;
    font-size: 0.95rem;
}

/* Category Card Specific */
.category-card .card-body {
    padding: 1.25rem;
    text-align: center;
}

.category-card .card-title {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.category-card .btn {
    border-radius: 8px;
    padding: 0.625rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Card Image Overlay Effect */
.product-card .position-relative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover .position-relative::before {
    opacity: 1;
}

/* ===== CARD BUTTONS - PREMIUM VIEW DETAILS BUTTON ===== */
.product-card .btn-outline-dark {
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-width: 2.5px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-color: var(--primary-dark);
    color: var(--primary-dark) !important;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Arrow icon before text */
.product-card .btn-outline-dark::before {
    content: '→';
    font-size: 1.3rem;
    font-weight: 900;
    opacity: 0;
    transform: translateX(-15px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    left: 1.5rem;
}

/* Gradient background on hover */
.product-card .btn-outline-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 50%, var(--accent-gold) 100%);
    background-size: 200% 100%;
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Ripple effect */
.product-card .btn-outline-dark {
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    background-size: 0% 0%;
    background-position: center;
    background-repeat: no-repeat;
}

.product-card .btn-outline-dark:hover::after {
    left: 0;
}

.product-card .btn-outline-dark:hover::before {
    opacity: 1;
    transform: translateX(0) scale(1);
    color: var(--primary-dark);
}

.product-card .btn-outline-dark:hover {
    color: var(--primary-dark) !important;
    border-color: var(--accent-gold);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.4),
        0 6px 20px rgba(212, 175, 55, 0.3),
        0 0 0 3px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
}

.product-card .btn-outline-dark span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    font-weight: 700;
}

.product-card .btn-outline-dark:hover span {
    transform: translateX(8px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-card .btn-outline-dark:active {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.3),
        0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Add glow effect */
.product-card .btn-outline-dark {
    position: relative;
}

.product-card .btn-outline-dark::before {
    z-index: 2;
}

/* Enhanced focus state */
.product-card .btn-outline-dark:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ===== FILTERS SIDEBAR ===== */
.filters-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.form-range {
    cursor: pointer;
}

.form-range::-webkit-slider-thumb {
    background-color: var(--accent-gold);
    border: none;
}

.form-range::-moz-range-thumb {
    background-color: var(--accent-gold);
    border: none;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.color-swatch:hover {
    border-color: var(--primary-dark);
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: var(--accent-gold);
    border-width: 3px;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery .main-image {
    cursor: crosshair;
    border-radius: var(--border-radius);
    overflow: visible;
    position: relative;
}

.product-gallery .main-image img {
    transition: var(--transition);
    display: block;
    width: 100%;
    height: auto;
}

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

/* Zoom Lens */
.zoom-lens {
    position: absolute;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    cursor: crosshair;
    display: none;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

/* Zoom Result */
.zoom-result {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 3px solid var(--accent-gold);
    border-radius: var(--border-radius);
    display: none;
    pointer-events: none;
    z-index: 11;
    background: white;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

@media (max-width: 1200px) {
    .zoom-result {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .zoom-result {
        display: none !important;
    }
    
    .zoom-lens {
        display: none !important;
    }
    
    .product-gallery .main-image {
        cursor: pointer;
    }
}

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

.thumbnail-images .img-thumbnail:hover,
.thumbnail-images .img-thumbnail.active {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

/* ===== CART MODAL STYLES ===== */
.cart-item {
    transition: var(--transition);
    padding: 1rem;
    border-radius: var(--border-radius);
    background: var(--bg-light);
}

.cart-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.cart-item-image {
    flex-shrink: 0;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
    border: 2px solid #e9ecef;
    transition: var(--transition);
}

.cart-product-image:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.quantity-controls {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quantity-controls input {
    font-weight: 600;
}

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

#cartModal .modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-premium);
}

#cartModal .modal-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2c2c2c 100%);
    color: white;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    border-bottom: none;
}

#cartModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
}

#cartModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Custom scrollbar for cart modal */
#cartModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#cartModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#cartModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

#cartModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-dark);
}

#cartSummary {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1rem;
}

#cartSummary .border-top {
    border-color: #dee2e6 !important;
}

.empty-cart {
    padding: 3rem 1rem;
}

.empty-cart-icon {
    animation: float 3s ease-in-out infinite;
}

.empty-cart .btn {
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.empty-cart .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .cart-item-image {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cart-product-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-item > div:last-child {
        width: 100%;
        margin-top: 1rem;
        text-align: left !important;
    }
    
    #cartModal .modal-body {
        max-height: 80vh;
        padding: 1rem;
    }
}

/* ===== CHECKOUT PAGE STYLES ===== */
.card-header.bg-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2c2c2c 100%) !important;
}

#checkoutForm .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

#checkoutForm .form-check-input:checked {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

#checkoutForm .form-check-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.checkout-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.sticky-top {
    z-index: 1020;
}

/* Manual Payment Instructions */
#manualPaymentInstructions {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 2px solid var(--accent-gold) !important;
    animation: slideDown 0.3s ease-out;
}

#manualPaymentInstructions h6 {
    color: var(--primary-dark);
}

#manualPaymentInstructions .alert-warning {
    background-color: #fff3cd;
    border-color: var(--accent-gold);
}

#manualPaymentInstructions a {
    color: #25D366;
    font-weight: 600;
}

#manualPaymentInstructions a:hover {
    color: #128C7E;
    text-decoration: underline !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-badge {
    text-align: center;
    padding: 0.5rem;
    transition: var(--transition);
}

.payment-badge:hover {
    transform: translateY(-3px);
}

.payment-badge i {
    display: block;
    margin-bottom: 0.25rem;
}

@media (max-width: 991px) {
    .sticky-top {
        position: relative !important;
        top: 0 !important;
    }
}

/* ===== IMAGE ZOOM MODAL ===== */
.image-zoom-modal-dialog {
    max-width: 70%;
    width: auto;
}

.image-zoom-modal-dialog .modal-content {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.image-zoom-modal-dialog .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.image-zoom-modal-dialog #zoomedImage {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: zoom-out;
}

.image-zoom-modal-dialog .btn-close {
    opacity: 1 !important;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8) !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 1rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    filter: none !important;
}

.image-zoom-modal-dialog .btn-close::before {
    content: '×';
    color: white;
    font-size: 32px;
    line-height: 1;
    font-weight: 300;
    display: block;
}

.image-zoom-modal-dialog .btn-close svg {
    display: none;
}

.image-zoom-modal-dialog .btn-close:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .image-zoom-modal-dialog {
        max-width: 85%;
    }
    
    .image-zoom-modal-dialog #zoomedImage {
        max-height: 65vh;
    }
}

@media (max-width: 768px) {
    .image-zoom-modal-dialog {
        max-width: 90%;
    }
    
    .image-zoom-modal-dialog #zoomedImage {
        max-height: 60vh;
    }
}

/* ===== PRODUCT VARIATIONS ===== */
.color-option {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* ===== TRUST SIGNALS ===== */
.trust-item {
    padding: 2rem;
    transition: var(--transition);
}

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

.trust-item i {
    transition: var(--transition);
}

.trust-item:hover i {
    transform: scale(1.1);
    color: var(--accent-gold) !important;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 4px solid #9ca3af !important;
    border-radius: 16px !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25) !important;
    border-color: #D4AF37 !important;
    border-width: 4px !important;
}

.feature-icon {
    position: relative;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 213, 183, 0.1));
    border-radius: 50%;
    transition: var(--transition-smooth);
    position: relative;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .icon-wrapper::before {
    opacity: 0.3;
    filter: blur(10px);
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(232, 213, 183, 0.2));
}

.icon-wrapper i {
    font-size: 1.5rem !important;
    transition: var(--transition-smooth);
}

.feature-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(232, 213, 183, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ===== FINANCE SECTION ===== */
.finance-logo {
    border-radius: var(--border-radius);
    min-width: 120px;
    text-align: center;
    transition: var(--transition);
    color: var(--primary-dark) !important;
}

.finance-logo * {
    color: var(--primary-dark) !important;
}

.finance-logo span {
    color: var(--primary-dark) !important;
    display: block;
}

.finance-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* ===== AVAILABILITY INFO ===== */
.availability-info {
    border-left: 4px solid var(--accent-gold);
}

/* ===== TRUST BADGES ===== */
.trust-badges small {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.trust-badges small:hover {
    background-color: var(--accent-warm);
}

/* ===== TABS ===== */
.nav-tabs {
    border-bottom: 2px solid var(--bg-light);
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--primary-dark);
}

.nav-tabs .nav-link.active {
    color: var(--primary-dark);
    background-color: transparent;
    border-bottom: 3px solid var(--accent-gold);
}

.tab-content {
    padding: 2rem 0;
}

/* ===== FOOTER ===== */
footer {
    margin-top: 4rem;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%) !important;
    position: relative;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 213, 183, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

footer * {
    color: #ffffff !important;
}

footer h5,
footer h4,
footer h3,
footer h2,
footer h1 {
    color: #ffffff !important;
}

footer p,
footer small,
footer li {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer-links a {
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7) !important;
    display: block;
}

.footer-links a:hover {
    color: var(--accent-gold) !important;
    transform: translateX(5px);
    padding-left: 0;
}

.footer-links a i {
    transition: var(--transition);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
    color: var(--primary-dark) !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
}

.contact-info p {
    transition: var(--transition);
}

.contact-info p:hover {
    transform: translateX(5px);
}

.contact-info i {
    transition: var(--transition);
}

.contact-info p:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* ===== MODALS ===== */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-strong);
}

/* ===== WELCOME MODAL ===== */
.welcome-modal-content {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.welcome-modal-left {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.welcome-modal-left,
.welcome-modal-left * {
    color: #ffffff !important;
}

.welcome-modal-left h2,
.welcome-modal-left h3,
.welcome-modal-left h4,
.welcome-modal-left h5,
.welcome-modal-left h6,
.welcome-modal-left p,
.welcome-modal-left span {
    color: #ffffff !important;
}

.welcome-modal-left .text-white {
    color: #ffffff !important;
}

.welcome-modal-left .lead {
    color: rgba(255, 255, 255, 0.95) !important;
}

.welcome-modal-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(232, 213, 183, 0.2) 0%, transparent 50%);
    animation: patternPulse 4s ease-in-out infinite;
}

.offer-badge {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.welcome-modal-content .form-control {
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    transition: var(--transition);
}

.welcome-modal-content .form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.welcome-modal-content .btn-warning {
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.welcome-modal-content .btn-outline-dark {
    border-radius: 12px;
    border-width: 2px;
}

/* Modal backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-backdrop.show {
    animation: fadeIn 0.3s ease-out;
}

@media (max-width: 768px) {
    .welcome-modal-left {
        min-height: 250px;
    }
    
    .welcome-modal-content .col-md-7 {
        padding: 2rem 1.5rem !important;
    }
}

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

.modal-footer {
    border-top: 1px solid var(--bg-light);
}

/* Notification styles */
.z-index-9999 {
    z-index: 9999 !important;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

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

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

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

/* ===== PAGINATION ===== */
.pagination .page-link {
    color: var(--primary-dark);
    border-color: var(--bg-light);
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

.pagination .page-item.active .page-link {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* ===== FORM ELEMENTS ===== */
.form-control,
.form-select {
    border-radius: var(--border-radius);
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.input-group .btn {
    border-radius: var(--border-radius);
}

/* ===== BADGES ===== */
.badge {
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet and below (768px) */
@media (max-width: 768px) {
    /* Typography */
    .hero-section h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .hero-section .container {
        padding: 1rem;
    }
    
    /* Navigation */
    .navbar-brand {
        font-size: 1.25rem !important;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .navbar-nav .dropdown-menu {
        text-align: left;
        border: none;
        box-shadow: none;
        background-color: var(--bg-light);
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.75rem 1.5rem;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        min-height: 44px; /* Better touch target */
    }
    
    .hero-section .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .hero-section .btn {
        width: 100%;
    }
    
    /* Cards */
    .card-img-top {
        height: 250px;
    }
    
    .product-card,
    .category-card {
        margin-bottom: 1.5rem;
    }
    
    /* Filters Sidebar */
    .filters-sidebar {
        position: relative;
        top: 0;
        max-height: none;
        margin-bottom: 2rem;
        padding: 1.5rem !important;
    }
    
    /* Product Gallery */
    .product-gallery .thumbnail-images {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .thumbnail-images .img-thumbnail {
        width: 70px;
        height: 70px;
        flex: 0 0 auto;
    }
    
    /* Announcement Bar */
    .announcement-bar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }
    
    .announcement-bar .row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Top Info Bar */
    .top-info-bar {
        font-size: 0.7rem;
    }
    
    .top-info-bar .col-6 {
        margin-bottom: 0.5rem;
    }
    
    /* Sections */
    section {
        padding: 2rem 0 !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Footer */
    footer {
        text-align: center;
    }
    
    footer .col-md-6 {
        margin-bottom: 2rem;
    }
    
    footer .text-md-end {
        text-align: center !important;
    }
    
    /* Trust Signals */
    .trust-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Finance Section */
    #finance .row {
        text-align: center;
    }
    
    #finance .d-flex {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Product Variations */
    .product-variations .btn-group {
        flex-direction: column;
    }
    
    .product-variations .btn-group .btn {
        border-radius: var(--border-radius) !important;
        margin-bottom: 0.5rem;
    }
    
    .color-selector {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Modals */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: var(--border-radius);
    }
    
    /* Tables */
    .table {
        font-size: 0.875rem;
    }
    
    /* Pagination */
    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    /* Typography */
    .display-3 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .display-6 {
        font-size: 1.25rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    /* Container */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 40vh;
    }
    
    .hero-section h1 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Navigation */
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Cards */
    .card-img-top {
        height: 200px;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
        width: 100%;
    }
    
    .btn-sm {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    /* Product Grid */
    .row.g-4 {
        --bs-gutter-y: 1rem;
    }
    
    /* Filters */
    .filters-sidebar {
        padding: 1rem !important;
    }
    
    .filters-sidebar h5 {
        font-size: 1.1rem;
    }
    
    /* Product Gallery */
    .thumbnail-images .img-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    /* Announcement Bar */
    .announcement-bar {
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .announcement-bar span {
        display: block;
        margin-bottom: 0.25rem;
    }
    
    /* Top Info Bar */
    .top-info-bar small {
        font-size: 0.65rem;
    }
    
    /* Sections */
    section {
        padding: 1.5rem 0 !important;
    }
    
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Footer */
    footer {
        padding: 2rem 0 !important;
    }
    
    footer h5 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    footer p,
    footer small {
        font-size: 0.85rem;
    }
    
    /* Trust Signals */
    .trust-item {
        padding: 1rem 0.5rem;
    }
    
    .trust-item i {
        font-size: 2rem !important;
    }
    
    .trust-item h4 {
        font-size: 1rem;
    }
    
    /* Finance Section */
    #finance {
        padding: 2rem 0 !important;
    }
    
    #finance h2 {
        font-size: 1.5rem;
    }
    
    #finance .lead {
        font-size: 0.9rem;
    }
    
    .finance-logo {
        min-width: 100px;
        padding: 1rem !important;
        margin: 0.5rem;
    }
    
    /* Product Detail Page */
    .product-variations .input-group {
        max-width: 100%;
    }
    
    .product-variations .btn-group {
        width: 100%;
    }
    
    /* Modals */
    .modal-dialog {
        margin: 0.25rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    /* Tables */
    .table {
        font-size: 0.8rem;
    }
    
    .table td,
    .table th {
        padding: 0.5rem 0.25rem;
    }
    
    /* Breadcrumbs */
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    /* Pagination */
    .pagination .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    /* Quick View Button */
    .quick-view-btn {
        opacity: 1 !important;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    /* Sort Dropdown */
    .form-select {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
    }
    
    /* Color Swatches */
    .color-swatch {
        width: 35px;
        height: 35px;
    }
    
    .color-option {
        width: 45px;
        height: 45px;
    }
}

/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    .btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
    
    .thumbnail-images .img-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .announcement-bar {
        font-size: 0.65rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 60vh;
    }
    
    .navbar-collapse {
        max-height: 70vh;
        overflow-y: auto;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.shadow-sm {
    box-shadow: var(--shadow-soft) !important;
}

.shadow {
    box-shadow: var(--shadow-medium) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-strong) !important;
}

.rounded {
    border-radius: var(--border-radius) !important;
}

/* ===== MOBILE SPECIFIC IMPROVEMENTS ===== */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Better touch targets */
    a, button, .btn, .nav-link, .dropdown-item {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Navbar improvements */
    .navbar-collapse {
        background-color: var(--bg-white);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-medium);
    }
    
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        background-color: var(--bg-light);
        border: 1px solid #dee2e6;
        box-shadow: none;
    }
    
    /* Icon buttons in navbar */
    .navbar .d-flex a {
        padding: 0.5rem;
        min-width: 44px;
    }
    
    /* Product cards mobile */
    .product-card .card-body {
        padding: 1rem;
    }
    
    /* Image zoom on mobile */
    .product-gallery .main-image img {
        width: 100%;
        height: auto;
    }
    
    /* Modal improvements */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-content {
        border-radius: var(--border-radius);
    }
    
    /* Form improvements */
    .form-control,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
    
    /* Input group mobile */
    .input-group {
        flex-wrap: wrap;
    }
    
    .input-group .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    /* Table responsive */
    .table-responsive {
        border: none;
    }
    
    /* Badge mobile */
    .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Spacing adjustments */
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    /* Grid improvements */
    .row.g-4 > * {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media (max-width: 576px) {
    /* Even smaller spacing */
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Stack buttons */
    .d-flex.gap-3 {
        flex-direction: column;
    }
    
    .d-flex.gap-3 > * {
        width: 100%;
    }
    
    /* Product detail page */
    .product-variations .btn-group {
        display: flex;
        flex-direction: column;
    }
    
    .product-variations .btn-group .btn {
        border-radius: var(--border-radius) !important;
        margin-bottom: 0.5rem;
    }
    
    /* Color selector mobile */
    .color-selector {
        gap: 0.75rem;
    }
    
    /* Trust badges mobile */
    .trust-badges {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .trust-badges small {
        width: 100%;
        justify-content: center;
    }
}

/* ===== SCROLLBAR STYLING ===== */
.filters-sidebar::-webkit-scrollbar {
    width: 6px;
}

.filters-sidebar::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.filters-sidebar::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: #C9A52F;
}

/* ===== PREMIUM UI ENHANCEMENTS ===== */

/* Section Headers with Decorative Elements */
section h2.text-center {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
}

section h2.text-center::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

section h2.text-center::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-warm);
    border-radius: 1px;
}

/* Premium Section Backgrounds */
section.bg-light {
    background: var(--bg-gradient-premium);
    position: relative;
}

section:not(.bg-light):not(.bg-dark) {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

section.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(232, 213, 183, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Badge Styling */
.badge {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Premium Price Display */
.product-card .fw-bold.text-dark.fs-5 {
    position: relative;
    display: inline-block;
    font-size: 1.75rem !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.product-card .fw-bold.text-dark.fs-5::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    opacity: 0.5;
}

/* Enhanced Card Body */
.card-body {
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

.card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

/* Premium Input Fields */
.form-control:focus,
.form-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 
        0 0 0 0.2rem rgba(212, 175, 55, 0.25),
        0 4px 12px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

/* Enhanced Dropdowns */
.dropdown-menu {
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    margin: 0.25rem 0;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 213, 183, 0.1));
    transform: translateX(5px);
    color: var(--accent-gold-dark);
}

/* Premium Pagination */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 0.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.pagination .page-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Loading States */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
    border-radius: 10px;
    border: 2px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
}

/* Premium Focus States */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Premium Selection */
::selection {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

::-moz-selection {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Premium Tooltips */
[data-bs-toggle="tooltip"] {
    cursor: help;
    border-bottom: 1px dotted var(--accent-gold);
}

/* Enhanced Trust Signals */
.trust-item {
    position: relative;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.trust-item-premium {
    position: relative;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    border: 3px solid rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.trust-item-premium,
.trust-item-premium * {
    color: #ffffff !important;
}

.trust-item-premium h3,
.trust-item-premium h5,
.trust-item-premium h4,
.trust-item-premium h6 {
    color: #ffffff !important;
}

.trust-item-premium p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.trust-signals-section,
.trust-signals-section * {
    color: #ffffff !important;
}

.trust-signals-section h3,
.trust-signals-section h5,
.trust-signals-section h4,
.trust-signals-section h6 {
    color: #ffffff !important;
}

.trust-signals-section p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.trust-item-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(232, 213, 183, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item-premium:hover::before {
    opacity: 1;
}

.trust-item-premium:hover {
    transform: translateY(-8px);
    border-color: #D4AF37 !important;
    border-width: 3px !important;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3) !important;
    background: rgba(26, 26, 26, 0.95);
}

.trust-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.trust-item-premium:hover .trust-icon-wrapper {
    background: rgba(212, 175, 55, 0.25);
    border-color: #D4AF37;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.trust-icon-wrapper i {
    font-size: 1.5rem !important;
    transition: var(--transition-smooth);
}

.uk-badge {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.uk-badge,
.uk-badge span {
    color: #ffffff !important;
}

.uk-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.uk-badge:hover span {
    color: #ffffff !important;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 4px 15px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Premium Footer Enhancements */
footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Premium Modal Enhancements */
.modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem;
}

.modal-title {
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

/* Premium Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--accent-gold);
    font-weight: bold;
    padding: 0 0.75rem;
}

.breadcrumb-item a {
    transition: var(--transition);
    position: relative;
}

.breadcrumb-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.breadcrumb-item a:hover::after {
    width: 100%;
}

/* Premium Table Styling */
.table {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.table thead {
    background: linear-gradient(135deg, var(--bg-light), #f0f0f0);
}

.table thead th {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--accent-gold);
}

.table tbody tr {
    transition: var(--transition);
}

.table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.01);
}

/* Premium Alert/Notification Styles */
.alert {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 1.25rem 1.5rem;
}

/* Premium Loading Spinner */
.spinner-border {
    border-width: 3px;
    width: 3rem;
    height: 3rem;
    border-color: var(--accent-gold);
    border-right-color: transparent;
}

/* Premium Progress Bars */
.progress {
    height: 8px;
    border-radius: 10px;
    background: var(--bg-light);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm));
    border-radius: 10px;
}

/* Premium Tabs */
.nav-tabs {
    border-bottom: 2px solid var(--bg-light);
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    padding: 1rem 2rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-warm));
    transition: width 0.3s ease;
}

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

.nav-tabs .nav-link.active {
    color: var(--primary-dark);
    background: transparent;
}

/* Premium Form Labels */
.form-label {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

/* Premium Checkboxes and Radios */
.form-check-input:checked {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-check-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Premium Range Slider */
.form-range::-webkit-slider-thumb {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
    border: 2px solid var(--bg-white);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.form-range::-moz-range-thumb {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
    border: 2px solid var(--bg-white);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Premium Container Enhancements */
.container {
    position: relative;
}

/* Premium Section Spacing */
section {
    position: relative;
    padding: 4rem 0;
}

/* Premium Image Hover Effects */
img {
    transition: var(--transition-smooth);
}

img:hover {
    filter: brightness(1.05) contrast(1.05);
}

/* Premium Link Hover Effects */
a:not(.btn):not(.nav-link) {
    position: relative;
    transition: var(--transition);
}

a:not(.btn):not(.nav-link):hover {
    color: var(--accent-gold-dark);
}

/* ===== EYE-CATCHING UI ENHANCEMENTS ===== */

/* Floating Animation for Cards - More Subtle */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.product-card,
.category-card {
    animation: float 8s ease-in-out infinite;
}

/* Disable float animation on hover */
.product-card:hover,
.category-card:hover {
    animation: none;
}

.product-card:nth-child(1),
.category-card:nth-child(1) {
    animation-delay: 0s;
}

.product-card:nth-child(2),
.category-card:nth-child(2) {
    animation-delay: 0.5s;
}

.product-card:nth-child(3),
.category-card:nth-child(3) {
    animation-delay: 1s;
}

.product-card:nth-child(4),
.category-card:nth-child(4) {
    animation-delay: 1.5s;
}

/* Glowing Effect on Hover */
.product-card:hover,
.category-card:hover {
    animation: none;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

/* Premium Image Effects */
.card-img-top {
    filter: brightness(0.95) contrast(1.05) saturate(1.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .card-img-top,
.category-card:hover .card-img-top {
    filter: brightness(1.05) contrast(1.1) saturate(1.2);
    transform: scale(1.1) rotate(1deg);
}

/* Premium Section Backgrounds with Patterns */
section.bg-light {
    background: 
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%),
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 213, 183, 0.05) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    position: relative;
    overflow: hidden;
}

section.bg-light::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(212, 175, 55, 0.02) 50px,
            rgba(212, 175, 55, 0.02) 100px
        );
    animation: patternMove 20s linear infinite;
    pointer-events: none;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

/* Premium Hero Section Enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(232, 213, 183, 0.15) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Premium Card Glow Effect */
.product-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm), var(--accent-gold));
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    filter: blur(10px);
    transition: opacity 0.4s ease;
}

.product-card:hover::after {
    opacity: 0.6;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        filter: blur(10px);
        opacity: 0.6;
    }
    50% {
        filter: blur(15px);
        opacity: 0.8;
    }
}

/* Premium Badge Enhancements */
.badge {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.6rem 1rem;
    border-radius: 8px;
}

.badge.bg-warning {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #C9A52F 100%) !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.badge.bg-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.badge.bg-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%) !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Premium Button Enhancements */
.btn-warning {
    position: relative;
    overflow: hidden;
}

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

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

/* Premium Section Titles */
section h2.text-center {
    position: relative;
    display: inline-block;
    padding: 0 2rem;
    margin-bottom: 1rem;
}

section h2.display-5 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
}

section h2.text-center::before,
section h2.text-center::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-gold);
    opacity: 0.6;
    animation: sparkle 2s ease-in-out infinite;
}

section h2.text-center::before {
    left: -2rem;
}

section h2.text-center::after {
    right: -2rem;
    animation-delay: 1s;
}

/* Remove sparkles on mobile */
@media (max-width: 768px) {
    section h2.text-center::before,
    section h2.text-center::after {
        display: none;
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

/* Premium Image Loading Effect */
.card-img-top {
    position: relative;
}

.card-img-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(232, 213, 183, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover .card-img-top::before {
    opacity: 1;
}

/* Premium Container Glow */
.container {
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

section:hover .container::before {
    opacity: 1;
}

/* Premium Scroll Reveal Effect */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.category-card {
    animation: slideInUp 0.6s ease-out backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

/* Premium Price Display Gradient */
.product-card .fw-bold.text-dark.fs-5 {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Premium Card Border Animation */
.product-card {
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    padding: 3px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm), var(--accent-gold));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

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

/* Premium List Styling */
.list-unstyled li {
    padding: 0.5rem 0;
    transition: var(--transition);
}

.list-unstyled li:hover {
    transform: translateX(5px);
    color: var(--accent-gold);
}

/* Premium Divider */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 2rem 0;
}

/* ===== TOUCH DEVICE IMPROVEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Better touch targets */
    .btn,
    .nav-link,
    .dropdown-item,
    a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .product-card:hover {
        transform: none;
    }
    
    .category-card:hover {
        transform: none;
    }
    
    /* Show quick view button always on mobile */
    .quick-view-btn {
        opacity: 1 !important;
    }
}

/* ===== MOBILE PRODUCT DETAIL PAGE ===== */
@media (max-width: 768px) {
    .product-gallery {
        margin-bottom: 2rem;
    }
    
    .product-gallery .main-image {
        margin-bottom: 1rem;
    }
    
    .product-variations {
        margin-bottom: 1.5rem;
    }
    
    .availability-info {
        margin-bottom: 1.5rem;
    }
    
    .trust-badges {
        margin-bottom: 1.5rem;
    }
    
    /* Stack product info vertically */
    .product-detail-section .row {
        flex-direction: column;
    }
    
    /* CTA buttons stack */
    .d-grid.gap-2 {
        gap: 1rem !important;
    }
}

/* ===== MOBILE FILTERS ===== */
@media (max-width: 768px) {
    .filters-sidebar {
        order: -1;
        margin-bottom: 2rem;
    }
    
    /* Make filter checkboxes larger for touch */
    .form-check-input {
        width: 1.25rem;
        height: 1.25rem;
        margin-top: 0.25rem;
    }
    
    .form-check-label {
        padding-left: 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Price range slider mobile */
    .form-range {
        height: 0.5rem;
    }
    
    .form-range::-webkit-slider-thumb {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* ===== MOBILE MODAL IMPROVEMENTS ===== */
@media (max-width: 768px) {
    .modal-header .btn-close {
        padding: 0.5rem;
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0;
    }
}

/* ===== MOBILE TABLE RESPONSIVE ===== */
@media (max-width: 768px) {
    .table-responsive {
        -webkit-overflow-scrolling: touch;
        border: 1px solid #dee2e6;
        border-radius: var(--border-radius);
    }
    
    .table {
        margin-bottom: 0;
    }
    
    .table td,
    .table th {
        white-space: nowrap;
        padding: 0.75rem 0.5rem;
    }
}

/* ===== MOBILE IMAGE OPTIMIZATION ===== */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .card-img-top {
        object-fit: cover;
    }
    
    /* Prevent image overflow */
    .container img,
    .row img {
        max-width: 100%;
    }
}

/* ===== MOBILE SPACING FIXES ===== */
@media (max-width: 576px) {
    /* Reduce excessive padding */
    .p-5 {
        padding: 1.5rem !important;
    }
    
    .px-5 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Better gap spacing */
    .gap-3 {
        gap: 1rem !important;
    }
    
    .gap-4 {
        gap: 1rem !important;
    }
    
    .gap-5 {
        gap: 1.5rem !important;
    }
}

/* ===== ORDER TRACKER STYLES ===== */
.order-progress {
    position: relative;
    padding: 2rem 0;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.progress-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #6c757d;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.progress-step.completed .step-icon {
    background: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.progress-step.active .step-icon {
    background: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.3);
    animation: pulse 2s infinite;
}

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

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.progress-line {
    width: 3px;
    height: 40px;
    background: #e9ecef;
    margin-left: 23.5px;
    margin-bottom: 1rem;
    position: relative;
}

.progress-step.completed + .progress-line {
    background: linear-gradient(180deg, var(--accent-gold) 0%, var(--accent-gold) 100%);
}

.progress-step.active + .progress-line {
    background: linear-gradient(180deg, var(--accent-gold) 0%, #e9ecef 100%);
}

.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #2c2c2c;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #2c2c2c;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 75px;
}

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

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ===== CART MODAL HEADER ===== */
.cart-modal-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
    border-bottom: 2px solid #febf0a !important;
    padding: 1.5rem !important;
}

.cart-modal-header .modal-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
}

.cart-modal-header .text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.cart-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(254, 191, 10, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #febf0a;
}

.cart-icon-wrapper i {
    font-size: 1.5rem;
    color: #febf0a !important;
}

.cart-modal-header .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ===== CHECKOUT FORM STYLING ===== */
.checkout-form-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
    border: 2px solid #febf0a !important;
}

.checkout-form-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
    border-bottom: 2px solid #febf0a !important;
}

.checkout-form-body {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
    color: #ffffff !important;
}

.checkout-form-body .form-label {
    color: #ffffff !important;
    font-weight: 500;
}

.checkout-form-body .form-control {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(254, 191, 10, 0.3) !important;
    color: #ffffff !important;
}

.checkout-form-body .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: #febf0a !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 0.2rem rgba(254, 191, 10, 0.25) !important;
}

.checkout-form-body .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.checkout-form-body .form-check-label {
    color: #ffffff !important;
}

.checkout-form-body .form-check-input {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(254, 191, 10, 0.5) !important;
}

.checkout-form-body .form-check-input:checked {
    background-color: #febf0a !important;
    border-color: #febf0a !important;
}

.checkout-form-body h6 {
    color: #febf0a !important;
    font-weight: 600;
}

.checkout-form-body .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.checkout-form-body .text-danger {
    color: #ff6b6b !important;
}

.checkout-form-body a {
    color: #febf0a !important;
}

.checkout-form-body a:hover {
    color: #fecf4d !important;
}

.checkout-form-body .btn-warning {
    background: linear-gradient(135deg, #febf0a 0%, #febf0a 100%) !important;
    border: none !important;
    color: #1a1a1a !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(254, 191, 10, 0.4) !important;
}

.checkout-form-body .btn-warning:hover {
    background: linear-gradient(135deg, #fecf4d 0%, #febf0a 100%) !important;
    box-shadow: 0 6px 20px rgba(254, 191, 10, 0.6) !important;
    transform: translateY(-2px);
}

.checkout-form-body .bg-light {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(254, 191, 10, 0.3) !important;
}

.checkout-form-body .alert-warning {
    background-color: rgba(254, 191, 10, 0.2) !important;
    border-color: rgba(254, 191, 10, 0.5) !important;
    color: #ffffff !important;
}

.checkout-form-body .alert-warning strong {
    color: #febf0a !important;
}

.checkout-form-body .alert-warning a {
    color: #febf0a !important;
    font-weight: bold;
}

/* ===== ORDER TRACKING STATUS TIMELINE ===== */
.status-timeline {
    position: relative;
    padding-left: 20px;
}

.status-step {
    position: relative;
    padding-left: 30px;
}

.status-step::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 30px;
    width: 2px;
    height: calc(100% + 10px);
    background: rgba(255, 255, 255, 0.2);
}

.status-step:last-child::before {
    display: none;
}

.status-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(254, 191, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(254, 191, 10, 0.3);
    position: relative;
    z-index: 1;
}

.status-step.active .status-icon-wrapper,
.status-step.completed .status-icon-wrapper {
    background: rgba(254, 191, 10, 0.2);
    border-color: #febf0a;
}

.table-dark {
    background-color: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(254, 191, 10, 0.2) !important;
}

.table-dark th {
    border-color: rgba(254, 191, 10, 0.3) !important;
    color: #febf0a !important;
}

.table-dark td {
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ===== DELIVERY ADDRESS BOX ===== */
.delivery-address-box {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(254, 191, 10, 0.5) !important;
}

.delivery-address-box h6 {
    color: #1a1a1a !important;
}

.delivery-address-text {
    color: #2c2c2c !important;
}

.delivery-address-text strong {
    color: #1a1a1a !important;
}

.delivery-address-text span {
    color: #2c2c2c !important;
}

.delivery-address-text div {
    color: #2c2c2c !important;
}

/* ===== PAYMENT STATUS BOX ===== */
.payment-status-box {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(254, 191, 10, 0.5) !important;
}

.payment-status-box strong {
    color: #1a1a1a !important;
}

.payment-status-box .text-end strong {
    color: #1a1a1a !important;
}

/* ===== ORDER DETAIL BOX ===== */
.order-detail-box {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(254, 191, 10, 0.5) !important;
}

.order-detail-box strong {
    color: #1a1a1a !important;
}

.order-detail-box span {
    color: #2c2c2c !important;
}

/* ===== STATUS TIMELINE BOX ===== */
.status-timeline-box {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(254, 191, 10, 0.5) !important;
}

.status-timeline-box h6 {
    color: #1a1a1a !important;
}

.status-timeline-box .status-step span {
    color: #1a1a1a !important;
}

.status-timeline-box .status-step .text-secondary {
    color: #6c757d !important;
}

.status-timeline-box .status-step small {
    color: #6c757d !important;
}

/* ===== ORDER STATUS CARD SCROLLING FIX ===== */
.order-status-card {
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
}

.order-status-card .card-body {
    max-height: none !important;
    overflow: visible !important;
    position: relative !important;
}

.order-status-card .status-timeline-box,
.order-status-card .payment-status-box,
.order-status-card .delivery-address-box,
.order-status-card .order-detail-box {
    position: relative !important;
    overflow: visible !important;
}

/* Ensure all sections are scrollable */
section {
    overflow: visible !important;
}

.container {
    overflow: visible !important;
}

/* ===== PREMIUM LANDING PAGE OVERRIDES (no kids-style animations) ===== */
/* Hero */
.hero-headline {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
}
.hero-subline {
    font-family: 'Poppins', sans-serif;
}
/* Section headers: simple label + title */
.section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}
/* Muted badges (small, no icons) */
.badge-muted {
    background: rgba(0, 0, 0, 0.08) !important;
    color: #495057 !important;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    border: none;
    box-shadow: none;
    animation: none !important;
}
.badge-muted::before,
.badge-muted::after {
    display: none !important;
}
/* Disable playful animations on cards */
.product-card,
.category-card,
.product-card-wrapper {
    animation: none !important;
}
.product-card:hover,
.category-card:hover {
    filter: none;
}
/* Cards: thin border, subtle shadow, small lift on hover */
.category-card,
.category-card.card,
.product-card,
.product-card.card {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card:hover,
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1) !important;
}
.category-card:hover .card-img-top,
.product-card:hover .card-img-top {
    transform: scale(1.02);
    filter: brightness(1.02) contrast(1.02);
}
/* Remove rotating border and glow on product cards */
.product-card::before,
.product-card::after {
    display: none !important;
}
/* Disable badge pulse and shine globally on landing */
.announcement-bar .badge {
    animation: none !important;
}
.badge::after {
    display: none !important;
    animation: none !important;
}
.product-card .badge.bg-danger {
    animation: none !important;
}
/* Remove sparkles from section titles */
section h2.text-center::before,
section h2.text-center::after {
    display: none !important;
}

/* ===== FURTHER PREMIUM LANDING REFINEMENTS ===== */
/* Hero trust line */
.hero-trust-line {
    font-family: 'Poppins', sans-serif;
}
/* Product overlay: show "View" on hover */
.product-image-container:hover .product-overlay {
    opacity: 1 !important;
}
.product-overlay-link:hover {
    color: #fff !important;
    text-decoration: underline !important;
}
/* Product price (no icon) */
.product-price {
    font-size: 1.15rem;
    font-family: 'Poppins', sans-serif;
}
/* Category card link */
.category-link {
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s ease;
}
.category-card a:hover .category-link {
    color: #1a1a1a !important;
}
/* Why Choose Us: simple feature cards */
.feature-card-simple {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card-simple:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12) !important;
}
.feature-label {
    font-family: 'Poppins', sans-serif;
}
/* Announcement bar minimal */
.announcement-minimal .announcement-pattern,
.announcement-minimal .announcement-text i {
    display: none;
}
.announcement-minimal .announcement-text {
    font-family: 'Poppins', sans-serif;
}
/* Top info bar minimal */
.top-info-minimal small {
    font-family: 'Poppins', sans-serif;
}
.info-bar-item:hover {
    background: transparent;
    transform: none;
}
.top-info-minimal .text-muted {
    color: #6c757d !important;
}
/* Footer trust text */
.footer-trust-text {
    font-family: 'Poppins', sans-serif;
}
/* Trust signals section: simple text, no big icons/badges */
.trust-item-simple .trust-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
}
.trust-item-simple p {
    font-family: 'Poppins', sans-serif;
}
.trust-line-text {
    font-family: 'Poppins', sans-serif;
}

/* ===== LANDING PAGE CARDS V2 (clean UI) ===== */
/* Category card v2 */
.category-card-v2 {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.category-card-v2:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.category-card-v2__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
}
.category-card-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.category-card-v2:hover .category-card-v2__image img {
    transform: scale(1.03);
}
.category-card-v2__body {
    padding: 1.25rem 1.5rem;
    text-align: center;
}
.category-card-v2__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.35rem 0;
    line-height: 1.3;
}
.category-card-v2:hover .category-card-v2__title {
    color: #1a1a1a;
}
.category-card-v2__link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}
.category-card-v2:hover .category-card-v2__link {
    color: #1a1a1a;
}

/* Product card v2 */
.product-card-v2 {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}
.product-card-v2:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.product-card-v2__image-wrap {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.product-card-v2__image {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
}
.product-card-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card-v2__image-wrap:hover img {
    transform: scale(1.04);
}
.product-card-v2__tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}
.product-card-v2__tag--new {
    background: rgba(0, 0, 0, 0.5);
}
.product-card-v2__body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-v2__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-v2__title a:hover {
    color: #333;
}
.product-card-v2__price-row {
    margin-bottom: 0.25rem;
}
.product-card-v2__price-old {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
}
.product-card-v2__price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}
.product-card-v2__meta {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0 0 1rem 0;
}
.product-card-v2__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-card-v2__btn-cart {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border: 1px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.product-card-v2__btn-cart:hover:not(:disabled) {
    background: #1a1a1a;
    color: #fff;
}
.product-card-v2__btn-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.product-card-v2__link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}
.product-card-v2__link:hover {
    color: #1a1a1a;
}

/* Product card v2 compact (Latest products) */
.product-card-v2--compact .product-card-v2__body {
    padding: 1rem 1.25rem;
}
.product-card-v2--compact .product-card-v2__title {
    font-size: 1rem;
}
.product-card-v2--compact .product-card-v2__price {
    font-size: 1rem;
}
.product-card-v2--compact .product-card-v2__tag--new {
    top: 0.5rem;
    right: 0.5rem;
}

/* ===== SIMPLE CARDS (image + name + price + Details button) ===== */
.product-card-simple {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card-simple:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.product-card-simple__img {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}
.product-card-simple__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-card-simple__body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.product-card-simple__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-simple__price {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}
.product-card-simple__btn {
    display: inline-block;
    margin-top: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    width: fit-content;
    transition: background 0.2s ease, color 0.2s ease;
}
.product-card-simple__btn:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Category simple */
.category-card-simple {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
    color: inherit;
}
.category-card-simple:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.category-card-simple__img {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
}
.category-card-simple__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.category-card-simple__body {
    padding: 1.25rem 1.5rem;
    text-align: center;
}
.category-card-simple__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.35rem 0;
}
.category-card-simple__btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}
.category-card-simple:hover .category-card-simple__btn {
    color: #1a1a1a;
}

