* { margin: 0; padding: 0; box-sizing: border-box; font-family: Roboto, Arial, sans-serif; }
body { background-color: #f1f3f6; }

/* Navbar */
.navbar { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    padding: 12px 0; 
    position: sticky; 
    top: 0; 
    z-index: 9000; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    width: 100%; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1300px; margin: auto; padding: 0 40px; width: 100%; }
.logo { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 28px; background: linear-gradient(45deg, #2874f0, #00d2ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; cursor: pointer; text-decoration: none; flex-shrink: 0; letter-spacing: -1.5px; text-transform: uppercase; }
.search-container { flex-grow: 1; position: relative; max-width: 700px; margin: 0 20px; }
.search-box { position: relative; width: 100%; display: flex; align-items: center; }
.search-icon { position: absolute; left: 15px; color: #2874f0; z-index: 5; font-size: 16px; }
.search-container input { 
    width: 100%; 
    padding: 12px 15px 12px 45px; 
    border: 2px solid transparent; 
    border-radius: 8px; 
    background: #f0f5ff; 
    outline: none; 
    font-size: 14px;
    transition: all 0.3s ease;
}
.search-container input:focus {
    background: #fff;
    border-color: #2874f0;
    box-shadow: 0 0 0 4px rgba(40, 116, 240, 0.1);
}
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 10000;
    max-height: 400px;
    overflow: hidden;
}
.suggestion-item {
    padding: 12px 15px 12px 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #212121;
    border-bottom: 1px solid #f9f9f9;
}
.suggestion-item:hover { background: #f5faff; }
.suggestion-item i { color: #878787; font-size: 14px; }
.suggestion-item .match-text { color: #2874f0; font-weight: bold; }
.header-actions { display: flex; align-items: center; gap: 25px; }

/* Button & Cart */
.login-btn { 
    background: linear-gradient(135deg, #2874f0, #00d2ff); 
    color: #fff; 
    border: none; 
    padding: 10px 30px; 
    font-weight: 700; 
    cursor: pointer; 
    border-radius: 8px; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 116, 240, 0.2);
}
.login-btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 116, 240, 0.3);
}
.cart-container { display: flex; align-items: center; gap: 10px; cursor: pointer; position: relative; font-weight: 700; color: #212121; padding: 8px 12px; border-radius: 8px; transition: background 0.3s; }
.cart-container:hover { background: #f0f5ff; color: #2874f0; }
.cart-count { background: #ff414d; color: white; font-size: 11px; padding: 2px 6px; border-radius: 20px; position: absolute; top: 0px; left: 22px; border: 2px solid #fff; }

/* Categories Nav (Shopsy/Flipkart Style) */
.categories-nav { 
  background: #fff; 
  display: flex; 
  justify-content: center; 
  gap: 40px; 
  padding: 15px 10%; 
  border-bottom: 1px solid #eee; 
  position: relative;
  z-index: 8000;
}
.cat-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 5px; 
  cursor: pointer; 
  transition: transform 0.2s;
  min-width: 80px;
}
.cat-item img { width: 64px; height: 64px; object-fit: contain; }
.cat-item span { font-size: 14px; font-weight: 500; color: #333; }
.cat-item:hover { transform: scale(1.05); }
.cat-item:hover span { color: #2874f0; }
.cat-item.active span { color: #2874f0; font-weight: bold;}
.cat-item.active { border-bottom: 3px solid #2874f0; padding-bottom: 5px; }

/* Container */
.container { max-width: 1280px; margin: auto; padding: 15px; overflow-x: hidden; }
body { background-color: #f1f3f6; overflow-x: hidden; width: 100%; position: relative; }

/* --- Premium Empty States & Live Pulse --- */
.premium-empty-state {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
    border-radius: 30px;
    margin: 30px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    border: 1px solid #f9f9f9;
}
.empty-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #fff5f5;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pulsing-icon {
    font-size: 45px;
    color: #ff3e6c;
    animation: iconPulse 2s infinite ease-in-out;
}
.premium-empty-state h2 { font-size: 26px; font-weight: 800; color: #333; margin-bottom: 12px; }
.premium-empty-state p { font-size: 16px; color: #888; margin-bottom: 40px; max-width: 400px; margin-left: auto; margin-right: auto; }
.back-home-btn {
    padding: 15px 35px;
    background: #2874f0;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(40, 116, 240, 0.2);
    transition: transform 0.3s ease;
}
.back-home-btn:hover { transform: translateY(-3px); }

.live-dot-pulse {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 0 rgba(0, 255, 0, 0.4);
    animation: pulseActive 2s infinite;
}

@keyframes pulseActive {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0); }
}
@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* --- Banner Visual Improvements --- */
.main-banner { 
    width: 100%;
    min-height: 520px; 
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%), url('hero_landscape_boutique_1775116613649.png');
    background-size: cover; 
    background-position: center; 
    border-radius: 24px; 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px; 
    margin-bottom: 50px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.banner-top-badge { 
    font-size: 13px;
    font-weight: 800;
    color: #fff; 
    letter-spacing: 4px;
    opacity: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.banner-text h1 { font-family: 'Inter', sans-serif; font-size: 72px; font-weight: 900; line-height: 0.95; margin-bottom: 25px; color: #fff; text-transform: uppercase; letter-spacing: -4px; z-index: 2; position: relative; }
.banner-text p { font-size: 20px; margin-bottom: 40px; color: #ffd700; opacity: 1; line-height: 1.6; font-weight: 500; text-shadow: 0 2px 10px rgba(0,0,0,0.3); z-index: 2; position: relative; }
.banner-badge { 
    display: inline-block; 
    background: #ffd700; 
    color: #111; 
    padding: 5px 15px; 
    border-radius: 50px; 
    font-size: 11px; 
    font-weight: 900; 
    margin-bottom: 20px; 
    letter-spacing: 2px;
}
.banner-actions { display: flex; align-items: center; gap: 20px; }
.limited-tag { color: #fff; font-size: 11px; font-weight: 800; opacity: 0.7; letter-spacing: 1px; }
.banner-image { 
    position: absolute; 
    right: 2%; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 550px; 
    z-index: 1; 
    pointer-events: none;
    animation: floatProduct 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 80px rgba(0,0,0,0.5));
}
.banner-image img { width: 100%; object-fit: contain; }
@keyframes floatProduct {
    0%, 100% { transform: translateY(-50.5%) rotate(-2deg); }
    50% { transform: translateY(-55.5%) rotate(2deg); }
}
.banner-action-btn { 
    background: #fff; 
    color: #111; 
    padding: 18px 45px; 
    border-radius: 60px; 
    font-weight: 800; 
    font-size: 15px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.banner-action-btn:hover { background: #2874f0; color: #fff; transform: translateY(-3px) scale(1.02); }

/* Deals Section */
.category-block { background: #fff; padding: 20px; border-radius: 4px; margin-bottom: 15px; }
.section-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 15px; 
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}
.header-main { display: flex; align-items: center; gap: 20px; }
.header-main h2 { font-size: 22px; color: #212121; }
.deals-timer-container { display: flex; align-items: center; gap: 8px; color: #757575; font-weight: 500; font-size: 16px; }
#dealsTimer { color: #212121; font-weight: bold; }
.view-all { 
    background: linear-gradient(135deg, #2874f0, #00d2ff); 
    color: white; 
    border: none; 
    padding: 10px 20px; 
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(40, 116, 240, 0.2);
    transition: all 0.3s ease;
}
.view-all:hover { 
    background: linear-gradient(135deg, #1a5abf, #00b8e6); 
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(40, 116, 240, 0.3);
}

/* Animated Announcement Bar */
@keyframes gradientBar {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.announcement-bar { 
    background: linear-gradient(90deg, #ff8a00, #e52e71, #2874f0, #00d2ff);
    background-size: 300% 100%;
    animation: gradientMove 6s linear infinite;
    color: #fff; 
    text-align: center; 
    padding: 8px; 
    font-size: 13px; 
    font-weight: 700; 
    position: relative;
    z-index: 8500; /* Below navbar and its dropdowns */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Shopsy Style Categories Nav */
.categories-nav { 
    display: flex; 
    justify-content: center; 
    gap: 35px; 
    background: #fff; 
    padding: 15px 0; 
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 8000; /* Lower than navbar but high enough for page content */
}

/* Category Flyout Menu */
.cat-item { 
  position: relative;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px; 
  text-decoration: none; 
  cursor: pointer;
  padding-bottom: 10px;
}
.subcat-flyout {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    padding: 25px;
    border-radius: 12px;
    display: none;
    grid-template-columns: repeat(2, 220px);
    gap: 15px;
    z-index: 9500;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: 4px solid #2874f0;
    transition: all 0.3s ease;
}
.cat-item:hover .subcat-flyout { display: grid; transform: translateX(-50%) translateY(0); }

/* Enhanced Timer Styles */
.timer-container { display: flex; align-items: center; gap: 10px; margin-left: 15px; }
.time-box { 
    background: #ff4757; 
    color: #fff; 
    padding: 4px 8px; 
    border-radius: 6px; 
    font-weight: 800; 
    font-size: 15px;
    min-width: 32px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
    border: 1px solid rgba(255,255,255,0.2);
}
.timer-sep { font-weight: bold; color: #fb641b; }
.flyout-item {
    font-size: 13px;
    color: #212121;
    padding: 5px 8px;
    border-radius: 2px;
}
.flyout-item:hover { background: #f1f3f6; color: #2874f0; }

.cat-item img { 
  width: 70px; 
  height: 70px; 
  border-radius: 50%; 
  object-fit: cover; 
  background: #fff;
  padding: 4px;
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(white, white), linear-gradient(45deg, #2874f0, #00d2ff);
  background-origin: border-box;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.cat-item:hover img { transform: translateY(-8px) scale(1.1); box-shadow: 0 15px 30px rgba(40, 116, 240, 0.2); }
.cat-item span { 
  font-size: 14px; 
  font-weight: 500; 
  color: #212121;
}

.subcat-item { 
  padding: 8px 15px; 
  background: #f1f3f6; 
  border-radius: 2px;
  font-size: 13px;
  color: #212121;
  cursor: pointer;
  white-space: nowrap;
}
.subcat-item.active { 
  background: #2874f0; 
  color: white; 
}

/* Product Grid Enhancement */
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); 
    gap: 20px; 
    padding: 10px 0;
}
.product-card { 
    background: #fff; 
    border: 1px solid rgba(0,0,0,0.05); 
    border-radius: 12px;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.product-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    border-color: rgba(40, 116, 240, 0.2);
}
.product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}
.product-card:hover::after { transform: translateX(100%); }

/* Specifications Table */
.product-specs-container { margin-top: 30px; border: 1px solid #f0f0f0; padding: 20px; border-radius: 4px; }
.specs-title { font-size: 18px; margin-bottom: 20px; color: #212121; }
.specs-group h4 { font-size: 14px; margin-bottom: 15px; border-bottom: 1px solid #f0f0f0; padding-bottom: 5px; color: #212121; }
.spec-row { display: grid; grid-template-columns: 150px 1fr; padding: 12px 0; border-bottom: 1px solid #f9f9f9; font-size: 14px; }
.spec-label { color: #878787; }
.spec-value { color: #212121; line-height: 1.4; }

.product-image { 
    width: 100%; 
    height: 250px; 
    object-fit: cover; 
}

.product-info { 
    padding: 12px; 
    text-align: left; /* Shopsy is usually left aligned */
}

.product-info h3 { 
    font-size: 14px; 
    color: #212121; 
    margin-bottom: 5px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.price-tag { 
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.price-tag b { 
    font-size: 16px; 
    color: #212121;
}

.old-price {
    text-decoration: line-through;
    color: #878787;
    font-size: 14px;
}

.discount { 
    color: #388e3c; 
    font-size: 13px; 
    font-weight: bold;
}

.f-assured {
    height: 20px !important;
    width: auto !important;
    margin-top: 5px;
    display: block;
}

/* Product Details Page Styling */
.back-btn { 
    background: #fff; 
    border: 1px solid #e0e0e0; 
    color: #2874f0; 
    cursor: pointer; 
    font-weight: 700; 
    margin-bottom: 20px; 
    font-size: 13px; 
    padding: 10px 18px; 
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.back-btn:hover { background: #f0f5ff; border-color: #2874f0; transform: translateX(-5px); }
.product-wrapper { 
    display: flex; 
    gap: 60px; 
    margin-top: 30px; 
    background: #fff; 
    padding: 40px; 
    border-radius: 20px; 
    box-shadow: 0 5px 30px rgba(0,0,0,0.02);
    align-items: flex-start;
}
.product-images { 
    width: 50%; 
    position: sticky; 
    top: 100px; 
}
.product-details-info { width: 50%; }

/* Premium Image Gallery */
.image-premium-container { position: relative; border-radius: 12px; overflow: hidden; background: #f9f9f9; border: 1px solid #f0f0f0; transition: all 0.3s ease; }
.main-product-img { width: 100%; height: 500px; object-fit: contain; padding: 20px; }
.zoom-indicator { position: absolute; bottom: 15px; right: 15px; background: rgba(0,0,0,0.5); color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; backdrop-filter: blur(5px); }

/* Rating & Badging */
.product-title-premium { font-size: 30px; color: #111; font-weight: 800; line-height: 1.25; margin: 15px 0; letter-spacing: -0.8px; }
.rating-strip { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; align-items: center; height: 30px; }
.rating-count { font-size: 13px; color: #878787; font-weight: 500; margin-left: 5px; }
.assured-tag-img { height: 22px; width: auto; vertical-align: middle; }
.percentage-green { color: #388e3c; font-weight: 900; font-size: 18px; margin-left: 10px; }
.price-row-v2 { display: flex; align-items: baseline; gap: 15px; margin-top: 10px; }

/* Trust Horizontal */
.trust-icons-horizontal { 
    display: flex; 
    justify-content: space-between; 
    background: #f9fbff; 
    padding: 15px; 
    border-radius: 8px; 
    margin: 25px 0; 
    border: 1px solid #e0eaff;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; color: #333; }
.trust-item i { color: #2874f0; font-size: 14px; }

/* Highlights v2 */
.highlights-section-v2 { margin-bottom: 30px; }
.highlights-section-v2 h4 { font-size: 15px; color: #212121; margin-bottom: 15px; }
.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.highlight-point { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #555; }
.highlight-point i { color: #388e3c; font-size: 14px; }

/* Premium Specs */
.product-specs-premium { margin-top: 40px; }
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 15px; }
.spec-tile { background: #fff; border: 1px solid #eee; padding: 15px; border-radius: 10px; transition: 0.3s; }
.spec-tile:hover { border-color: #2874f0; background: #f0f5ff; }
.spec-tile .label { display: block; font-size: 11px; color: #878787; text-transform: uppercase; margin-bottom: 4px; }
.spec-tile .value { display: block; font-size: 13px; color: #212121; font-weight: 700; }

/* Description Read More */
.description-block { margin-top: 30px; border-top: 1px solid #f0f0f0; padding-top: 20px; }
.description-text { font-size: 14px; color: #666; line-height: 1.6; max-height: 2.8em; overflow: hidden; transition: max-height 0.4s ease; }
.description-text.open { max-height: 2000px; }
.read-more-btn { background: none; border: none; color: #2874f0; font-weight: 800; cursor: pointer; padding: 10px 0; font-size: 12px; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }

/* Sticky Action Buttons */
.sticky-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    position: sticky;
    bottom: 20px;
    z-index: 100;
}
.action-btn { 
    flex: 1; 
    padding: 18px; 
    border: none; 
    border-radius: 10px; 
    font-weight: 800; 
    font-size: 14px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px;
    transition: all 0.3s ease;
}
.buy-now-premium { background: #fb641b; color: #fff; box-shadow: 0 10px 20px rgba(251, 100, 27, 0.3); }
.buy-now-premium:hover { background: #e65100; transform: translateY(-3px); }
.add-to-cart-premium { background: #fff; border: 2px solid #212121; color: #212121; }
.add-to-cart-premium:hover { background: #212121; color: #fff; transform: translateY(-3px); }

@media screen and (max-width: 768px) {
    .product-wrapper { flex-direction: column; padding: 10px; gap: 15px; margin-top: 10px; position: relative; padding-bottom: 90px; }
    .product-images { width: 100%; position: relative; top: 0; padding: 0; }
    .image-premium-container { border-radius: 0; border: none; background: #fff; margin: -10px -10px 0; }
    .main-product-img { height: 320px; padding: 15px; object-fit: contain; }
    .zoom-indicator { bottom: 10px; right: 10px; font-size: 10px; }
    
    .product-details-info { width: 100%; padding: 0 5px; }
    .product-title-premium { font-size: 18px; margin: 10px 0; line-height: 1.3; }
    .rating-strip { gap: 8px; flex-wrap: wrap; height: auto; margin-bottom: 15px; }
    .rating-count { font-size: 11px; }
    
    .price-row-v2 { gap: 10px; flex-wrap: wrap; }
    .current-price { font-size: 22px; }
    .original-price { font-size: 14px; }
    .percentage-green { font-size: 14px; margin-left: 0; display: block; width: 100%; }
    
    .specs-grid { grid-template-columns: 1fr; gap: 8px; }
    .spec-tile { padding: 10px; border-radius: 6px; }
    .spec-tile .value { font-size: 12px; }
    
    .sticky-action-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 5px;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
        margin-top: 0;
        z-index: 1001;
        gap: 5px;
        border-radius: 0;
    }
    .action-btn { 
        padding: 15px 5px; 
        font-size: 13px; 
        border-radius: 4px; 
        flex: 1; 
        height: 50px;
    }
    .add-to-cart-premium { border-width: 1px; }
    
    /* Similar Products Mobile */
    #similarProductsGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.product-title { font-size: 20px; color: #212121; font-weight: 400; margin-bottom: 8px; line-height: 1.4; word-wrap: break-word; }
.product-rating { background: #388e3c; color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.special-price-tag { color: #388e3c; font-size: 14px; font-weight: 600; margin: 15px 0 5px; }

.product-price-block { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.current-price { font-size: 28px; font-weight: 600; color: #212121; }
.original-price { font-size: 16px; color: #878787; text-decoration: line-through; }
.percentage { color: #388e3c; font-size: 16px; font-weight: 600; }

.offers-section { margin: 25px 0; border: 1px solid #e0e0e0; border-radius: 4px; padding: 15px; background: #fdfdfd; }
.offer-title { font-size: 14px; font-weight: 600; margin-bottom: 10px; color: #212121; }
.offer-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #212121; margin-bottom: 12px; }
.offer-item i { color: #388e3c; margin-top: 3px; }

.highlights-section { margin-bottom: 25px; }
.highlights-title { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.highlight-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.highlight-list li { font-size: 13px; color: #555; position: relative; padding-left: 15px; }
.highlight-list li::before { content: "•"; position: absolute; left: 0; color: #878787; }

.product-description { 
    margin-top: 30px; 
    border-top: 1px solid #efefef; 
    padding-top: 20px; 
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-line;
    max-width: 100%;
}
.product-description h4 { font-size: 16px; margin-bottom: 12px; color: #212121; }
.product-description p { font-size: 14px; color: #555; line-height: 1.6; }

/* Sticky Mobile Buttons */
/* =============================================
   MOBILE RESPONSIVENESS (SMARTPHONES & TABLETS)
   ============================================= */

@media (max-width: 992px) {
    .nav-content { padding: 0 20px; gap: 15px; }
    .search-container { margin: 0 10px; }
    .main-banner { padding: 40px; min-height: 400px; }
    .banner-text h1 { font-size: 48px; letter-spacing: -2px; }
}

@media (max-width: 768px) {
    /* Navbar Responsiveness */
    .nav-content { flex-wrap: wrap; height: auto; padding: 10px 15px; }
    .logo { font-size: 20px; order: 1; }
    .header-actions { order: 2; gap: 12px; }
    .search-container { order: 3; width: 100%; max-width: 100%; margin: 10px 0 0 0; }
    .login-btn { padding: 8px 15px; font-size: 12px; }
    .cart-container { padding: 5px; font-size: 13px; }
    
    /* Category Nav Scrollable */
    .categories-nav { 
        justify-content: flex-start; 
        overflow-x: auto; 
        padding: 10px; 
        gap: 20px; 
        -webkit-overflow-scrolling: touch; 
    }
    .categories-nav::-webkit-scrollbar { display: none; } /* Hide scrollbar but keep functionality */
    .cat-item { min-width: 70px; }
    .cat-item img { width: 45px; height: 45px; }
    .cat-item span { font-size: 11px; white-space: nowrap; }

    /* Hero Banner Scaling */
    .main-banner { margin: 10px; padding: 30px; border-radius: 15px; min-height: 320px; }
    .banner-text h1 { font-size: 32px; letter-spacing: -1px; }
    .banner-text p { font-size: 14px; margin-bottom: 20px; }
    .banner-action-btn { padding: 12px 25px; font-size: 12px; }
    .banner-badge { font-size: 9px; padding: 4px 10px; }
    .banner-top-badge { display: none; }

    /* 2-Column Product Grid (Shopsy Standard) */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card { padding: 8px; border-radius: 8px; }
    .product-image { height: 180px; border-radius: 4px; }
    .product-info h3 { font-size: 12px; line-height: 1.3; }
    .current-price { font-size: 15px; }
    .original-price { font-size: 11px; }
    .percentage-green { font-size: 11px; }

    /* Product Detail Page Stack */
    .product-wrapper { flex-direction: column; padding: 15px; gap: 20px; margin-top: 10px; }
    .product-images { width: 100%; position: relative; top: 0; }
    .product-details-info { width: 100%; }
    .main-product-img { height: 320px; padding: 10px; }
    .product-title-premium { font-size: 20px; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    
    /* Footer Stack */
    .footer-columns { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-column { align-items: center; }
    .footer-column p { margin: 0 auto; }
    .trust-icons { align-items: center !important; }

    /* Modal Mobile */
    .modal-content { 
        width: 95%; 
        height: auto; 
        flex-direction: column; 
        max-height: 90vh; 
    }
    .modal-left { width: 100%; height: 150px; padding: 20px; flex-direction: row; align-items: center; justify-content: center; gap: 20px; }
    .modal-left h2 { font-size: 20px; margin-bottom: 0; }
    .modal-left p { display: none; }
    .modal-right { width: 100%; padding: 30px 20px; }
    .auth-img-sidebar { display: none; }

    /* Section Layouts */
    .header-main { gap: 10px; flex-wrap: wrap; }
    .header-main h2 { font-size: 16px; }
    .timer-container { margin-left: 0; }
    .view-all { padding: 8px 15px; font-size: 10px; }

    /* Sub-nav enhancements */
    .subcat-item { font-size: 11px; padding: 5px 12px; }
    
    /* User setup profile */
    .profile-setup-body { grid-template-columns: 1fr; gap: 15px; }
    .profile-modal .profile-setup-content { width: 95%; padding: 15px; }

    /* Cart Page Mobile Stack */
    .cart-layout { grid-template-columns: 1fr; gap: 15px; margin-top: 0; }
    .cart-items-section, .price-details-section { padding: 15px; border-radius: 0; box-shadow: none; border-bottom: 1px solid #eee; }
    .cart-item-row { flex-direction: row; gap: 12px; padding: 15px 0; }
    .cart-item-row img { width: 80px; height: 80px; }
    .cart-title { font-size: 16px; margin: 0; }

    /* Empty Cart View Centering */
    #cartItemsList .premium-empty-state { padding: 40px 20px; border-radius: 0; box-shadow: none; border: none; margin: 0; }
    #cartItemsList .premium-empty-state img { width: 180px !important; margin-bottom: 20px; }
    #cartItemsList .premium-empty-state h1 { font-size: 18px; margin-bottom: 10px; }

    /* Sticky Place Order Button */
    .price-details-section { 
        position: sticky; 
        bottom: 0; 
        z-index: 100; 
        background: #fff; 
        box-shadow: 0 -4px 15px rgba(0,0,0,0.08); 
        padding: 10px 15px; 
    }
    .place-order-btn { border-radius: 6px; padding: 15px; font-size: 14px; }
    
    /* Navbar Unified Row */
    .nav-content { justify-content: space-between; align-items: center; height: auto; }
    .logo { font-size: 18px; }
    .cart-container { padding: 8px; }
    
    /* Global Back Button Mobile */
    .back-btn { 
        margin: 10px; 
        width: calc(100% - 20px); 
        justify-content: center; 
        border-radius: 8px; 
        background: #f0f5ff;
        border-color: #2874f0;
    }
}

@media (max-width: 480px) {
    .banner-text h1 { font-size: 26px; }
    .product-image { height: 160px; }
    .time-box { font-size: 12px; min-width: 25px; padding: 3px 6px; }
    .cat-item img { width: 38px; height: 38px; }
    .logo { font-size: 16px; }
    .header-actions i { font-size: 18px; }
}
.size-selector { margin-top: 25px; }
.size-selector h4 { margin-bottom: 10px; }
.sizes { display: flex; gap: 10px;}
.sizes span { border: 1px solid #dbdbdb; padding: 10px 18px; border-radius: 2px; cursor: pointer; font-weight: bold; font-size: 14px;}
.sizes span.selected { border-color: #2874f0; color: #2874f0; background: #f0f5ff;}
.product-description { margin-top: 25px; color: #333; line-height: 1.6; font-size: 14px;}

/* Modal & Toast (Remaining Same) */
.modal { 
    display: none; 
    position: fixed; 
    z-index: 999999 !important; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.7); 
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.modal-content { 
    display: flex; 
    width: 750px; 
    height: 520px; 
    margin: auto; /* Centered with flex */
    background: #fff; 
    border-radius: 20px; 
    overflow: hidden; 
    position: relative; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes modalPop {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.modal-left { 
    background: linear-gradient(180deg, #2874f0, #00d2ff); 
    color: #fff; 
    width: 40%; 
    padding: 50px 30px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    position: relative;
    overflow: hidden;
}
.modal-left::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.modal-right { width: 60%; padding: 40px 50px; display: flex; flex-direction: column; justify-content: center; }
.close { position: absolute; right: 15px; top: 10px; font-size: 24px; cursor: pointer; color: #aaa;}

.auth-img-sidebar { width: 130px; align-self: center; margin-bottom: 20px;}
input { width: 100%; margin-bottom: 15px; padding: 12px 5px; border: none; border-bottom: 1px solid #e0e0e0; outline: none; }
.action-btn { width: 100%; padding: 14px; border: none; font-weight: bold; cursor: pointer; border-radius: 2px; margin-bottom: 10px; }
.orange-btn { background: #fb641b; color: #fff; text-transform: uppercase; }
.google-btn { background: #fff; border: 1px solid #dbdbdb; color: #2874f0; }
.switch-text { color: #2874f0; cursor: pointer; text-align: center; font-weight: bold; margin-top: 15px; }

/* User Dropdown */
.user-dropdown {
    position: relative;
    cursor: pointer;
}
.user-trigger {
    color: #2874f0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}
.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    right: -10px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    min-width: 240px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-radius: 12px;
    z-index: 10000;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 8px;
    animation: dropdownSlide 0.3s ease;
}
@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.menu-item {
    padding: 14px 18px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    border-radius: 8px;
}
.menu-item:hover {
    background: #2874f0;
    color: #fff;
    transform: translateX(5px);
}
.menu-item i { font-size: 16px; width: 20px; text-align: center; }
.menu-item:hover i { color: #fff; }

/* Profile Setup Modal */
.profile-modal {
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
}
.profile-setup-content {
    background: #fff;
    width: 700px;
    max-height: 90vh;
    border-radius: 8px;
    padding: 30px;
    overflow-y: auto;
}
.profile-setup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}
.setup-section {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
}
.setup-section h3 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #212121;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.form-row { display: flex; gap: 10px; }
.form-row input { flex: 1; }
.skip-btn {
    background: none;
    border: none;
    color: #878787;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

/* Profile Page */
.profile-container { max-width: 1000px; margin: 20px auto; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px;}
.settings-card { background: #fff; padding: 25px; border-radius: 4px; border: 1px solid #ddd; }
.settings-card h3 { margin-bottom: 20px; color: #2874f0; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 12px; color: #878787; margin-bottom: 5px; }
.save-btn { background: #2874f0; color: #fff; border: none; padding: 10px 20px; border-radius: 2px; cursor: pointer; font-weight: bold; width: 100%; transition: background 0.2s; }
.save-btn:hover { background: #1a5abf; }
.address-display { line-height: 1.8; color: #212121; margin-bottom: 20px; padding: 15px; background: #f0f5ff; border-radius: 4px; }

.toast-message { visibility: hidden; background: #388e3c; color: #fff; padding: 16px; position: fixed; top: 20px; left: 50%; transform: translateX(-50%); border-radius: 4px; font-weight: bold; z-index: 2000; box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
.toast-message.show { visibility: visible; animation: slideIn 0.5s; }
@keyframes slideIn { from { top: -50px; } to { top: 20px; } }

/* Shopsy Style Product Detail */
.product-grid-detail {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;
    padding: 20px 0;
    background: white;
}
.product-images img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border: 1px solid #f0f0f0;
}
.product-details-info h1 { font-size: 20px; font-weight: 500; margin-bottom: 8px; }

/* Similar Products */
.similar-products-container { margin-top: 50px; border-top: 1px solid #ddd; padding-top: 20px; }
.section-title { font-size: 18px; margin-bottom: 15px; }

/* Cart Page Styles */
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 20px; margin-top: 20px; }
.cart-items-section, .price-details-section { background: white; padding: 20px; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.cart-item-row { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid #f0f0f0; }
.cart-item-row img { width: 100px; height: 100px; object-fit: contain; }
.price-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 14px; }
.final-price { font-size: 18px; font-weight: 600; padding-top: 15px; border-top: 1px solid #eee; margin-top: 10px; }
.place-order-btn { width: 100%; background: #fb641b; color: white; border: none; padding: 15px; font-weight: 600; cursor: pointer; border-radius: 2px; }

/* Checkout Steps */
.checkout-steps { display: flex; flex-direction: column; gap: 15px; max-width: 800px; margin: 20px auto; }
.step-card { background: white; border-radius: 2px; box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.step-header { background: #2874f0; color: white; padding: 10px 15px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.step-header span { background: white; color: #2874f0; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; border-radius: 2px; }
.step-content { padding: 20px; }
.finalize-btn { background: #fb641b; color: white; border: none; padding: 12px 30px; font-weight: 600; margin-top: 20px; cursor: pointer; }

/* Footer Styles */
.main-footer {
    background: #172337;
    color: #fff;
    padding: 60px 10% 20px;
    margin-top: 50px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-column h4 {
    color: #878787;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.footer-column a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 11.5px;
    transition: color 0.2s;
}
.footer-column a:hover { color: #2874f0; }
.footer-column i { margin-right: 8px; color: #2874f0; }

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 28px;
    color: #dbdbdb;
    margin-top: 10px;
}
.payment-methods i:hover { color: #2874f0; cursor: pointer; }

.footer-bottom {
    border-top: 1px solid #454d5e;
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    text-align: center;
    color: #878787;
    font-size: 12px;
}

/* Checkout Enhancements */
.checkout-product-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    align-items: center;
}
.checkout-product-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 4px;
}
.checkout-info { flex: 1; }
.checkout-info h4 { font-size: 14px; margin-bottom: 5px; color: #333; }
.checkout-price { font-weight: 600; font-size: 16px; }

.badge-row { display: flex; gap: 8px; margin-top: 5px; flex-wrap: wrap; }
.badge { font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 2px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 4px; }
/* --- Delivery & Security --- */
.delivery-security-box {
    margin-top: 15px;
    background: #f8f8ff;
    border: 1px dashed #2874f0;
    padding: 12px;
    border-radius: 8px;
    text-align: left;
}
.otp-label { font-size: 11px; color: #2874f0; font-weight: 700; display: block; margin-bottom: 4px; }
.otp-value { font-size: 24px; font-weight: 900; color: #212121; letter-spacing: 5px; }
.otp-hint { font-size: 10px; color: #878787; margin-top: 5px; line-height: 1.3; }

.status-out { background: #fff8e1; color: #f57f17; }
.status-requested { background: #fff3e0; color: #ff9800; }
.status-delivered { background: #e8f5e9; color: #388e3c; }

.shopsy-order-premium {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.shopsy-order-premium:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.order-meta { display: flex; flex-direction: column; gap: 4px; }
.order-id { font-weight: 800; font-size: 13px; color: #333; }
.order-date { font-size: 11px; color: #878787; display: flex; align-items: center; gap: 5px; }

.order-badge { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 12px; 
    font-weight: 700; 
    text-transform: uppercase;
}
.status-ordered { background: #f0f5ff; color: #2874f0; }
.status-cancelled { background: #fff1f0; color: #d32f2f; }
.status-requested { background: #fff7e6; color: #ff9800; }
.status-delivered { background: #f6ffed; color: #388e3c; }

.product-thumb-container { width: 100px; height: 100px; padding: 10px; background: #f9f9f9; border-radius: 8px; flex-shrink: 0; }
.order-img { width: 100%; height: 100%; object-fit: contain; }

.shipping-to { margin-top: 10px; font-size: 12px; }
.shipping-to .label { color: #878787; margin-right: 5px; }
.shipping-to .value { color: #333; font-weight: 600; }

.refund-msg { margin-top: 10px; background: #f6ffed; color: #388e3c; padding: 10px; border-radius: 6px; font-size: 11px; font-weight: 600; }

.premium-cancel-btn {
    background: #fff;
    border: 1px solid #eee;
    color: #666;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    margin-right: 10px;
}
.premium-cancel-btn:hover { background: #f5f5f5; border-color: #ddd; color: #333; }

/* Checkout Enhancements */
.checkout-address-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #2874f0;
    position: relative;
}
.addr-label { background: #f0f5ff; color: #2874f0; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 4px; margin-left: 10px; }
.full-addr-text { font-size: 14px; color: #444; margin: 12px 0; line-height: 1.6; }
.premium-edit-btn { background: #fff; border: 1px solid #2874f0; color: #2874f0; border-radius: 6px; padding: 10px 20px; font-size: 13px; font-weight: 700; cursor: pointer; transition: 0.3s; margin-bottom: 20px;}
.premium-edit-btn:hover { background: #2874f0; color: #fff; }

.trust-strip { border-top: 1px solid #f0f0f0; padding-top: 15px; margin-top: 15px; color: #388e3c; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 8px; }

.checkout-product-item-v2 { display: flex; gap: 20px; background: #fff; padding: 20px; border-radius: 12px; border: 1px solid #eee; margin-bottom: 12px; }
.checkout-prod-left { position: relative; }
.checkout-product-img-v2 { width: 80px; height: 100px; object-fit: contain; background: #f9f9f9; padding: 10px; border-radius: 8px; }
.qty-badge { position: absolute; top: -8px; right: -8px; background: #212121; color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: bold; border: 2px solid #fff; }

.seller-info { font-size: 11px; color: #878787; margin: 4px 0 8px; }
.checkout-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.discount-tag { background: #388e3c; color: #fff; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 4px; }

/* Shopsy Style Orders */
.shopsy-order {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    margin-bottom: 20px;
}
.order-card-header {
    background: #f5f7fa;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #eee;
}
.order-card-body {
    display: flex;
    padding: 20px;
    gap: 20px;
    align-items: flex-start;
}
.order-card-body img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 5px;
}
.order-main-info { flex: 1; }
.order-prod-title { font-size: 14px; color: #212121; margin-bottom: 5px; }
.order-price-row { font-weight: bold; font-size: 16px; margin-bottom: 10px; }
.order-delivery-status { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.status-dot-large { width: 8px; height: 8px; border-radius: 50%; }
.order-delivery-msg { font-size: 12px; color: #666; }

.shopsy-btn-outline {
    background: #fff;
    border: 1px solid #2874f0;
    color: #2874f0;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.2s;
}
.shopsy-btn-outline:hover { background: #f0f5ff; }
.status-badge-red { color: #d32f2f; font-weight: bold; font-size: 12px; border: 1px solid #d32f2f; padding: 4px 8px; border-radius: 2px; }

/* Extra Scroll Area */
.container {
    min-height: 100vh;
    padding-bottom: 100px; /* Space to scroll more */
}
.loading-overlay p { font-weight: bold; color: #212121; font-size: 16px; }/* ==========================================================================
   STATE-OF-THE-ART RESPONSIVENESS OVERHAUL
   ========================================================================== */

@media screen and (max-width: 1024px) {
    .banner-text h1 { font-size: 56px; }
    .banner-image { width: 350px; }
    .nav-content { padding: 0 20px; }
}

@media screen and (max-width: 768px) {
    /* Header Full Mobile Focus */
    .nav-content { padding: 15px; }
    .header-actions { position: relative; top: 0; right: 0; order: 2; margin-left: auto; }
    .search-container { order: 3; margin-top: 15px; }

    /* Product Page Full Mobile Focus */
    .product-wrapper { flex-direction: column; padding: 0; gap: 0; border-radius: 0; overflow-x: hidden; }
    .product-images { width: 100%; position: relative; top: 0; padding: 0; }
    .image-premium-container { border-radius: 0; border: none; border-bottom: 1px solid #f0f0f0; }
    .main-product-img { height: 420px; border-radius: 0; padding: 30px; }
    .product-details-info { width: 100%; padding: 25px; background: #fff; border-radius: 30px 30px 0 0; margin-top: -30px; position: relative; z-index: 10; box-shadow: 0 -15px 40px rgba(0,0,0,0.08); }
    .sticky-action-buttons { position: fixed; bottom: 0; left: 0; width: 100%; padding: 12px; background: #fff; z-index: 9999; border-top: 1px solid #eee; margin-top: 0; box-shadow: 0 -10px 40px rgba(0,0,0,0.1); }
    .product-title-premium { font-size: 20px; margin-bottom: 12px; }
    .rating-strip { margin-bottom: 15px; }
    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    /* Fix overlap with sticky buttons */
    #productDetails { padding-bottom: 100px; }
    /* Breadcrumbs hide or simplify on mobile */
    .breadcrumbs { display: none; }
}

@media screen and (max-width: 480px) {
    .banner-text h1 { font-size: 36px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .product-image { height: 160px; }
    .current-price { font-size: 22px; }
    .action-btn { padding: 12px; font-size: 12px; }
}