/* ROSEBUD GLOBAL - CSS v1.6.0 */
:root {
    --primary: #D63585;
    --primary-light: #E85A9E;
    --primary-dark: #B82D72;
    --blue: #377DFF;
    --green: #38CB89;
    --gold: #C9A164;
    --neutral-07: #141718;
    --neutral-06: #232627;
    --neutral-05: #343839;
    --neutral-04: #6C7275;
    --neutral-03: #E8ECEF;
    --neutral-02: #F3F5F7;
    --neutral-01: #FEFEFE;
    --white: #FFFFFF;
    --black: #000000;
    --header-bg: #FFFFFF;
    --header-bg-scrolled: #000000;
    --footer-bg: #141718;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    --container-padding: 160px;
    --section-gap: 48px;
    --shadow-01: 0px 8px 16px rgba(0, 0, 0, 0.04);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 100px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); font-size: 16px; line-height: 1.6; color: var(--neutral-07); background-color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
button { cursor: pointer; border: none; background: transparent; font-family: inherit; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 var(--container-padding); }
@media (max-width: 1200px) { .container { padding: 0 80px; } }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* Notification Bar - DISABLED */
.notification-bar { background-color: var(--neutral-02); height: 40px; display: none !important; align-items: center; justify-content: center; position: relative; visibility: hidden !important; }
.notification-content { display: flex; align-items: center; gap: 12px; }
.notification-text { font-weight: 600; font-size: 14px; color: var(--neutral-05); }
.notification-link { display: flex; align-items: center; gap: 4px; font-weight: 500; font-size: 14px; color: var(--blue); border-bottom: 1px solid var(--blue); }
.notification-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }

/* Navigation - Two logos for scroll state */
.navbar { background-color: var(--header-bg); position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.navbar.scrolled { background-color: var(--header-bg-scrolled); }
.logo-img { height: 47px; width: auto; transition: opacity 0.3s ease; }
.logo-default { display: block; }
.logo-scrolled { display: none; }
.navbar.scrolled .logo-default { display: none; }
.navbar.scrolled .logo-scrolled { display: block; }
.navbar.scrolled .nav-link { color: var(--white); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--primary); }
.navbar.scrolled .icon-btn { color: var(--white); }
.navbar.scrolled .cart-count { background-color: var(--primary); color: var(--white); }
.navbar.scrolled .mobile-menu-btn { color: var(--white); }
.navbar-container { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px var(--container-padding); }
.logo { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-link { font-family: var(--font-secondary); font-weight: 500; font-size: 14px; color: var(--neutral-07); transition: color 0.3s ease; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-icons { display: flex; align-items: center; gap: 16px; }
.icon-btn { color: var(--neutral-07); padding: 4px; transition: all 0.3s ease; }
.icon-btn:hover { color: var(--primary); }
.cart-btn { position: relative; }
.cart-count { position: absolute; top: -4px; right: -8px; background-color: var(--primary); color: var(--white); font-weight: 700; font-size: 12px; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.mobile-menu-btn { display: none; color: var(--neutral-07); }
@media (max-width: 992px) { .nav-links { display: none; } .mobile-menu-btn { display: block; } .navbar-container { padding: 16px 24px; } }

/* Search Dropdown */
.search-container { position: relative; }
.search-dropdown { position: absolute; top: 100%; right: 0; width: 380px; background: var(--white); border-radius: var(--radius-md); box-shadow: 0 8px 30px rgba(0,0,0,0.15); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 1001; margin-top: 12px; }
.search-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.search-input { width: 100%; padding: 14px 16px; border: none; border-bottom: 1px solid var(--neutral-03); font-size: 14px; outline: none; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.search-results { max-height: 350px; overflow-y: auto; }
.search-result-item { padding: 12px 16px; cursor: pointer; transition: background 0.2s ease; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--neutral-03); }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--neutral-02); }
.search-result-item .result-icon { width: 50px; height: 50px; background: var(--neutral-02); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.search-result-item .result-icon img { width: 100%; height: 100%; object-fit: cover; }
.search-result-item .result-info { flex: 1; }
.search-result-item .result-name { font-weight: 500; font-size: 14px; color: var(--neutral-07); }
.search-result-item .result-meta { font-size: 12px; color: var(--neutral-04); margin-top: 2px; }
.search-result-item .result-sku { color: var(--primary); font-weight: 500; }
.search-no-results { padding: 24px 16px; text-align: center; color: var(--neutral-04); font-size: 14px; }
.search-category { padding: 8px 16px; background: var(--neutral-02); font-size: 12px; font-weight: 600; color: var(--neutral-04); text-transform: uppercase; letter-spacing: 0.5px; }

/* Login Modal */
.login-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); background: var(--white); padding: 48px; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.2); z-index: 2001; width: 100%; max-width: 420px; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.login-modal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.login-modal h2 { font-size: 28px; font-weight: 600; color: var(--neutral-07); margin-bottom: 8px; }
.login-subtitle { color: var(--neutral-04); margin-bottom: 32px; }
.close-modal { position: absolute; top: 20px; right: 20px; font-size: 28px; color: var(--neutral-04); cursor: pointer; }
.login-form .form-group { margin-bottom: 20px; }
.login-form label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--neutral-07); }
.login-form input { width: 100%; padding: 14px 16px; border: 1px solid var(--neutral-03); border-radius: var(--radius-md); font-size: 14px; transition: border-color 0.3s ease; }
.login-form input:focus { outline: none; border-color: var(--primary); }
.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; font-size: 14px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; color: var(--neutral-04); cursor: pointer; }
.forgot-link { color: var(--primary); }
.login-btn { width: 100%; padding: 14px; background: var(--primary); color: var(--white); font-weight: 600; border-radius: var(--radius-md); transition: background 0.3s ease; }
.login-btn:hover { background: var(--primary-dark); }
.signup-text { text-align: center; margin-top: 24px; color: var(--neutral-04); font-size: 14px; }
.signup-text a { color: var(--primary); font-weight: 500; }
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }

/* Cart Sidebar */
.cart-sidebar { position: fixed; top: 0; right: -400px; width: 400px; height: 100vh; background: var(--white); box-shadow: -4px 0 20px rgba(0,0,0,0.15); z-index: 2000; transition: right 0.3s ease; display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--neutral-03); }
.cart-header h3 { font-size: 20px; font-weight: 600; }
.close-cart { font-size: 28px; color: var(--neutral-04); cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.empty-cart { text-align: center; color: var(--neutral-04); padding: 40px 0; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--neutral-03); }
.cart-item-image { width: 80px; height: 80px; background: var(--neutral-02); border-radius: var(--radius-sm); overflow: hidden; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 500; margin-bottom: 4px; font-size: 14px; }
.cart-item-sku { font-size: 12px; color: var(--primary); margin-bottom: 4px; }
.cart-item-price { color: var(--neutral-07); font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--neutral-03); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.qty-btn:hover { border-color: var(--primary); color: var(--primary); }
.cart-item-remove { color: var(--neutral-04); cursor: pointer; font-size: 12px; margin-left: auto; }
.cart-item-remove:hover { color: var(--primary); }
.cart-footer { padding: 24px; border-top: 1px solid var(--neutral-03); }
.cart-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.checkout-btn { width: 100%; padding: 14px; background: var(--primary); color: var(--white); font-weight: 600; border-radius: var(--radius-md); transition: background 0.3s ease; }
.checkout-btn:hover { background: var(--primary-dark); }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.cart-overlay.open { opacity: 1; visibility: visible; }
@media (max-width: 480px) { .cart-sidebar { width: 100%; right: -100%; } }

/* Hero Section */
.hero-section { position: relative; height: 600px; overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; display: flex; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { position: absolute; inset: 0; }
.hero-slide-bg-1 { background: linear-gradient(135deg, #1a3a2f 0%, #0d2818 100%); }
.hero-slide-bg-2 { background: linear-gradient(135deg, #f5ebe0 0%, #d5c4a1 100%); }
.hero-slide-bg-3 { background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%); }
.hero-slide-content { position: relative; z-index: 10; display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 0 var(--container-padding); gap: 60px; }
.hero-image-wrapper { flex: 1; display: flex; align-items: center; justify-content: center; animation: floatImage 6s ease-in-out infinite; }
.hero-product-image { max-width: 450px; max-height: 450px; object-fit: contain; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-text-content { flex: 1; max-width: 500px; }
.hero-label { display: inline-block; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
.hero-title { font-size: 52px; font-weight: 600; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.hero-slide[data-slide="1"] .hero-title { color: var(--neutral-07); }
.hero-slide[data-slide="1"] .hero-label { color: var(--primary); }
.hero-slide[data-slide="1"] .hero-subtitle { color: var(--neutral-04); }
.hero-subtitle { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.hero-cta { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background-color: var(--primary); color: var(--white); font-weight: 500; border-radius: var(--radius-md); transition: all 0.3s ease; }
.hero-cta:hover { background-color: var(--primary-dark); transform: translateY(-2px); }
@keyframes floatImage { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-navigation { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 32px; z-index: 20; }
.slider-btn { width: 52px; height: 52px; background-color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-01); color: var(--neutral-07); transition: all 0.3s ease; }
.slider-btn:hover { background-color: var(--neutral-02); transform: scale(1.05); }
.slider-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 20; }
.dot { width: 10px; height: 10px; background-color: rgba(255,255,255,0.4); border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
.dot.active { width: 32px; background-color: var(--white); border-radius: var(--radius-full); }
@media (max-width: 992px) { .hero-slide-content { flex-direction: column; padding: 40px 24px; gap: 30px; } .hero-product-image { max-width: 280px; } .hero-title { font-size: 36px; } .hero-text-content { text-align: center; } }

/* Hero Content Section */
.hero-content-section { background-color: var(--white); padding: 40px 0; }
.hero-content-grid { display: flex; align-items: center; gap: 24px; }
.hero-headline h1 { font-weight: 500; font-size: 72px; line-height: 76px; letter-spacing: -2px; color: var(--primary); }
.hero-headline .text-muted { color: var(--neutral-04); }
.hero-description { max-width: 453px; }
.hero-description p { font-weight: 600; font-size: 16px; line-height: 26px; color: var(--neutral-05); }
.hero-description p span { font-weight: 400; color: var(--neutral-04); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--neutral-04); }
.text-dark { color: #141718; }
.text-highlight { color: var(--neutral-07); font-weight: 600; }
@media (max-width: 992px) { .hero-content-grid { flex-direction: column; align-items: flex-start; } .hero-headline h1 { font-size: 48px; line-height: 54px; } }

/* Brand Carousel - Clean with 40px spacing, no black boxes */
.brand-carousel-section { background-color: var(--primary); padding: 0; overflow: hidden; border-bottom: 6px solid var(--gold); }
.brand-carousel-track { display: flex; align-items: center; gap: 40px; padding: 20px 40px; animation: scrollLogos 25s linear infinite; }
.brand-logo-item { flex-shrink: 0; height: 60px; display: flex; align-items: center; justify-content: center; }
.brand-logo { max-height: 50px; max-width: 130px; object-fit: contain; transition: transform 0.3s ease; }
/* Mikasa base size */
.brand-logo-item[data-brand="mikasa"] .brand-logo { max-height: 60px; max-width: 160px; }
/* Tozai logo 15% larger than Mikasa */
.brand-logo-item[data-brand="tozai-home"] .brand-logo { max-height: 69px; max-width: 184px; }
.brand-logo-item:hover .brand-logo { transform: scale(1.05); }
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.brand-carousel-section:hover .brand-carousel-track { animation-play-state: paused; }

/* Shop Header - with 60px spacing after subtitle */
.shop-header { text-align: center; margin-bottom: 60px; }
.shop-title { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 40px; line-height: 44px; color: var(--primary); margin-bottom: 12px; }
.shop-subtitle { font-family: 'Poppins', sans-serif; font-size: 16px; color: var(--neutral-04); max-width: 600px; margin: 0 auto; }

/* Banner Grid */
.banner-grid-section { background-color: var(--white); padding: var(--section-gap) 0; }
.banner-grid { display: flex; gap: 24px; }
.banner-card { position: relative; overflow: hidden; background-color: var(--neutral-02); border-radius: var(--radius-md); display: flex; flex-direction: column; }
.banner-large { flex: 1; height: 532px; }
.banner-small-wrapper { width: 548px; display: flex; flex-direction: column; gap: 24px; }
.banner-small { height: 254px; }
.banner-content-top { padding: 24px 24px 16px; z-index: 10; }
.banner-image-wrapper { flex: 1; position: relative; overflow: hidden; }
.banner-img { width: 100%; height: 100%; object-fit: cover; }
.banner-title { font-weight: 500; font-size: 28px; line-height: 34px; color: var(--primary); margin-bottom: 8px; }
.banner-small .banner-title { font-size: 22px; line-height: 28px; }
.collage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 8px; height: 100%; }
.collage-grid.collage-two { grid-template-columns: 1fr 1fr; }
.collage-img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
@media (max-width: 1200px) { .banner-grid { flex-direction: column; } .banner-large { height: 400px; } .banner-small-wrapper { width: 100%; flex-direction: row; } .banner-small { flex: 1; height: 280px; } }
@media (max-width: 768px) { .banner-small-wrapper { flex-direction: column; } .banner-small { height: 220px; } }

/* Button Link */
.btn-link { display: inline-flex; align-items: center; gap: 4px; font-weight: 500; font-size: 16px; color: var(--neutral-07); border-bottom: 1px solid var(--neutral-07); padding-bottom: 2px; transition: opacity 0.3s ease; }
.btn-link:hover { opacity: 0.7; }

/* Products Section */
.products-section { background-color: var(--white); padding: var(--section-gap) 0; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--section-gap); }
.section-title h2 { font-weight: 500; font-size: 40px; line-height: 44px; color: var(--primary); }
.section-title-text { font-weight: 500; font-size: 40px; line-height: 44px; color: var(--primary); }
.products-carousel { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 16px; scroll-behavior: smooth; scrollbar-width: none; }
.products-carousel::-webkit-scrollbar { display: none; }
.product-card { flex-shrink: 0; width: 262px; }
.product-image-wrapper { position: relative; height: 349px; background-color: var(--neutral-02); overflow: hidden; margin-bottom: 12px; border-radius: var(--radius-md); }
.product-image-wrapper.product-img-white-bg { background-color: var(--white); }
.product-img { width: 100%; height: 100%; object-fit: cover; }
.product-badges { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 8px; }
.badge { padding: 4px 14px; font-weight: 700; font-size: 16px; text-transform: uppercase; border-radius: var(--radius-sm); }
.badge-new-green { background-color: var(--green); color: var(--white); }
.wishlist-btn { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background-color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); color: var(--neutral-07); transition: all 0.3s ease; }
.wishlist-btn:hover { color: var(--primary); transform: scale(1.1); }
.add-to-cart-btn { position: absolute; bottom: 16px; left: 16px; right: 16px; padding: 8px 24px; background-color: var(--primary); color: var(--white); font-weight: 500; text-align: center; border-radius: var(--radius-md); opacity: 0; transform: translateY(10px); transition: all 0.3s ease; }
.product-card:hover .add-to-cart-btn { opacity: 1; transform: translateY(0); }
.add-to-cart-btn:hover { background-color: var(--primary-dark); }

/* Inquiry Button Style */
.add-to-cart-btn.inquiry-btn { background-color: #377DFF; }
.add-to-cart-btn.inquiry-btn:hover { background-color: #2563EB; }
.product-info { display: flex; flex-direction: column; gap: 4px; }
.product-rating .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.product-name { font-weight: 600; font-size: 16px; line-height: 26px; color: var(--neutral-07); }
.product-price { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.current-price { font-weight: 600; font-size: 14px; color: var(--neutral-07); }
.product-sku { color: var(--primary); font-weight: 500; }
.contact-price { font-size: 12px; color: var(--neutral-04); background-color: var(--neutral-02); padding: 2px 8px; border-radius: var(--radius-sm); }
.carousel-progress { height: 4px; background-color: var(--neutral-03); border-radius: var(--radius-full); margin-top: var(--section-gap); overflow: hidden; cursor: pointer; }
.progress-bar { height: 100%; background-color: var(--primary); border-radius: var(--radius-full); transition: width 0.1s ease; }

/* Values Section */
.values-section { background-color: var(--white); padding: var(--section-gap) 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background-color: var(--neutral-02); padding: 48px 32px; display: flex; flex-direction: column; gap: 16px; border-radius: var(--radius-md); transition: all 0.4s ease; }
.value-card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); }
.value-icon { width: 48px; height: 48px; transition: transform 0.4s ease; }
.value-card:hover .value-icon { transform: scale(1.15); }
.value-title { font-weight: 500; font-size: 20px; color: var(--neutral-07); }
.value-description { font-weight: 400; font-size: 14px; color: var(--neutral-04); }
@media (max-width: 992px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .values-grid { grid-template-columns: 1fr; } }

/* Sale Banner */
.sale-banner-section { background-color: var(--white); }
.sale-banner { display: flex; min-height: 532px; }
.sale-banner-image { flex: 1; position: relative; overflow: hidden; }
.sale-img { width: 100%; height: 100%; object-fit: cover; }
.sale-banner-content { flex: 1; background-color: var(--neutral-02); padding: 72px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.sale-label { font-weight: 700; font-size: 16px; text-transform: uppercase; color: var(--blue); }
.sale-title { font-weight: 500; font-size: 40px; line-height: 44px; color: var(--primary); }
.sale-description { font-weight: 400; font-size: 20px; line-height: 32px; color: var(--neutral-07); max-width: 452px; }
@media (max-width: 992px) { .sale-banner { flex-direction: column; } .sale-banner-image { height: 300px; } .sale-banner-content { padding: 48px 24px; } .sale-title { font-size: 32px; } }

/* Blog Section */
.blog-section { background-color: var(--white); padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
.blog-card { display: flex; flex-direction: column; gap: 24px; }
.blog-image-wrapper { height: 325px; overflow: hidden; border-radius: var(--radius-md); }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-content { display: flex; flex-direction: column; gap: 8px; }
.blog-title { font-weight: 500; font-size: 20px; line-height: 28px; color: #23262F; }
@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } .blog-image-wrapper { height: 250px; } }

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter-section {
  background: linear-gradient(135deg, #D63585 0%, #377DFF 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/newsletter-bg.png') center/cover no-repeat;
  opacity: 0.1;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin: 0 0 8px;
}

.newsletter-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-input-wrapper .email-icon {
  position: absolute;
  left: 16px;
  pointer-events: none;
}

.newsletter-input-wrapper input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #141718;
  background: transparent;
  outline: none;
}

.newsletter-input-wrapper input::placeholder {
  color: #6C7275;
}

.newsletter-btn {
  padding: 16px 32px;
  background: #141718;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: #2D2D2D;
}

.newsletter-btn:disabled {
  background: #6C7275;
  cursor: not-allowed;
}

.newsletter-btn .btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Success/Error Messages */
.newsletter-success,
.newsletter-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 24px;
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
}

.newsletter-success {
  background: rgba(16, 185, 129, 0.2);
}

.newsletter-success p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: white;
  margin: 0;
}

.newsletter-error {
  background: rgba(220, 38, 38, 0.2);
}

.newsletter-error p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: white;
  margin: 0;
}

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

/* Responsive */
@media (max-width: 568px) {
  .newsletter-section {
    padding: 40px 16px;
  }
  
  .newsletter-title {
    font-size: 24px;
  }
  
  .newsletter-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-btn {
    width: 100%;
  }
}

/* Contact Section */
.contact-section { background-color: var(--neutral-02); padding: 80px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { font-size: 32px; font-weight: 600; color: var(--primary); margin-bottom: 16px; }
.contact-info p { color: var(--neutral-04); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: var(--neutral-07); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form textarea { padding: 14px 16px; border: 1px solid var(--neutral-03); border-radius: var(--radius-md); font-size: 14px; background: var(--white); transition: border-color 0.3s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-form textarea { resize: none; }
.contact-submit-btn { padding: 14px 32px; background: var(--primary); color: var(--white); font-weight: 600; border-radius: var(--radius-md); transition: background 0.3s ease; align-self: flex-start; }
.contact-submit-btn:hover { background: var(--primary-dark); }
@media (max-width: 992px) { .contact-wrapper { grid-template-columns: 1fr; gap: 40px; } .contact-form .form-row { grid-template-columns: 1fr; } }

/* Footer */
.footer { background-color: var(--footer-bg); padding: 80px 0 32px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 32px; }
.footer-logo { height: 47px; width: auto; }
.footer-divider { width: 1px; height: 24px; background-color: rgba(255,255,255,0.3); }
.footer-tagline { font-weight: 400; font-size: 14px; color: var(--primary); }
.footer-nav { display: flex; gap: 40px; }
.footer-link { font-weight: 400; font-size: 14px; color: var(--primary); transition: opacity 0.3s ease; }
.footer-link:hover { opacity: 0.8; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-legal { display: flex; align-items: center; gap: 28px; }
.copyright { font-weight: 400; font-size: 12px; color: var(--primary); }
.legal-link { font-weight: 500; font-size: 12px; color: var(--primary); }
.legal-link:hover { opacity: 0.8; }
.footer-social { display: flex; gap: 24px; }
.social-link { color: var(--primary); transition: all 0.3s ease; }
.social-link:hover { opacity: 0.8; transform: translateY(-2px); }
@media (max-width: 992px) { .footer-top { flex-direction: column; gap: 32px; text-align: center; } .footer-brand { flex-direction: column; gap: 16px; } .footer-divider { display: none; } .footer-nav { flex-wrap: wrap; justify-content: center; gap: 24px; } .footer-bottom { flex-direction: column; gap: 24px; text-align: center; } .footer-legal { flex-direction: column; gap: 16px; } }

/* Chat Widget - Updated status colors */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 1000; }
.chat-toggle { width: 60px; height: 60px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(214,53,133,0.4); transition: all 0.3s ease; position: relative; }
.chat-toggle:hover { transform: scale(1.05); background: var(--primary-dark); }
.chat-status { position: absolute; top: 4px; right: 4px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--white); box-sizing: border-box; }
.chat-status.online { background: var(--green); }
.chat-status.offline { background: transparent; border: 2px solid var(--gold); }
.chat-box { position: absolute; bottom: 80px; right: 0; width: 360px; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 10px 40px rgba(0,0,0,0.2); opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.95); transition: all 0.3s ease; overflow: hidden; }
.chat-box.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-header { background: var(--primary); color: var(--white); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.chat-header-info { }
.chat-title { font-weight: 600; font-size: 16px; display: block; }
.chat-availability { font-size: 12px; opacity: 0.9; }
.chat-close { color: var(--white); font-size: 24px; cursor: pointer; background: none; border: none; }
.chat-messages { height: 300px; padding: 20px; overflow-y: auto; background: var(--neutral-02); }
.chat-message { margin-bottom: 16px; }
.chat-message p { padding: 12px 16px; border-radius: var(--radius-md); font-size: 14px; line-height: 1.5; max-width: 85%; }
.chat-message.bot p { background: var(--white); color: var(--neutral-07); border-bottom-left-radius: 4px; }
.chat-message.user p { background: var(--primary); color: var(--white); margin-left: auto; border-bottom-right-radius: 4px; }
.chat-input-form { display: flex; padding: 16px; border-top: 1px solid var(--neutral-03); background: var(--white); }
.chat-input-form input { flex: 1; border: 1px solid var(--neutral-03); border-radius: var(--radius-full); padding: 12px 20px; font-size: 14px; outline: none; }
.chat-input-form input:focus { border-color: var(--primary); }
.chat-input-form button { width: 44px; height: 44px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-left: 8px; transition: background 0.3s ease; }
.chat-input-form button:hover { background: var(--primary-dark); }
@media (max-width: 480px) { .chat-box { width: calc(100vw - 48px); right: -12px; } }

/* ========================================
   INQUIRY CART SIDEBAR STYLES
   ======================================== */

/* Inquiry Cart Icon Badge */
.inquiry-cart-btn {
    position: relative;
}

.inquiry-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #377DFF;
    color: white;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Inquiry Cart Sidebar */
.inquiry-cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: white;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.inquiry-cart-sidebar.open {
    right: 0;
}

.inquiry-cart-sidebar .cart-header h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #141718;
}

.inquiry-cart-sidebar .cart-item-sku {
    color: #377DFF !important;
}

/* Inquiry Cart Footer */
.inquiry-cart-footer {
    background: #FAFAFA;
    border-top: 1px solid #E8ECEF;
}

.inquiry-cart-footer .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.inquiry-cart-label {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #141718;
}

.inquiry-checkout-btn {
    background: #377DFF !important;
    color: white;
    border: none;
    padding: 16px 24px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(55, 125, 255, 0.3);
}

.inquiry-checkout-btn:hover {
    background: #2563EB !important;
    box-shadow: 0 6px 16px rgba(55, 125, 255, 0.4);
}

/* Inquiry Cart Overlay */
.inquiry-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

