:root {
    --primary: #c41212;
    --primary-dark: #990e0e;
    --primary-light: #fef2f2;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b59325;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.14);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Top Announcement Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.badge-tag {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.08);
}

.badge-tag i {
    color: var(--primary);
    font-size: 0.95rem;
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

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

/* Header */
.header {
    background: var(--bg-white);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 90;
}

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

.logo img {
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.04);
}

.search-box {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.search-box form {
    display: flex;
    border: 2px solid var(--primary);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: inherit;
}

.search-box button {
    background: var(--primary);
    color: #fff;
    padding: 0 24px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

.search-results-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-height: 350px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.search-result-item:hover {
    background: var(--primary-light);
}

.search-result-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.btn-whatsapp-header {
    background: #25d366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header:hover {
    background: #1eb956;
    transform: translateY(-2px);
}

/* Navigation Menu */
.main-nav {
    background: #ffffff;
    color: var(--text-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    color: #334155;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary);
    background: transparent;
}

.highlight-link {
    color: var(--primary);
    font-weight: 800;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    color: var(--text-dark);
    list-style: none;
    min-width: 200px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--border-color);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Hero Slider */
.hero-slider-section {
    position: relative;
    background: #000;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 440px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 60px;
    left: 10%;
    max-width: 550px;
    color: #fff;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
}

.caption-tag {
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.slide-caption h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.slide-caption p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.btn-gold:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    color: var(--text-dark);
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: #fff;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

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

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

.dot.active {
    background: var(--accent-gold);
    width: 28px;
    border-radius: 12px;
}

/* Trust Features Section */
.trust-features-section {
    padding: 30px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.trust-card img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.trust-text h4 {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.trust-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Section Headings */
.section-title {
    margin-bottom: 30px;
    text-align: center;
}

.section-title.text-left {
    text-align: left;
    margin-bottom: 0;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.section-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Category Banners Grid */
.category-banners-section {
    padding: 50px 0;
}

/* Luxury Category Showcase Grid */
.luxury-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 24px;
}

.lux-cat-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.lux-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.09);
    border-color: var(--primary);
}

.lux-cat-img-box {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.lux-cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lux-cat-card:hover .lux-cat-img-box img {
    transform: scale(1.08);
}

.lux-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.lux-cat-content {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lux-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.lux-cat-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.lux-cat-header h3 i {
    color: var(--primary);
}

.lux-cat-count {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
}

.lux-cat-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.lux-sub-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.lux-sub-tags span {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    transition: var(--transition);
}

.lux-cat-card:hover .lux-sub-tags span {
    background: #fef2f2;
    color: var(--primary-dark);
}

.lux-cat-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
}

.btn-lux-explore {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.lux-cat-card:hover .btn-lux-explore {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Stats Counter Section */
.stats-counter-section {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #450a0a 100%);
    color: #fff;
    padding: 45px 0;
    box-shadow: inset 0 4px 12px rgba(0,0,0,0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-card {
    padding: 16px;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 70px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 14px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
}

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

/* Products Showcase */
.products-section {
    padding: 50px 0 80px;
    background: var(--bg-white);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.filter-tab:hover, .filter-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 18, 18, 0.4);
}

.product-cat-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 5;
    text-transform: uppercase;
}

.product-img-wrapper {
    height: 200px;
    padding: 16px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.btn-inspect {
    width: 100%;
    background: var(--bg-light);
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.product-card:hover .btn-inspect {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* About Section */
.about-section {
    padding: 70px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

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

@media (max-width: 768px) {
    .about-container { grid-template-columns: 1fr; }
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin: 14px 0 20px;
    color: var(--primary-dark);
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.about-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.about-badge-item {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.about-badge-item i {
    color: var(--accent-gold);
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 0 0;
    font-size: 0.9rem;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 992px) {
    .footer-top-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-top-grid { grid-template-columns: 1fr; }
}

.footer-logo {
    height: 75px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.04);
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.contact-info {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info a, .contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.btn-whatsapp-footer {
    background: #25d366;
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    margin-top: 10px;
}

.btn-whatsapp-footer:hover {
    background: #1eb956;
}

.footer-bottom {
    background: #0b0f19;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 80;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #111827;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

/* Quick View Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: default;
}

/* Custom Sleek Scrollbar for Modal Text Container */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    font-size: 1.2rem;
    z-index: 10;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

@media (max-width: 650px) {
    .modal-grid { grid-template-columns: 1fr; }
}

.modal-img img {
    width: 100%;
    height: 280px;
    object-fit: contain;
}

.modal-details h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.modal-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Header Favorites Button */
.btn-fav-header {
    background: #fff;
    color: #ef4444;
    border: 1px solid #fca5a5;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-fav-header:hover {
    background: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

/* Card Action Buttons */
.btn-fav-card {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-fav-card:hover, .btn-fav-card.active {
    color: #ef4444;
    background: #ffffff;
    transform: scale(1.15);
}

.product-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.btn-wa-card {
    background: #25d366;
    color: #fff;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.btn-wa-card:hover {
    background: #1eb956;
    color: #fff;
}

/* Storage & Freshness Tips Section */
.storage-tips-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.storage-card {
    background: var(--bg-light);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.storage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.storage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

.storage-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.storage-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px 20px;
}

/* Scroll To Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.4);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Responsive Design Breakpoints */
@media (max-width: 992px) {
    .header-container {
        flex-wrap: wrap;
    }
    .search-box {
        order: 3;
        max-width: 100%;
        width: 100%;
        margin-top: 10px;
    }
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .top-bar-right {
        justify-content: center;
    }
    .luxury-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-actions {
        gap: 10px;
    }
    .btn-fav-header span,
    .btn-whatsapp-header span {
        font-size: 0.8rem;
    }
    .nav-menu {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu::-webkit-scrollbar {
        height: 3px;
    }
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    .slide-caption h2 {
        font-size: 1.4rem;
    }
    .slide-caption p {
        font-size: 0.9rem;
    }
    .about-container {
        flex-direction: column;
    }
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .filter-tabs {
        overflow-x: auto;
        max-width: 100%;
        padding-bottom: 8px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .scroll-top-btn {
        bottom: 80px;
        right: 15px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 15px;
    }
}
