/* 
   Flipkart Premium Flipkart-Style Stylesheet
   Covers both Desktop and Mobile-First Layouts 
*/

:root {
    --primary: #2874f0;       /* Flipkart Blue */
    --primary-dark: #125bc4;
    --secondary: #fb641b;     /* Flipkart Orange */
    --accent: #ffc200;        /* Flipkart Yellow */
    --green-success: #388e3c; /* Flipkart green rating/success */
    --bg-light: #f1f3f6;      /* Flipkart page background */
    --text-color: #212121;
    --text-muted: #878787;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --border-radius: 8px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.5;
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header Styles with Premium Blue Gradient */
header {
    background: linear-gradient(180deg, #3fa5ff 0%, #2874f0 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    color: #fff;
}

.logo span {
    color: var(--accent);
    font-style: italic;
}

/* Mobile Menu Button */
.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: none;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Brand Tiles Strip (Flipkart Screenshot Layout) */
.brand-tiles-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 6px 0;
    width: 100%;
}

.brand-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 8px 4px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    min-height: 65px;
    border: 1.5px solid transparent;
}

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

/* Brand tile specific color borders matching screenshot */
.tile-flipkart {
    background: var(--accent);
    border-color: #ffd200;
}
.tile-flipkart .tile-text {
    color: var(--primary);
    font-weight: 800;
    font-style: italic;
}
.tile-minutes {
    border-color: #d81b60;
}
.tile-minutes .tile-badge {
    background: #d81b60;
    color: #fff;
    border-radius: 5px;
    padding: 1px 6px;
    font-size: 11px;
    font-weight: 700;
}
.tile-loans {
    border-color: #1565c0;
}
.tile-grocery {
    border-color: #2e7d32;
}

.tile-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-text {
    font-size: 11px;
    font-weight: 700;
    color: #444;
}

/* GPS Location Strip */
.gps-location-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 20px;
    margin: 4px 0;
    font-size: 12px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.gps-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    max-width: 80%;
    cursor: pointer;
}

.gps-left svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
    flex-shrink: 0;
}

.gps-address {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gps-left .arrow-down {
    width: 10px;
    height: 10px;
    fill: var(--text-muted);
}

.supercoins-right {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 11px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.supercoins-right .coin-icon {
    width: 12px;
    height: 12px;
    fill: #ff9100;
}

/* Main Search bar wrapper */
.search-row-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.search-container {
    flex: 1;
}

.search-container form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 0 10px;
    border: 1.5px solid #fff;
}

.search-container form:focus-within {
    border-color: var(--accent);
}

.search-icon-left {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    margin-right: 6px;
}

.search-icon-left svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 14px;
    color: #212121;
}

.search-actions-right {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.search-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.search-action-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.scanner-btn {
    background: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.scanner-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* Nav Menu (Desktop layout) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login-btn {
    background-color: #fff;
    color: var(--primary);
    padding: 6px 24px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid #fff;
}

.login-btn:hover {
    background-color: transparent;
    color: #fff;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
}

.cart-count {
    background: var(--secondary);
    color: #fff;
    border-radius: 50%;
    padding: 1px 6px;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -10px;
    border: 1px solid var(--primary);
}

/* Categories Tabs scrolling row */
.categories-strip {
    background: #fff;
    border-bottom: 1.5px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none;
}

.categories-strip::-webkit-scrollbar {
    display: none;
}

.categories-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 16px 0;
    display: flex;
    align-items: center;
    gap: 24px;
}

.category-tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-color);
    min-width: 70px;
    text-align: center;
}

.category-tab-item svg {
    width: 28px;
    height: 28px;
    display: block;
}

.category-tab-item.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.category-tab-item:hover {
    color: var(--primary);
}

.category-tab-name {
    font-size: 11px;
}

/* Page Wrapper */
.main-content {
    max-width: 1240px;
    width: 100%;
    margin: 16px auto;
    padding: 0 16px;
    flex: 1;
}

/* Custom Vivo Hero Banner */
.vivo-hero-banner {
    background: linear-gradient(135deg, #0b0c26 0%, #151b4c 100%);
    border-radius: 12px;
    padding: 24px 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    min-height: 220px;
}

.vivo-left {
    max-width: 55%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vivo-tag {
    background: #00bcd4;
    color: #0b0c26;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
    text-transform: uppercase;
}

.vivo-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
}

.vivo-title span {
    color: #00bcd4;
}

.vivo-desc {
    font-size: 13px;
    color: #cbd5e1;
}

.vivo-price-tag {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 6px;
}

.vivo-right {
    position: absolute;
    right: 20px;
    bottom: -20px;
    width: 40%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.vivo-right img {
    max-height: 240px;
    object-fit: contain;
    transform: none !important;
    transition: var(--transition);
}

.vivo-hero-banner:hover .vivo-right img {
    transform: scale(1.02) !important;
}

/* Dots underneath the slider */
.banner-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
}

.dot.active {
    width: 18px;
    border-radius: 3px;
    background: var(--primary);
}

/* Personalized horizontal cards shelf ("Kunal, still looking for these?") */
.personalized-shelf-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.shelf-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.shelf-scroll-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.shelf-scroll-row::-webkit-scrollbar {
    display: none;
}

.shelf-card {
    flex-shrink: 0;
    width: 140px;
    background: linear-gradient(180deg, #fef4f8 0%, #f5eefc 100%);
    border: 1px solid #f3e5f5;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.shelf-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.shelf-card-img-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 6px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shelf-card-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shelf-card-title {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin-bottom: 4px;
}

.shelf-card-action {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

/* Double Promos Grid */
.double-promos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.promo-banner {
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.promo-left {
    max-width: 60%;
    z-index: 2;
}

.promo-tag {
    font-size: 10px;
    background: rgba(255,255,255,0.25);
    padding: 2px 6px;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.promo-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.promo-desc {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 2px;
}

.promo-right-img {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 38%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.promo-lava {
    background: linear-gradient(135deg, #374151 0%, #111827 100%);
}

.promo-intel {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
}

/* Standard Featured section Header */
.section-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    overflow: hidden;
}

.section-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
}

.section-btn {
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 4px;
    font-size: 13px;
    transition: var(--transition);
}

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

/* Products card Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    padding: 16px;
}

.product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

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

.product-img-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #fdfdfd;
}

.product-img-wrapper img {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.rating-badge {
    background: var(--green-success);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-badge svg {
    width: 9px;
    height: 9px;
    fill: #fff;
}

.rating-count {
    color: var(--text-muted);
    font-size: 12px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
}

.product-old-price {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-discount {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-success);
}

/* Product Detail Page */
.product-detail-container {
    display: grid;
    grid-template-columns: 4.5fr 7.5fr;
    gap: 30px;
    background: #fff;
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.detail-img-box {
    position: sticky;
    top: 150px;
}

.detail-img-wrapper {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    min-height: 400px;
    margin-bottom: 20px;
}

.detail-img-wrapper img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-buy, .btn-cart {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-cart {
    background: #ffc200;
    color: #212121;
}

.btn-cart:hover {
    background: #e6af00;
}

.btn-buy {
    background: #fb641b;
    color: #fff;
}

.btn-buy:hover {
    background: #e1520e;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-color);
}

.detail-price-box {
    margin-top: 10px;
    background: #fafafa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}

.detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #212121;
}

.detail-specs {
    margin-top: 20px;
}

.specs-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.specs-table td {
    padding: 10px 15px;
    font-size: 14px;
}

.specs-table td.label {
    color: var(--text-muted);
    width: 30%;
    font-weight: 500;
}

/* Cart Grid */
.cart-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 20px;
}

.cart-items-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cart-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 18px;
    font-weight: 700;
}

.cart-item {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 24px;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 1px solid #f0f0f0;
    padding: 5px;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-title {
    font-size: 16px;
    font-weight: 500;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: #f0f0f0;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 4px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--secondary);
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    margin-top: 10px;
    align-self: flex-start;
}

.cart-item-remove:hover {
    color: #d04b08;
}

/* Price Details Sidebar */
.price-details-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 150px;
}

.price-title {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.price-row.total {
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
    font-size: 18px;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 14px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    transition: var(--transition);
    display: block;
    text-align: center;
}

.checkout-btn:hover {
    background: #e1520e;
}

/* Checkout Page Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 20px;
}

.form-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(40, 116, 240, 0.1);
}

/* Success Layout */
.success-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 600px;
    margin: 40px auto;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: #e8f5e9;
    color: var(--green-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
}

.success-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.success-message {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Legal disclosure cards */
.policy-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.policy-card h2 {
    color: var(--primary);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.policy-card p {
    margin-bottom: 12px;
    color: #444;
}

/* Admin Dashboard CSS definitions */
.admin-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th, .admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: #f7f7f7;
    font-weight: 600;
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-pending { background: #fff8e1; color: #b78103; }
.badge-shipped { background: #e3f2fd; color: #0d47a1; }
.badge-delivered { background: #e8f5e9; color: #1b5e20; }

/* Sticky Mobile Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    z-index: 1001;
    display: none; /* Desktop hidden */
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #555;
    flex: 1;
    height: 100%;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.bottom-nav-item svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.bottom-nav-item.active {
    color: var(--primary);
    font-weight: 700;
}

.bottom-nav-item.active svg {
    stroke: var(--primary);
    fill: rgba(40, 116, 240, 0.08);
}

.bottom-nav-item .cart-badge {
    background: #d81b60;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    right: 20%;
    border: 1.5px solid #fff;
}

/* Footer Section */
footer {
    background-color: #172337;
    color: #878787;
    margin-top: auto;
    border-top: 1px solid #28374f;
    padding-bottom: 20px;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

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

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

.footer-col ul li a {
    transition: var(--transition);
    font-size: 13px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #28374f;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
}

/* RESPONSIVE BREAKPOINTS (Mobile view layout matching screenshot) */
@media (max-width: 768px) {
    body {
        padding-bottom: 60px; /* Leave space for sticky bottom navigation */
    }

    .header-container {
        padding: 8px 10px 12px;
    }

    /* Hide standard nav bar */
    .nav-menu {
        display: none !important;
    }

    /* Activate Bottom Nav */
    .bottom-nav {
        display: flex;
    }

    /* Adjust detail sticky */
    .detail-img-box {
        position: relative;
        top: 0;
    }

    .detail-img-wrapper {
        min-height: 280px;
    }

    /* Two column grid on mobile cards */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 8px;
    }

    .product-card {
        border-radius: 6px;
    }

    .product-title {
        font-size: 12px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 12px;
    }

    .cart-grid, .checkout-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        position: fixed;
        bottom: 60px; /* Right above bottom nav */
        left: 0;
        right: 0;
        z-index: 1000;
        background: #fff;
        padding: 8px 12px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        grid-template-columns: 1fr 1fr;
    }

    /* Hide standard footer on mobile for app look */
    footer .footer-links {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .vivo-hero-banner {
        padding: 16px 20px;
        min-height: 180px;
    }
    .vivo-title {
        font-size: 18px;
    }
    .vivo-right img {
        max-height: 180px;
    }

    .double-promos-grid {
        gap: 8px;
    }
    .promo-banner {
        padding: 12px;
        min-height: 105px;
    }
    .promo-title {
        font-size: 13px;
    }
    .promo-desc {
        font-size: 10px;
    }

    /* Mobile adjustments for Suggested Cards */
    .suggested-card-title {
        font-size: 10px;
    }
    .suggested-new-price {
        font-size: 11px;
    }
    .suggested-old-price {
        font-size: 9px;
    }
    .suggested-upi-offer {
        font-size: 8px;
    }
    .suggested-rating-badge {
        font-size: 8px;
        padding: 1px 4px;
        bottom: 4px;
        left: 4px;
    }
}

/* Suggested For You Section (Default Desktop & Shared styling) */
.suggested-section-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.suggested-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.suggested-section-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
}

.suggested-arrow-btn {
    background: #111827;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: var(--transition);
}

.suggested-arrow-btn:hover {
    background: #374151;
}

.suggested-arrow-btn svg {
    width: 14px;
    height: 14px;
}

.suggested-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.suggested-products-grid.shelf-scroll-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.suggested-products-grid.shelf-scroll-grid .suggested-product-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex: unset;
}

.suggested-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.suggested-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 130%; /* 3:4 aspect ratio */
    background: #fdfdfd;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.suggested-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggested-rating-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(56, 142, 60, 0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.suggested-card-details {
    padding: 8px 2px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.suggested-card-title {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.suggested-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.suggested-old-price {
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.suggested-new-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
}

.suggested-upi-offer {
    font-size: 10px;
    font-weight: 600;
    color: #2874f0;
    line-height: 1.2;
}

@media (min-width: 769px) {
    .suggested-img-wrapper {
        padding-top: 100%;
    }
}

/* Fashion Landing Page Styles */
.fashion-hero-banner {
    background: linear-gradient(135deg, #ffdeeb 0%, #fcecf2 100%);
    border-radius: 12px;
    padding: 20px 24px;
    color: #212121;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.fashion-hero-left {
    max-width: 60%;
    z-index: 2;
}

.fashion-hero-tag {
    font-size: 18px;
    font-weight: 900;
    color: #111;
    line-height: 1.1;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.fashion-hero-tag span {
    color: #e91e63;
}

.fashion-hero-arrow {
    font-size: 20px;
    color: #e91e63;
    font-weight: bold;
}

.fashion-hero-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #444;
}

.fashion-hero-title span {
    color: #e91e63;
}

.fashion-hero-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.fashion-hero-btn:hover {
    background: #e91e63;
}

.fashion-hero-right {
    position: absolute;
    right: 15px;
    bottom: -15px;
    width: 35%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.fashion-hero-right img {
    max-height: 200px;
    object-fit: contain;
}

/* Sub-categories Grid (2 rows of 6 items) */
.subcats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.subcat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.subcat-item:hover {
    transform: translateY(-2px);
}

.subcat-img-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
    transition: var(--transition);
}

/* Pastel backgrounds matching screenshot */
.subcat-item:nth-child(2n) .subcat-img-box { background: #ffebee; }
.subcat-item:nth-child(3n) .subcat-img-box { background: #fff8e1; }
.subcat-item:nth-child(4n) .subcat-img-box { background: #e8f5e9; }
.subcat-item:nth-child(5n) .subcat-img-box { background: #e3f2fd; }

.subcat-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.subcat-item:hover .subcat-img-box img {
    transform: scale(1.08);
}

.subcat-label {
    font-size: 9px;
    font-weight: 700;
    color: #444;
    line-height: 1.2;
}

/* Shop for loved ones row */
.loved-ones-container {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.loved-ones-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.loved-ones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.loved-ones-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 100px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.loved-ones-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.loved-ones-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.loved-ones-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    padding: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    text-align: center;
}

/* Mobiles Landing Page Styles */
.mobile-hero-banner {
    background: linear-gradient(135deg, #fff4d4 0%, #ffd0a3 100%);
    border-radius: 12px;
    padding: 20px 24px;
    color: #212121;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.mobile-hero-left {
    max-width: 60%;
    z-index: 2;
}

.mobile-hero-interest {
    display: inline-block;
    background: #e65100;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.mobile-hero-title-main {
    font-size: 20px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 4px;
}

.mobile-hero-price {
    font-size: 16px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 4px;
}

.mobile-hero-desc {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
}

.mobile-hero-rating {
    display: inline-block;
    background: #388e3c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
}

.mobile-hero-right {
    position: absolute;
    right: 20px;
    bottom: -10px;
    width: 35%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.mobile-hero-right img {
    max-height: 170px;
    object-fit: contain;
}

/* Bank Offers Strip */
.mobile-bank-offers-strip {
    background: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid #e65100;
    font-size: 11px;
    line-height: 1.3;
}

.bank-tag {
    font-weight: 800;
    color: #c62828;
    white-space: nowrap;
}

.bank-offer-desc {
    color: #333;
    font-weight: 500;
}

/* Confused Banner */
.mobile-confused-banner {
    background: linear-gradient(135deg, #eddccb 0%, #dbbfab 100%);
    border-radius: 12px;
    padding: 18px 24px;
    color: #3e2723;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 110px;
}

.confused-left {
    z-index: 2;
    max-width: 70%;
}

.confused-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.confused-desc {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.8;
}

.confused-btn {
    display: inline-block;
    background: #3e2723;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.confused-right {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Electronics Landing Page Styles */
.electronics-hero-banner {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border-radius: 12px;
    padding: 20px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.elec-hero-left {
    max-width: 60%;
    z-index: 2;
}

.elec-hero-interest {
    display: inline-block;
    background: #ffe082;
    color: #e65100;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.elec-hero-title-main {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.elec-hero-brands {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 8px;
}

.elec-hero-discount {
    font-size: 16px;
    font-weight: 800;
}

.elec-hero-right {
    position: absolute;
    right: 20px;
    bottom: -10px;
    width: 35%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.elec-hero-right img {
    max-height: 160px;
    object-fit: contain;
}

/* Dual Credit Cards Banners */
.dual-credit-banners {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.credit-banner-card {
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    color: #212121;
    position: relative;
    overflow: hidden;
    min-height: 100px;
    cursor: pointer;
    transition: var(--transition);
}

.credit-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.axis-card {
    background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    border-left: 4px solid #00796b;
}

.emi-card {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    border-left: 4px solid #00838f;
}

.credit-badge {
    font-size: 8px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
    color: #444;
}

.credit-card-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #212121;
}

.credit-card-desc {
    font-size: 10px;
    font-weight: 600;
    color: #555;
}

/* Beauty Landing Page Styles */
.beauty-luxe-banner {
    background: #0d0d0d;
    border: 1px solid #d4af37;
    border-radius: 12px;
    padding: 16px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    min-height: 90px;
}

.beauty-luxe-left {
    z-index: 2;
}

.beauty-luxe-title {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
}

.beauty-luxe-subtitle {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.beauty-luxe-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.luxe-img {
    height: 75px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.beauty-hero-banner {
    background: linear-gradient(135deg, #e91e63 0%, #ff5722 50%, #ff9800 100%);
    border-radius: 12px;
    padding: 20px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.beauty-hero-left {
    max-width: 70%;
    z-index: 2;
}

.beauty-hero-seal {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.beauty-hero-title-main {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.beauty-hero-desc {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.4;
}

.beauty-hero-btn {
    display: inline-block;
    background: #fff;
    color: #e91e63;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.beauty-hero-right {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 120px;
    height: 120px;
    z-index: 1;
}

.glowing-wave-bubble {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 0;
    right: 0;
    filter: blur(10px);
}

.glowing-wave-bubble-2 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    position: absolute;
    top: 30px;
    right: 30px;
    filter: blur(5px);
}

/* Reebok Fragrance Banner */
.beauty-reebok-banner {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.reebok-left {
    z-index: 2;
}

.reebok-brand-name {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #c2185b;
}

.reebok-title {
    font-size: 18px;
    font-weight: 800;
    color: #880e4f;
    margin-bottom: 2px;
}

.reebok-desc {
    font-size: 10px;
    font-weight: 700;
    color: #c2185b;
}

.reebok-center {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.reebok-perfume-img {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.reebok-right {
    z-index: 2;
}

.reebok-badge {
    background: #c2185b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Home Landing Page Styles */
.home-hero-banner {
    background: linear-gradient(135deg, #efebe9 0%, #d7ccc8 100%);
    border-radius: 12px;
    padding: 20px 24px;
    color: #3e2723;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.home-hero-left {
    max-width: 65%;
    z-index: 2;
}

.home-hero-seal {
    display: inline-block;
    background: #5d4037;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.home-hero-title-main {
    font-size: 20px;
    font-weight: 800;
    color: #3e2723;
    margin-bottom: 6px;
}

.home-hero-desc {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #4e342e;
}

.home-hero-btn {
    display: inline-block;
    background: #3e2723;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.home-hero-right {
    position: absolute;
    right: 20px;
    bottom: -15px;
    width: 30%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.home-vase-img {
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* Home secondary promo Banner */
.home-promo-banner {
    background: linear-gradient(135deg, #efebe9 0%, #d7ccc8 100%);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.home-promo-left {
    z-index: 2;
}

.home-promo-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #5d4037;
}

.home-promo-title {
    font-size: 18px;
    font-weight: 800;
    color: #3e2723;
    margin-bottom: 2px;
}

.home-promo-desc {
    font-size: 10px;
    font-weight: 700;
    color: #5d4037;
}

.home-promo-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.home-promo-lamp-img {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Toys Landing Page Styles */
.toys-hero-banner {
    background: linear-gradient(135deg, #fff9c4 0%, #ff80ab 100%);
    border-radius: 12px;
    padding: 20px 24px;
    color: #3e2723;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.toys-hero-left {
    max-width: 65%;
    z-index: 2;
}

.toys-hero-seal {
    display: inline-block;
    background: #ff4081;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.toys-hero-title-main {
    font-size: 22px;
    font-weight: 800;
    color: #880e4f;
    margin-bottom: 6px;
}

.toys-hero-desc {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #4a148c;
}

.toys-hero-btn {
    display: inline-block;
    background: #880e4f;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.toys-hero-right {
    position: absolute;
    right: 15px;
    bottom: -15px;
    width: 32%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.toys-teddy-img {
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* Toys secondary promo Banner */
.toys-promo-banner {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.toys-promo-left {
    z-index: 2;
}

.toys-promo-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #c2185b;
}

.toys-promo-title {
    font-size: 18px;
    font-weight: 800;
    color: #880e4f;
    margin-bottom: 2px;
}

.toys-promo-desc {
    font-size: 10px;
    font-weight: 700;
    color: #c2185b;
}

.toys-promo-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.toys-promo-lego-img {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Furniture Landing Page Styles */
.furniture-hero-banner {
    background: linear-gradient(135deg, #d7ccc8 0%, #a1887f 100%);
    border-radius: 12px;
    padding: 20px 24px;
    color: #3e2723;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.furniture-hero-left {
    max-width: 65%;
    z-index: 2;
}

.furniture-hero-seal {
    display: inline-block;
    background: #5d4037;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.furniture-hero-title-main {
    font-size: 22px;
    font-weight: 800;
    color: #3e2723;
    margin-bottom: 6px;
}

.furniture-hero-desc {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #4e342e;
}

.furniture-hero-btn {
    display: inline-block;
    background: #3e2723;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.furniture-hero-right {
    position: absolute;
    right: 20px;
    bottom: -15px;
    width: 32%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.furn-sofa-img {
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* Furniture secondary promo Banner */
.furniture-promo-banner {
    background: linear-gradient(135deg, #efebe9 0%, #d7ccc8 100%);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.furniture-promo-left {
    z-index: 2;
}

.furniture-promo-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #5d4037;
}

.furniture-promo-title {
    font-size: 18px;
    font-weight: 800;
    color: #3e2723;
    margin-bottom: 2px;
}

.furniture-promo-desc {
    font-size: 10px;
    font-weight: 700;
    color: #5d4037;
}

.furniture-promo-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.furniture-promo-bed-img {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Sports Landing Page Styles */
.sports-hero-banner {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border: 1px solid #ccff00;
    border-radius: 12px;
    padding: 20px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(204, 255, 0, 0.15);
    overflow: hidden;
    position: relative;
    min-height: 180px;
}

.sports-hero-left {
    max-width: 65%;
    z-index: 2;
}

.sports-hero-seal {
    display: inline-block;
    background: #ccff00;
    color: #111;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sports-hero-title-main {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.sports-hero-desc {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #eee;
}

.sports-hero-btn {
    display: inline-block;
    background: #ccff00;
    color: #111;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.3);
}

.sports-hero-right {
    position: absolute;
    right: 10px;
    bottom: -10px;
    width: 35%;
    height: 110%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.sports-shoe-img {
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(204,255,0,0.25)) rotate(-15deg);
    transform-origin: bottom right;
}

/* Sports secondary promo Banner */
.sports-promo-banner {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.sports-promo-left {
    z-index: 2;
}

.sports-promo-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #2e7d32;
}

.sports-promo-title {
    font-size: 18px;
    font-weight: 800;
    color: #1b5e20;
    margin-bottom: 2px;
}

.sports-promo-desc {
    font-size: 10px;
    font-weight: 700;
    color: #2e7d32;
}

.sports-promo-right {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.sports-promo-cycle-img {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Product Detail Page Mobile-First Redesign Styles */
.detail-mobile-wrapper {
    background: #f1f3f6;
    margin-bottom: 70px;
}

.detail-top-image-container {
    background: #fff;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-wish-share-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.overlay-circle-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: #555;
    cursor: pointer;
}

.detail-indicator-strip {
    height: 3px;
    background: #e0e0e0;
    width: 100%;
    position: relative;
}

.detail-indicator-bar {
    width: 25%;
    height: 100%;
    background: #2874f0;
    position: absolute;
    left: 0;
    top: 0;
}

/* Variant & Details Cards */
.detail-white-card {
    background: #fff;
    padding: 16px;
    margin-bottom: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.variant-title-label {
    font-size: 13px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 10px;
}

.variant-title-label span {
    font-weight: 500;
    color: #666;
}

.variant-thumbnails-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.variant-thumb-card {
    flex: 0 0 60px;
    height: 65px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.variant-thumb-card.active {
    border-color: #2874f0;
}

.variant-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Size Selection */
.size-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.size-chart-link {
    color: #2874f0;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.size-pill-container {
    display: flex;
    gap: 8px;
}

.size-pill-btn {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #212121;
    background: #fff;
    cursor: pointer;
}

.size-pill-btn.active {
    border-color: #2874f0;
    color: #2874f0;
    background: #f1f6ff;
}

/* Brand & Title Info */
.info-brand-label {
    font-size: 14px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-brand-visit {
    color: #2874f0;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.info-product-title {
    font-size: 13px;
    color: #878787;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.info-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.info-original-price {
    text-decoration: line-through;
    color: #878787;
    font-size: 14px;
    font-weight: 600;
}

.info-real-price {
    font-size: 18px;
    font-weight: 800;
    color: #212121;
}

.info-discount-badge {
    color: #388e3c;
    font-size: 13px;
    font-weight: 700;
}

.info-upi-offer-strip {
    color: #2874f0;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* Wow Deal Apply Offers */
.apply-offers-box {
    border: 1.5px solid #2874f0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 12px;
}

.offers-box-header {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    padding: 8px 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offers-box-body {
    background: #e3f2fd;
    padding: 12px;
}

.buy-at-tag {
    font-size: 15px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 8px;
}

.supercoin-benefit-row {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benefit-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.benefit-badge-title {
    font-size: 10px;
    font-weight: 800;
    color: #777;
}

.benefit-text {
    font-size: 12px;
    font-weight: 700;
    color: #212121;
}

.benefit-apply-btn {
    color: #2874f0;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.bank-offers-container {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
}

.bank-label {
    font-size: 11px;
    color: #777;
    font-weight: 700;
    margin-bottom: 6px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-left-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-logo {
    background: #002e6e;
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 800;
}

.bank-text {
    font-size: 12px;
    font-weight: 700;
    color: #212121;
}

.benefit-cashback-label {
    font-size: 10px;
    color: #555;
    margin-top: 6px;
    border-top: 1px solid #eee;
    padding-top: 6px;
}

.cashback-silver-banner {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fdfaf2;
    border: 1px solid #ffe0b2;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 12px;
}

.silver-coin-icon {
    color: #ff9100;
    font-weight: 800;
    font-size: 14px;
}

.silver-banner-text {
    font-size: 11px;
    font-weight: 700;
    color: #5d4037;
}

/* Similar Products Row Scroller */
.similar-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.similar-scroll-box {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.similar-item-card {
    flex: 0 0 130px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    text-decoration: none;
    color: #212121;
}

.similar-img-box {
    height: 120px;
    overflow: hidden;
}

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

.similar-info-box {
    padding: 8px;
}

.similar-brand-text {
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 2px;
}

.similar-price-row {
    font-size: 12px;
    font-weight: 700;
}

/* Accordion Highlight dropdown */
.accordion-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-title {
    font-size: 14px;
    font-weight: 800;
    color: #212121;
}

.accordion-arrow {
    transition: transform 0.2s ease;
}

.accordion-arrow.open {
    transform: rotate(180deg);
}

.accordion-body-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.spec-grid-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-grid-label {
    font-size: 11px;
    color: #878787;
    font-weight: 500;
}

.spec-grid-val {
    font-size: 12px;
    color: #212121;
    font-weight: 700;
}

/* Bottom Floating Sticky Action Bar */
.bottom-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    height: 52px;
    z-index: 999;
}

.sticky-btn-cart {
    flex: 1;
    background: #fff;
    border: none;
    font-size: 13px;
    font-weight: 800;
    color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    border-right: 1px solid #e0e0e0;
}

.sticky-btn-buy {
    flex: 1.2;
    background: #ffc107;
    border: none;
    font-size: 13px;
    font-weight: 800;
    color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Premium Product Details Header */
.detail-header {
    background: #2874f0;
    padding: 8px 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.detail-back-btn {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.detail-back-btn svg {
    width: 22px;
    height: 22px;
}

.detail-search-box {
    flex: 1;
    background: #fff;
    border-radius: 4px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.detail-search-icon {
    color: #777;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.detail-search-input {
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    width: 100%;
    background: transparent;
}

.detail-cart-btn {
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

.detail-cart-btn svg {
    width: 22px;
    height: 22px;
}

.detail-cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ff9f00;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #2874f0;
}

/* Delivery Details Container Card */
.delivery-details-container {
    background: #fdfdfd;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.delivery-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.delivery-icon {
    width: 20px;
    height: 20px;
    color: #878787;
    margin-top: 2px;
    flex-shrink: 0;
}

.delivery-text-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.delivery-bold-text {
    font-size: 13px;
    font-weight: 800;
    color: #212121;
}

.delivery-normal-text {
    font-size: 12px;
    color: #212121;
    font-weight: 600;
    line-height: 1.4;
}

.delivery-green-text {
    color: #388e3c;
    font-weight: 800;
}

.delivery-sub-text {
    font-size: 11px;
    color: #878787;
    font-weight: 600;
}

.delivery-sellers-link {
    font-size: 11px;
    font-weight: 800;
    color: #2874f0;
    text-decoration: none;
    margin-top: 2px;
}

.delivery-arrow {
    color: #878787;
    font-size: 14px;
    font-weight: 700;
}

/* Horizontal Return & Assured badge strip */
.delivery-horizontal-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    gap: 8px;
}

.strip-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.strip-icon-box {
    background: #e8f5e9;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2e7d32;
}

.strip-icon-box.brand-assured {
    background: #e3f2fd;
    color: #1565c0;
}

.strip-icon-box svg {
    width: 18px;
    height: 18px;
}

.strip-item span {
    font-size: 10px;
    font-weight: 700;
    color: #555;
    line-height: 1.3;
}

/* Ratings & Reviews Styles */
.review-row-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
}

.review-row-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-header-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.rating-star-badge {
    background: #388e3c;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.rating-star-badge svg {
    width: 8px;
    height: 8px;
    fill: #fff;
}

.review-user-name {
    font-size: 11px;
    color: #878787;
    font-weight: 700;
}

.review-comment-text {
    font-size: 12px;
    color: #212121;
    font-weight: 600;
    line-height: 1.4;
}

.review-date {
    font-size: 10px;
    color: #878787;
    margin-top: 4px;
}

/* Mobile Cart Page Redesign Styles */
.cart-top-bar {
    background: #fff;
    padding: 12px 16px;
    margin-bottom: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.cart-page-title {
    font-size: 16px;
    font-weight: 800;
    color: #212121;
    margin-bottom: 12px;
}

.cart-tabs-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.cart-tab-btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 6px;
    border: 1.5px solid #e0e0e0;
    color: #666;
    cursor: pointer;
}

.cart-tab-btn.active {
    background: #2874f0;
    border-color: #2874f0;
    color: #fff;
}

.cart-location-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    background: #fdfaf2;
    border: 1px solid #ffe0b2;
    padding: 8px 12px;
    border-radius: 6px;
}

.cart-location-row .loc-icon {
    width: 14px;
    height: 14px;
    color: #ff9100;
}

/* Mobile cart items */
.cart-item-mobile-card {
    background: #fff;
    margin-bottom: 8px;
    padding: 12px 16px 0 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.cart-card-deal-tag {
    font-size: 10px;
    color: #388e3c;
    font-weight: 800;
    margin-bottom: 6px;
    display: inline-block;
}

.cart-card-main-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.cart-card-left-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-card-img {
    width: 75px;
    height: 85px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-card-qty-box {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 3px 6px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.qty-select-dropdown {
    border: none;
    outline: none;
    font-size: 11px;
    font-weight: 800;
    color: #212121;
    background: transparent;
    cursor: pointer;
}

.cart-card-stock-alert {
    font-size: 10px;
    color: #d32f2f;
    font-weight: 800;
    margin-top: 2px;
}

.cart-card-right-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #212121;
    line-height: 1.4;
    text-decoration: none;
    margin-bottom: 4px;
}

.cart-card-spec-label {
    font-size: 11px;
    color: #878787;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-card-seller-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #878787;
    font-weight: 600;
    margin-bottom: 6px;
}

.cart-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.cart-card-original-price {
    text-decoration: line-through;
    color: #878787;
    font-size: 12px;
}

.cart-card-real-price {
    font-size: 15px;
    font-weight: 800;
    color: #212121;
}

.cart-card-discount {
    color: #388e3c;
    font-size: 12px;
    font-weight: 700;
}

.cart-card-upi-strip {
    color: #2874f0;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cart-card-delivery-text {
    font-size: 11px;
    color: #555;
    font-weight: 600;
}

.cart-card-delivery-text .green-date {
    color: #388e3c;
    font-weight: 700;
}

/* Bottom Actions strip in card */
.cart-card-actions-strip {
    display: flex;
    border-top: 1px solid #f0f0f0;
    margin-top: 8px;
}

.cart-action-btn-item {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-size: 11px;
    font-weight: 800;
    color: #666;
    text-decoration: none;
    border-right: 1px solid #f0f0f0;
    cursor: pointer;
}

.cart-action-btn-item:last-child {
    border-right: none;
}

/* Save info banner and bottom bar */
.cart-save-info-strip {
    background: #e8f5e9;
    padding: 8px 16px;
    color: #2e7d32;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 60px;
}

.cart-bottom-sticky-bar {
    position: fixed;
    bottom: 50px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 16px;
    z-index: 998;
}

.cart-sticky-price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-sticky-original-price {
    text-decoration: line-through;
    color: #878787;
    font-size: 11px;
    font-weight: 600;
}

.cart-sticky-real-price {
    font-size: 16px;
    font-weight: 800;
    color: #212121;
}

.cart-sticky-place-btn {
    background: #ffc107;
    color: #212121;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Size Selection Pill Buttons */
.size-pill-container {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.size-pill-btn {
    min-width: 44px;
    height: 40px;
    padding: 0 14px;
    border-radius: 6px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #212121;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.size-pill-btn:hover {
    border-color: #2874f0;
    color: #2874f0;
}

.size-pill-btn.active {
    border-color: #2874f0;
    background: #e8eaf6;
    color: #2874f0;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(40,116,240,0.15);
}

/* Custom Checkout Page Styles - Flipkart Layout */
.checkout-custom-header {
    background: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.back-arrow-btn {
    display: flex;
    align-items: center;
    color: #212121;
    text-decoration: none;
}

.checkout-title-text {
    font-size: 17px;
    font-weight: 700;
    color: #212121;
}

/* Stepper Bar */
.checkout-stepper-bar {
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
}

.stepper-step {
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid #d0d0d0;
    color: #878787;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.stepper-step.completed .step-circle {
    border-color: #2874f0;
    background: #e8eaf6;
    color: #2874f0;
}

.stepper-step.active .step-circle {
    border-color: #2874f0;
    background: #2874f0;
    color: #fff;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #878787;
}

.stepper-step.active .step-label {
    color: #212121;
    font-weight: 800;
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 10px;
}

.stepper-line.active {
    background: #2874f0;
}

/* Deliver To Card */
.deliver-address-card {
    background: #fff;
    padding: 16px;
    margin-bottom: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.deliver-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.deliver-to-lbl {
    font-size: 13px;
    color: #212121;
    font-weight: 600;
}

.deliver-name-row {
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-name {
    font-size: 14px;
    font-weight: 700;
    color: #212121;
}

.type-badge {
    background: #eeeeee;
    color: #616161;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.change-address-btn {
    border: 1.5px solid #e0e0e0;
    background: #fff;
    color: #2874f0;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
}

.full-address-text {
    font-size: 12px;
    color: #444;
    line-height: 1.5;
    margin-top: 6px;
    margin-bottom: 4px;
}

.customer-phone-val {
    font-size: 13px;
    font-weight: 600;
    color: #212121;
}

/* SuperCoins Strip */
.supercoins-strip {
    background: linear-gradient(180deg, #f0f4ff 0%, #e8eaf6 100%);
    padding: 14px 16px;
    margin-bottom: 8px;
    border: 1px solid #e3f2fd;
}

.supercoins-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.coins-balance {
    font-size: 12px;
    color: #555;
    margin-left: 24px;
    margin-top: 2px;
}

.coins-save-text {
    font-size: 13px;
    font-weight: 700;
    color: #388e3c;
    margin-top: 8px;
}

/* Foundation Card */
.foundation-card {
    background: #fff;
    padding: 16px;
    margin-bottom: 8px;
}

.foundation-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.foundation-title {
    font-size: 14px;
    font-weight: 700;
    color: #212121;
}

.foundation-desc {
    font-size: 11px;
    color: #878787;
    margin-top: 2px;
}

.foundation-img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.donation-options {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.donation-pill {
    flex: 1;
    padding: 8px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #212121;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.donation-pill.active {
    border-color: #2874f0;
    background: #e8eaf6;
    color: #2874f0;
}

.foundation-note {
    font-size: 11px;
    color: #878787;
}

/* Product Summary Card */
.summary-product-card {
    background: #fff;
    padding: 16px;
    margin-bottom: 8px;
}

.summary-product-row {
    display: flex;
    gap: 14px;
}

.summary-prod-img {
    width: 70px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}

.summary-prod-details {
    flex: 1;
}

.summary-prod-title {
    font-size: 13px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 4px;
    line-height: 1.3;
}

.summary-prod-size {
    font-size: 12px;
    color: #878787;
    margin-bottom: 4px;
}

.summary-prod-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #878787;
    margin-bottom: 6px;
}

.star-rating {
    background: #388e3c;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    font-weight: 700;
}

.assured-badge {
    background: #e3f2fd;
    color: #2874f0;
    font-size: 9px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 3px;
}

.summary-prod-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-off {
    color: #388e3c;
    font-weight: 800;
    font-size: 12px;
}

.orig-price {
    text-decoration: line-through;
    color: #878787;
    font-size: 12px;
}

.sell-price {
    font-size: 15px;
    font-weight: 800;
    color: #212121;
}

.summary-prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.qty-label {
    font-size: 12px;
    font-weight: 600;
    color: #212121;
    border: 1px solid #e0e0e0;
    padding: 3px 8px;
    border-radius: 4px;
}

.savings-highlight {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

/* Sticky Footer Bar */
.checkout-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.footer-price-col {
    display: flex;
    flex-direction: column;
}

.footer-orig-price {
    text-decoration: line-through;
    color: #878787;
    font-size: 11px;
}

.footer-final-price {
    font-size: 18px;
    font-weight: 800;
    color: #212121;
}

.continue-order-btn {
    background: #ffc107;
    color: #212121;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.continue-order-btn:hover {
    background: #ffb300;
}

/* Address Form Mobile UI */
.use-gps-btn {
    width: 100%;
    background: #f0f4ff;
    border: 1.5px solid #2874f0;
    color: #2874f0;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s;
}

.use-gps-btn:hover {
    background: #e8eaf6;
}

.address-type-pills {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.address-type-label {
    flex: 1;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.address-type-label input[type="radio"] {
    display: none;
}

.address-type-label.selected {
    border-color: #2874f0;
    background: #e8eaf6;
    color: #2874f0;
}

/* Custom Responsive Hero Slider Image Styling */
.hero-slider-img, .category-banner-img {
    height: 280px !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .hero-slider-img, .category-banner-img {
        height: 165px !important;
    }
}













