:root {
    /* Brand Theme - Vastra Express */
    --ink: #0b0b0f;
    --ink-soft: #17141c;

    --muted: #6f6878;
    --muted-light: #9b94a8;

    --line: #ece7f4;
    --paper: #fbf8ff;
    --surface: #ffffff;

    /* Logo Purple */
    --accent: #c463e8;
    --accent-dark: #8f35c7;
    --accent-soft: #f3ddff;

    /* Support Colors */
    --purple: #c463e8;
    --purple-dark: #7c2fb3;
    --black: #050505;
    --white: #ffffff;

    /* Soft Section Backgrounds */
    --mint: #edfdf6;
    --yellow: #fff5bf;
    --blue: #edf4ff;
    --pink: #fff0f8;
    --lavender: #f6ecff;

    /* Premium Effects */
    --gradient: linear-gradient(135deg, #0b0b0f 0%, #3a164d 45%, #c463e8 100%);
    --gradient-purple: linear-gradient(135deg, #8f35c7 0%, #c463e8 100%);
    --shadow: 0 18px 45px rgba(38, 20, 48, 0.13);
    --shadow-purple: 0 16px 38px rgba(196, 99, 232, 0.28);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: all 0.35s ease;
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f3f3f3;
    color: var(--ink);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    letter-spacing: 0;
}

.zilo-mobile-page {
    background: #fffef8;
    margin: 0 auto;
    max-width: 640px;
    min-height: 100vh;
    overflow: hidden;
    padding-bottom: 92px;
}

.zilo-mobile-header {
    align-items: flex-start;
    background: #fff;
    border-bottom: 1px solid #f0f0ec;
    display: flex;
    justify-content: space-between;
    padding: 20px 24px 0;
}

.shopping-tabs span {
    color: #858080;
    display: block;
    font-size: 14px;
    margin-bottom: 14px;
}

.shopping-tabs nav {
    display: flex;
    gap: 14px;
}

.shopping-tabs button,
.shopping-tabs a {
    background: transparent;
    border: 0;
    color: #171717;
    cursor: pointer;
    display: inline-block;
    font-size: 23px;
    font-weight: 400;
    padding: 0 0 28px;
    position: relative;
    text-decoration: none;
}

.shopping-tabs button:not(:last-child)::after,
.shopping-tabs a:not(:last-child)::after {
    color: #111;
    content: "|";
    font-weight: 400;
    margin-left: 14px;
}

.shopping-tabs button.active,
.shopping-tabs a.active {
    font-weight: 900;
}

.shopping-tabs button.active::before,
.shopping-tabs a.active::before {
    background: var(--accent);
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 92px;
}

.delivery-summary {
    color: #777;
    min-width: 230px;
    text-align: right;
}

.delivery-summary button,
.delivery-summary a {
    background: transparent;
    border: 0;
    color: #777;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    max-width: 260px;
    overflow: hidden;
    padding: 0;
    text-overflow: ellipsis;
    text-decoration: none;
    white-space: nowrap;
}

.delivery-summary button i,
.delivery-summary a i {
    color: #4e2633;
    margin-left: 8px;
}

.zilo-location-strip {
    background: #fff;
    border-bottom: 1px solid #f0f0ec;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 18px 16px;
}

.zilo-location-strip form {
    flex: 0 0 auto;
}

.zilo-location-strip button {
    background: #f6f5ed;
    border: 1px solid #ece8d8;
    border-radius: 999px;
    color: #1f1f1f;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    padding: 9px 12px;
    white-space: nowrap;
}

.zilo-location-strip button span {
    color: #7d776b;
    display: inline-block;
    font-weight: 700;
    margin-left: 4px;
}

.zilo-location-strip button.active {
    background: #1f1f1f;
    border-color: #1f1f1f;
    color: #fff;
}

.zilo-location-strip button.active span {
    color: var(--accent-soft);
}

.pincode-gate {
    align-items: center;
    background: rgba(0, 0, 0, 0.58);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 22px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

.pincode-gate-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
    max-width: 420px;
    padding: 24px;
    width: 100%;
}

.pincode-gate-card > span {
    color: var(--accent-dark);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.pincode-gate-card h2 {
    font-size: 28px;
    line-height: 1.1;
    margin: 8px 0;
}

.pincode-gate-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 18px;
}

.pincode-gate-form {
    display: grid;
    gap: 10px;
}

.pincode-gate-form input {
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 800;
    padding: 14px;
}

.pincode-gate-form button,
.pincode-location-btn {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 900;
    padding: 14px;
}

.pincode-gate-form button {
    background: var(--ink);
    color: var(--white);
}

.pincode-location-btn {
    align-items: center;
    background: #f6f5ed;
    color: var(--ink);
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
}

.hidden-pincode-form {
    display: none;
}

.pincode-gate-message {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    margin-top: 12px;
    min-height: 18px;
}

.delivery-summary strong {
    color: #df71e5;
    display: block;
    font-size: 25px;
    font-weight: 900;
    margin-top: 12px;
}

.delivery-summary strong i {
    font-size: 22px;
    margin-right: 8px;
}

.delivery-summary span {
    display: block;
    font-size: 18px;
    margin-top: 6px;
}

.wear-section {
    background: #fff;
    padding: 24px 0 16px;
}

.wear-section h1 {
    font-size: 20px;
    line-height: 1;
    margin: 0 0 16px;
    padding: 0 18px;
}

.wear-rail {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scroll-snap-type: x proximity;
}

.wear-rail a {
    flex: 0 0 78px;
    min-width: 50px;
    scroll-snap-align: start;
    text-align: center;
}

.wear-rail img {
    aspect-ratio: 1;
    border: 1px solid #ead8f4;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(20, 20, 20, .08);
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}

.audience-rail a span {
    width: 50px;
    height: 50px;
    aspect-ratio: unset;
    align-items: center;
    background: #fff8ff;
    border: 1px solid #ead8f4;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(20, 20, 20, .08);
    color: var(--accent);
    display: inline-flex;
    font-size: 17px;
    justify-content: center;
    flex-shrink: 0;
}

.audience-rail a.active span {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.audience-rail a.active strong {
    color: var(--accent-dark);
}

.wear-rail strong {
    color: #393939;
    display: block;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.15;
    margin-top: 8px;
    min-height: 26px;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.zilo-mobile-page .front-carousel {
    border-radius: 16px;
    box-shadow: none;
    margin: 16px 16px 0;
    min-height: 565px;
}

.zilo-mobile-page .carousel-track {
    min-height: 565px;
}

.zilo-mobile-page .carousel-slide img {
    height: 565px;
}

.zilo-mobile-page .carousel-slide div {
    bottom: 46px;
    left: 34px;
    max-width: 460px;
    top: auto;
    transform: none;
}

.zilo-mobile-page .carousel-slide span {
    display: none;
}

.zilo-mobile-page .carousel-slide h2 {
    color: #fff;
    font-size: 32px;
    line-height: 1.08;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.zilo-mobile-page .carousel-slide p {
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
}

.zilo-mobile-page .carousel-btn {
    display: none;
}

.zilo-mobile-page .carousel-dots {
    bottom: 8px;
}

.zilo-mobile-page .carousel-dots button {
    background: rgba(255, 255, 255, .55);
    border-radius: 0;
    height: 5px;
    width: 7px;
}

.zilo-mobile-page .carousel-dots button.active {
    background: #fff;
    width: 52px;
}

.zilo-coupon-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 36px 24px 18px;
}

.zilo-coupon-strip img {
    border: 1px solid #dfe47c;
    border-radius: 6px;
    flex: 0 0 195px;
    height: 78px;
    object-fit: cover;
}

.hero-benefit-strip {
    background: #fff;
    border-bottom: 1px solid #f0edf2;
    border-top: 1px solid #f0edf2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 14px 10px 12px;
}

.hero-benefit-strip div {
    align-items: center;
    display: grid;
    gap: 4px;
    justify-items: center;
    min-width: 0;
    text-align: center;
}

.hero-benefit-strip i {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--accent);
    display: inline-flex;
    font-size: 15px;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.hero-benefit-strip strong,
.hero-benefit-strip span {
    color: #111;
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2px;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-benefit-strip span {
    font-weight: 800;
}

.shop-women-section {
    padding: 16px 18px 0;
}

.shop-women-section h2 {
    font-size: 30px;
    line-height: 1;
    margin: 0 0 24px 6px;
    text-align: left;
    text-transform: none;
}

.shop-women-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
}

.shop-women-grid a {
    background: #f7f7f7;
    border-radius: 6px;
    display: block;
    min-height: 260px;
    overflow: hidden;
    position: relative;
}

.shop-women-grid img,
.category-fallback-icon {
    background: #f7f2fa;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.category-fallback-icon {
    align-items: center;
    color: var(--accent-dark);
    display: inline-flex;
    font-size: 24px;
    font-weight: 950;
    justify-content: center;
}

.shop-women-grid span {
    bottom: 10px;
    color: #333;
    display: block;
    font-size: 23px;
    font-weight: 500;
    left: 0;
    line-height: 1.1;
    overflow-wrap: anywhere;
    position: absolute;
    right: 0;
    text-align: center;
    text-shadow: 0 1px 8px rgba(255, 255, 255, .86);
    text-transform: none;
}

.color-combo-section {
    background: #fff;
    padding: 24px 18px 0;
}

.color-combo-section h2 {
    color: #161616;
    font-size: 30px;
    line-height: 1;
    margin: 0 0 18px 6px;
}

.color-combo-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.color-combo-card {
    border-radius: 8px;
    min-height: 250px;
    overflow: hidden;
    position: relative;
}

.color-combo-card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .48));
    content: "";
    inset: 0;
    position: absolute;
}

.color-combo-card img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.color-combo-swatch {
    background: var(--swatch-color);
    border: 1px solid rgba(0, 0, 0, .16);
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .45);
    display: inline-block;
    height: 30px;
    left: 12px;
    position: absolute;
    top: 12px;
    width: 30px;
    z-index: 2;
}

.color-combo-card strong {
    bottom: 14px;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    left: 0;
    line-height: 1.05;
    padding: 0 14px;
    position: absolute;
    right: 0;
    text-align: center;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
    text-transform: uppercase;
    z-index: 2;
}

.zilo-mobile-page > main {
    padding-left: 16px;
    padding-right: 16px;
}

.event-section,
.summer-refresh,
.sports-section,
.store-section,
.alist-section,
.director-section,
.store-stack,
.mall-section {
    padding: 30px 18px 0;
}

.event-section h2,
.store-section h2,
.alist-section h2,
.director-section h2,
.store-stack h2,
.mall-section h2 {
    color: #161616;
    font-size: 30px;
    line-height: 1;
    margin: 0 0 22px 6px;
}

.event-grid {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-grid a,
.event-grid .event-card {
    border-radius: 10px;
    min-height: 380px;
    overflow: hidden;
    position: relative;
}

.event-grid img,
.store-grid img,
.alist-grid img,
.dark-card-rail img,
.sports-grid img,
.large-store-card img,
.wide-banner img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.event-grid a::after,
.event-grid .event-card::after,
.alist-grid a::after,
.sports-grid a::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .42));
    content: "";
    inset: 0;
    position: absolute;
}

.event-grid span {
    bottom: 12px;
    color: #fff;
    font-size: 38px;
    font-style: italic;
    font-weight: 500;
    left: 0;
    line-height: .98;
    padding: 0 14px;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1;
}

.event-grid i,
.large-store-card i,
.wide-banner i {
    align-items: center;
    background: rgba(255, 255, 255, .86);
    border: 2px solid #6d3c59;
    bottom: 12px;
    color: #6d3c59;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    position: absolute;
    right: 10px;
    width: 28px;
    z-index: 2;
}

.event-grid i {
    bottom: auto;
    top: 10px;
}

.discover-rail {
    margin-top: 12px;
}

.brand-chip.color-discover-chip strong {
    border: 1px solid rgba(0, 0, 0, .18);
    color: transparent;
}

.summer-refresh {
    background: #dff4ff;
    margin-top: 28px;
    padding-bottom: 24px;
}

.summer-main {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.summer-copy {
    padding: 0 16px 18px;
}

.summer-copy h2 {
    font-size: 34px;
    line-height: 1;
    margin: 0 0 6px;
}

.summer-copy p {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.summer-picks {
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 26px;
}

.summer-picks a {
    border-radius: 8px;
    height: 238px;
    overflow: hidden;
    position: relative;
}

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

.summer-picks span {
    bottom: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.dark-brand-section {
    background: #c2cd31;
    margin-top: 22px;
    padding: 28px 18px 34px;
}

.dark-brand-section h2 {
    color: #fff;
    font-size: 30px;
    margin: 0 0 20px 6px;
}

.dark-card-rail {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.dark-card-rail a {
    background: #eee;
    border-radius: 12px;
    flex: 0 0 185px;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.dark-card-rail span,
.alist-grid span,
.sports-grid span {
    bottom: 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    left: 12px;
    position: absolute;
    right: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
    z-index: 1;
}

.sports-grid,
.alist-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sports-grid a,
.alist-grid a {
    border-radius: 8px;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.wide-banner,
.large-store-card {
    border-radius: 12px;
    display: block;
    overflow: hidden;
    position: relative;
}

.wide-banner {
    height: 210px;
    margin-top: 28px;
}

.store-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
}

.store-grid a {
    border-radius: 10px;
    height: 480px;
    overflow: hidden;
}

.director-section h2,
.alist-section h2 {
    font-size: 24px;
    font-weight: 900;
}

.large-store-card {
    height: 600px;
    margin-bottom: 30px;
}

.store-stack h2,
.mall-section h2 {
    margin-top: 6px;
}

.red-banner {
    height: 250px;
    margin: 10px 0 28px;
}

.front-page-hero {
    background: #fff;
    border-bottom: 1px solid #eeeeea;
    padding: 28px 24px;
}

.front-page-hero span {
    color: #df71e5;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.front-page-hero h1 {
    color: #111;
    font-size: 38px;
    line-height: .98;
    margin: 8px 0 10px;
}

.front-page-hero p {
    color: #76716f;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.shop-hero,
.shop-detail-hero,
.category-hero,
.category-detail-hero {
    background: linear-gradient(135deg, #fff, #fff6fb 48%, #f3ffe9);
}

.hero-mini-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-mini-meta strong {
    background: #fff;
    border: 1px solid #eee7ee;
    border-radius: 999px;
    color: #4d454d;
    display: inline-flex;
    font-size: 13px;
    gap: 7px;
    padding: 9px 12px;
}

.frontend-shop-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.frontend-shop-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    min-height: 330px;
    overflow: hidden;
    position: relative;
}

.frontend-shop-card img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.frontend-shop-card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .68));
    content: "";
    inset: 0;
    position: absolute;
}

.frontend-shop-card div {
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 16px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.frontend-shop-card span {
    color: #ffd6ff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.frontend-shop-card h3 {
    font-size: 24px;
    line-height: 1;
    margin: 7px 0;
}

.frontend-shop-card p {
    font-size: 13px;
    margin: 0;
}

.category-chip-section,
.frontend-product-section {
    padding: 28px 18px 0;
}

.category-chip-section h2,
.frontend-product-section h2 {
    font-size: 28px;
    line-height: 1;
    margin: 0 0 16px 6px;
}

.frontend-chip-rail {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.frontend-chip-rail a,
.frontend-chip-rail button {
    background: #fff;
    border: 1px solid #e7e3df;
    border-radius: 999px;
    color: #2b2929;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 900;
    padding: 10px 14px;
}

.frontend-product-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.front-product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.front-product-image {
    aspect-ratio: 3 / 4;
    background: #f3f3f3;
    display: block;
    overflow: hidden;
    position: relative;
}

.front-product-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.front-product-image.no-product-image {
    align-items: center;
    background: #f7f7f2;
    color: #222;
    display: flex;
    justify-content: center;
    padding: 14px;
    text-align: center;
}

.front-product-image.no-product-image strong {
    font-size: 14px;
    line-height: 1.35;
}

.front-product-image span {
    background: rgba(17, 17, 17, .86);
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    left: 8px;
    padding: 6px 8px;
    position: absolute;
    top: 8px;
}

.front-product-body {
    padding: 11px;
}

.front-product-body p {
    color: #df71e5;
    font-size: 11px;
    font-weight: 900;
    margin: 0 0 5px;
}

.front-product-body a {
    color: #1c1c1c;
    display: block;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    min-height: 35px;
}

.front-product-body div {
    align-items: baseline;
    display: flex;
    gap: 7px;
    margin-top: 8px;
}

.front-product-body strong {
    font-size: 15px;
}

.front-product-body del {
    color: #888;
    font-size: 12px;
}

.empty-state {
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 10px;
    color: #777;
    grid-column: 1 / -1;
    padding: 24px;
    text-align: center;
}

.product-detail-media {
    background: #f8f8f8;
    position: relative;
}

.product-detail-media img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
}

.product-detail-media span {
    background: #111;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    left: 18px;
    padding: 8px 12px;
    position: absolute;
    top: 18px;
}

.product-detail-body {
    background: #fff;
    padding: 22px 20px 0;
}

.product-detail-body > p:first-child {
    color: #df71e5;
    font-size: 13px;
    font-weight: 900;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.product-detail-body h1 {
    font-size: 34px;
    line-height: 1;
    margin: 0 0 12px;
}

.product-detail-price {
    align-items: baseline;
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.product-detail-price strong {
    font-size: 26px;
}

.product-detail-price del {
    color: #888;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-badges span {
    background: #fff6fb;
    border: 1px solid #f2d6f3;
    border-radius: 999px;
    color: #5a365c;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
}

.product-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 18px 0 0;
}

.zilo-product-page {
    max-width: 1180px;
}

.zilo-product-layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr);
    padding: 20px 18px 8px;
}

.zilo-product-gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zilo-product-media-tile {
    background: #f7f6f1;
    margin: 0;
    min-height: 0;
    position: relative;
}

.zilo-product-media-tile img,
.zilo-product-media-tile video {
    aspect-ratio: 3 / 4.15;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.zilo-product-media-tile span {
    background: rgba(255, 255, 255, .95);
    border-radius: 999px;
    bottom: 12px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    left: 12px;
    padding: 7px 10px;
    position: absolute;
}

.zilo-product-media-tile.video-tile {
    grid-column: 1 / -1;
}

.zilo-product-media-tile.video-tile video {
    aspect-ratio: 16 / 9;
}

.zilo-product-summary {
    align-self: start;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    position: sticky;
    top: 14px;
}

.zilo-brand-link {
    color: var(--muted);
    display: inline-block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 8px;
    text-decoration: underline;
}

.zilo-product-summary h1 {
    color: var(--ink);
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 14px;
}

.zilo-price-row {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.zilo-price-row del {
    color: var(--muted);
    font-size: 16px;
}

.zilo-price-row strong {
    color: var(--ink);
    font-size: 24px;
    font-weight: 950;
}

.zilo-price-row span {
    color: #d24d2c;
    font-size: 13px;
    font-weight: 900;
}

.zilo-offer-card {
    align-items: center;
    background: #fff6e8;
    border: 1px solid #f2dfbd;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
}

.zilo-offer-card i {
    align-items: center;
    background: #fff;
    border-radius: 8px;
    color: #e06b32;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.zilo-offer-card strong,
.zilo-offer-card span {
    display: block;
}

.zilo-offer-card strong {
    font-size: 14px;
}

.zilo-offer-card span {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.zilo-size-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.zilo-size-head h2,
.zilo-services-card h2 {
    font-size: 16px;
    margin: 0;
}

.zilo-size-head a {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
}

.zilo-size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.zilo-size-grid label {
    cursor: pointer;
}

.zilo-size-grid input {
    position: absolute;
    opacity: 0;
}

.zilo-size-grid span {
    align-items: center;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 950;
    height: 44px;
    justify-content: center;
    min-width: 54px;
    padding: 0 14px;
}

.zilo-size-grid input:checked + span {
    border-color: var(--ink);
    box-shadow: inset 0 0 0 1px var(--ink);
}

.zilo-size-grid label.disabled {
    cursor: not-allowed;
    opacity: .45;
}

.zilo-add-form button {
    align-items: center;
    background: var(--ink);
    border: 0;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 950;
    justify-content: space-between;
    margin: 14px 0;
    padding: 16px 18px;
    width: 100%;
}

.zilo-add-form button span {
    color: var(--accent-soft);
    font-size: 13px;
    text-transform: uppercase;
}

.zilo-add-form button:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.zilo-services-card {
    border-top: 1px solid var(--line);
    margin-top: 18px;
    padding-top: 18px;
}

.zilo-services-card > div:not(.zilo-service-icons) {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.zilo-services-card a {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
}

.zilo-service-icons {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
}

.zilo-service-icons span {
    align-items: center;
    background: #fafafa;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    padding: 10px;
}

.zilo-product-details-flow {
    padding-top: 12px;
}

.hidden-legacy-variant-section {
    display: none;
}

.zilo-product-mobile-page {
    background: #fffef7;
    box-shadow: 0 0 28px rgba(0, 0, 0, .12);
    max-width: 532px;
    padding-bottom: 106px;
}

.product-app-header {
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e9e9df;
    display: flex;
    height: 56px;
    justify-content: space-between;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 60;
}

.product-app-header a {
    color: #080808;
    text-decoration: none;
}

.product-app-header > a:first-child,
.product-app-header div a {
    align-items: center;
    display: inline-flex;
    font-size: 24px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.product-app-header div {
    display: flex;
    gap: 8px;
}

.product-app-logo {
    color: var(--accent) !important;
    font-size: 20px;
    font-weight: 950;
    margin-right: auto;
    padding-left: 4px;
}

.product-hero-card {
    background: #fffef7;
    padding: 20px 20px 76px;
    position: relative;
}

.product-main-media {
    aspect-ratio: 3 / 4;
}

.product-hero-image,
.product-hero-video {
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-float-actions {
    display: grid;
    gap: 10px;
    position: absolute;
    right: 32px;
    top: 44px;
    z-index: 2;
}

.product-float-actions a,
.product-float-actions button {
    align-items: center;
    background: #fff;
    border: 0;
    border-radius: 8px;
    color: #050505;
    display: inline-flex;
    font-size: 22px;
    height: 40px;
    justify-content: center;
    text-decoration: none;
    width: 40px;
}

.product-thumb-strip {
    align-items: center;
    bottom: 24px;
    display: flex;
    gap: 14px;
    justify-content: center;
    left: 20px;
    position: absolute;
    right: 20px;
}

.product-thumb-strip button {
    background: #fff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .1);
    height: 96px;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 78px;
}

.product-thumb-strip button.active {
    outline: 2px solid #fff;
}

.product-thumb-strip img,
.product-thumb-strip video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-thumb-strip .video-thumb i {
    align-items: center;
    background: rgba(0, 0, 0, .62);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
}

.product-mobile-flow {
    display: grid;
    gap: 26px;
    padding: 0 20px 24px;
}

.product-price-card,
.product-size-card,
.product-accordion-card,
.delivery-service-card {
    background: #fff;
    border: 1px solid #efc8f8;
    border-radius: 22px;
    overflow: hidden;
}

.product-price-card > div:first-child {
    padding: 18px 26px;
}

.product-price-card strong {
    color: #080808;
    display: block;
    font-size: 15px;
    font-weight: 950;
}

.product-price-card h1 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    margin: 8px 0 10px;
}

.product-price-card p {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
}

.product-price-card del {
    color: #4b4b4b;
    font-size: 14px;
}

.product-price-card p b {
    color: #050505;
    font-size: 22px;
}

.product-price-card p span {
    color: #e46400;
    font-size: 14px;
}

.product-coupon-row {
    align-items: center;
    border-top: 1px solid #efc8f8;
    display: grid;
    gap: 16px;
    grid-template-columns: 42px 1fr auto;
    padding: 28px 30px;
}

.product-coupon-row > span {
    align-items: center;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    display: inline-flex;
    font-size: 20px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.product-coupon-row p {
    display: block;
    font-size: 18px;
}

.product-coupon-row p strong {
    color: #007a43;
    display: inline;
    font-size: 18px;
}

.product-coupon-row > b {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    padding: 12px 16px;
}

.product-size-card {
    padding-top: 28px;
}

.fashion-row {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 1fr;
    padding: 0 38px 28px;
}

.fashion-row strong {
    color: var(--accent);
    display: block;
    font-size: 22px;
    line-height: .9;
}

.fashion-row em {
    font-size: 34px;
    font-style: normal;
}

.fashion-row p {
    font-size: 18px;
    line-height: 1.45;
    margin: 0;
}

.size-title-row {
    align-items: center;
    border-top: 1px solid #efc8f8;
    display: flex;
    justify-content: space-between;
    padding: 30px 26px 16px;
}

.size-title-row h2 {
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
}

.size-title-row a {
    color: #050505;
    font-size: 14px;
}

.product-size-options {
    padding: 0 26px 24px;
}

.product-accordion-card {
    padding: 0;
}

.product-accordion-card summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 20px;
    font-weight: 800;
    justify-content: space-between;
    list-style: none;
    padding: 30px 22px;
}

.product-accordion-card summary::-webkit-details-marker {
    display: none;
}

.product-accordion-card summary::after {
    content: "+";
    font-size: 34px;
    font-weight: 300;
}

.product-accordion-card[open] summary::after {
    content: "-";
}

.mobile-spec-grid {
    display: grid;
    gap: 26px 40px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 22px 30px;
}

.mobile-spec-grid span {
    color: #59606d;
    display: block;
    font-size: 15px;
    line-height: 1.2;
}

.mobile-spec-grid strong {
    color: #131313;
    display: block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    margin-top: 6px;
}

.product-accordion-card > p {
    color: #343434;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0 22px 28px;
}

.delivery-service-card {
    padding: 22px 26px 28px;
}

.delivery-service-card h2,
.similar-mobile-section h2 {
    font-size: 16px;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.deliver-row {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 18px 1fr auto;
}

.deliver-row i,
.deliver-row a,
.service-icon-row i,
.delivery-time-row i {
    color: #e172e9;
}

.deliver-row strong,
.deliver-row span {
    display: block;
}

.deliver-row strong {
    font-size: 16px;
}

.deliver-row span {
    color: #59606d;
    font-size: 13px;
    margin-top: 5px;
}

.deliver-row a {
    font-size: 13px;
    text-decoration: none;
}

.delivery-time-row {
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    font-size: 19px;
    margin: 18px 0 20px;
    padding: 14px;
}

.delivery-time-row strong {
    color: #e172e9;
    font-size: 15px;
}

.service-icon-row {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.service-icon-row i {
    align-items: center;
    background: #fafafa;
    border-radius: 6px;
    display: inline-flex;
    font-size: 30px;
    height: 86px;
    justify-content: center;
    margin-bottom: 14px;
    width: 86px;
}

.service-icon-row button {
    background: transparent;
    border: 0;
    color: #050505;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.service-icon-row a,
.service-icon-row strong,
.service-icon-row span {
    color: #050505;
    display: block;
    font-size: 19px;
    font-weight: 600;
}

.service-icon-row a {
    color: #e172e9;
    text-decoration: underline;
}

.service-modal-open {
    overflow: hidden;
}

.service-modal-overlay {
    align-items: flex-end;
    background: rgba(0, 0, 0, .38);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 120;
}

.service-modal-overlay[hidden] {
    display: none;
}

.service-modal-sheet {
    background: #fff;
    border-radius: 8px 8px 0 0;
    max-width: 532px;
    padding: 16px 20px 20px;
    width: 100%;
}

.service-modal-handle {
    background: #cfd3da;
    border-radius: 999px;
    display: block;
    height: 6px;
    margin: 0 auto 36px;
    width: 58px;
}

.service-modal-sheet h2 {
    color: #201b24;
    font-size: 24px;
    margin: 0 0 26px;
}

.service-modal-body {
    display: grid;
    gap: 30px;
    padding-bottom: 34px;
}

.service-modal-item {
    display: grid;
    gap: 18px;
    grid-template-columns: 28px 1fr;
}

.service-modal-item i {
    color: #e172e9;
    font-size: 27px;
    padding-top: 2px;
    text-align: center;
}

.service-modal-item strong {
    color: #201b24;
    display: block;
    font-size: 21px;
    line-height: 1.2;
}

.service-modal-item p {
    color: #27252a;
    font-size: 15px;
    line-height: 1.55;
    margin: 10px 0 0;
}

.service-modal-sheet button[data-service-modal-close] {
    background: #050505;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    height: 60px;
    width: 100%;
}

.similar-mobile-section {
    overflow: hidden;
}

.similar-mobile-rail {
    display: flex;
    gap: 38px;
    overflow-x: auto;
    padding-bottom: 12px;
}

.similar-mobile-rail a {
    color: #050505;
    flex: 0 0 212px;
    position: relative;
    text-decoration: none;
}

.similar-mobile-rail img {
    aspect-ratio: 1 / 1.25;
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
}

.zilo-product-mobile-page .product-hero-card {
    padding: 10px 12px 50px;
}

.zilo-product-mobile-page .product-hero-image {
    border-radius: 12px;
    max-height: 420px;
}

.zilo-product-mobile-page .product-float-actions {
    gap: 6px;
    right: 20px;
    top: 24px;
}

.zilo-product-mobile-page .product-float-actions a,
.zilo-product-mobile-page .product-float-actions button {
    font-size: 16px;
    height: 32px;
    width: 32px;
}

.zilo-product-mobile-page .product-thumb-strip {
    bottom: 12px;
    gap: 8px;
    left: 12px;
    right: 12px;
}

.zilo-product-mobile-page .product-thumb-strip button {
    border-radius: 8px;
    height: 64px;
    width: 52px;
}

.zilo-product-mobile-page .product-mobile-flow {
    gap: 12px;
    padding: 0 12px 18px;
}

.zilo-product-mobile-page .product-price-card,
.zilo-product-mobile-page .product-size-card,
.zilo-product-mobile-page .product-accordion-card,
.zilo-product-mobile-page .delivery-service-card {
    border-radius: 12px;
}

.zilo-product-mobile-page .product-price-card > div:first-child {
    padding: 12px 14px;
}

.zilo-product-mobile-page .product-price-card strong {
    font-size: 12px;
}

.zilo-product-mobile-page .product-price-card h1 {
    font-size: 13px;
    margin: 5px 0 7px;
}

.zilo-product-mobile-page .product-price-card p b {
    font-size: 18px;
}

.zilo-product-mobile-page .product-price-card del,
.zilo-product-mobile-page .product-price-card p span {
    font-size: 12px;
}

.zilo-product-mobile-page .product-coupon-row {
    gap: 8px;
    grid-template-columns: 30px 1fr auto;
    padding: 12px 14px;
}

.zilo-product-mobile-page .product-coupon-row > span {
    font-size: 14px;
    height: 30px;
    width: 30px;
}

.zilo-product-mobile-page .product-coupon-row p,
.zilo-product-mobile-page .product-coupon-row p strong,
.zilo-product-mobile-page .product-coupon-row > b {
    font-size: 12px;
}

.zilo-product-mobile-page .product-coupon-row > b {
    padding: 8px 10px;
}

.zilo-product-mobile-page .product-size-card {
    padding-top: 12px;
}

.zilo-product-mobile-page .fashion-row {
    gap: 12px;
    padding: 0 16px 12px;
}

.zilo-product-mobile-page .fashion-row strong {
    font-size: 16px;
}

.zilo-product-mobile-page .fashion-row em {
    font-size: 24px;
}

.zilo-product-mobile-page .fashion-row p {
    font-size: 13px;
}

.zilo-product-mobile-page .size-title-row {
    padding: 14px 14px 10px;
}

.zilo-product-mobile-page .size-title-row h2,
.zilo-product-mobile-page .delivery-service-card h2,
.zilo-product-mobile-page .similar-mobile-section h2 {
    font-size: 13px;
}

.zilo-product-mobile-page .size-title-row a {
    font-size: 12px;
}

.zilo-product-mobile-page .product-size-options {
    padding: 0 14px 14px;
}

.zilo-product-mobile-page .product-accordion-card summary {
    font-size: 15px;
    padding: 16px 14px;
}

.zilo-product-mobile-page .product-accordion-card summary::after {
    font-size: 24px;
}

.zilo-product-mobile-page .mobile-spec-grid {
    gap: 12px 14px;
    padding: 0 14px 16px;
}

.zilo-product-mobile-page .mobile-spec-grid span {
    font-size: 11px;
}

.zilo-product-mobile-page .mobile-spec-grid strong {
    font-size: 13px;
    margin-top: 3px;
}

.zilo-product-mobile-page .product-accordion-card > p {
    font-size: 13px;
    padding: 0 14px 16px;
}

.zilo-product-mobile-page .delivery-service-card {
    padding: 14px;
}

.zilo-product-mobile-page .delivery-service-card h2 {
    margin-bottom: 12px;
}

.zilo-product-mobile-page .deliver-row {
    gap: 8px;
}

.zilo-product-mobile-page .deliver-row strong {
    font-size: 13px;
}

.zilo-product-mobile-page .deliver-row span,
.zilo-product-mobile-page .deliver-row a {
    font-size: 11px;
}

.zilo-product-mobile-page .delivery-time-row {
    font-size: 14px;
    margin: 12px 0;
    padding: 10px;
}

.zilo-product-mobile-page .service-icon-row {
    gap: 10px;
}

.zilo-product-mobile-page .service-icon-row i {
    font-size: 20px;
    height: 48px;
    margin-bottom: 8px;
    width: 48px;
}

.zilo-product-mobile-page .service-icon-row a,
.zilo-product-mobile-page .service-icon-row strong,
.zilo-product-mobile-page .service-icon-row span {
    font-size: 12px;
}

.zilo-product-mobile-page .similar-mobile-rail {
    gap: 14px;
}

.zilo-product-mobile-page .similar-mobile-rail a {
    flex-basis: 145px;
}

.similar-mobile-rail a > span {
    font-size: 26px;
    position: absolute;
    right: 14px;
    top: 12px;
}

.similar-mobile-rail strong {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    margin-top: 8px;
}

.product-sticky-bar {
    align-items: center;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid #e6e6e6;
    bottom: 0;
    display: grid;
    gap: 14px;
    grid-template-columns: 104px 1fr;
    left: 50%;
    max-width: 532px;
    padding: 20px;
    position: fixed;
    transform: translateX(-50%);
    width: 100%;
    z-index: 80;
}

.product-sticky-bar div {
    background: #f8f8f8;
    border-radius: 6px;
    padding: 12px 8px;
    text-align: center;
}

.product-sticky-bar div i {
    color: #e172e9;
    margin-right: 4px;
}

.product-sticky-bar div strong,
.product-sticky-bar div span {
    display: inline-block;
}

.product-sticky-bar div strong {
    font-size: 16px;
}

.product-sticky-bar div span {
    color: #4b4b4b;
    font-size: 13px;
    width: 100%;
}

.product-sticky-bar button {
    background: #050505;
    border: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    height: 72px;
}

.product-sticky-bar button:disabled {
    opacity: .55;
}

.zilo-product-mobile-page {
    background: #fffef7;
}

.zilo-product-mobile-page .product-app-header {
    border-bottom: 1px solid #f0f0e8;
    height: 54px;
    padding: 0 14px;
}

.zilo-product-mobile-page .product-app-header > a:first-child,
.zilo-product-mobile-page .product-app-header div a {
    font-size: 25px;
    height: 36px;
    width: 36px;
}

.zilo-product-mobile-page .product-app-logo {
    color: #b8c50b !important;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: 0;
}

.zilo-product-mobile-page .product-cart-link {
    position: relative;
}

.zilo-product-mobile-page .product-cart-link span {
    align-items: center;
    background: #e783e7;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    height: 21px;
    justify-content: center;
    position: absolute;
    right: -3px;
    top: -4px;
    width: 21px;
}

.zilo-product-mobile-page .product-hero-card {
    padding: 4px 13px 94px;
}

.zilo-product-mobile-page .product-main-media {
    aspect-ratio: auto;
    height: clamp(560px, calc(100vh - 150px), 680px);
}

.zilo-product-mobile-page .product-hero-image,
.zilo-product-mobile-page .product-hero-video {
    border-radius: 24px;
    max-height: none;
}

.zilo-product-mobile-page .product-float-actions {
    gap: 10px;
    right: 42px;
    top: 28px;
}

.zilo-product-mobile-page .product-float-actions a,
.zilo-product-mobile-page .product-float-actions button {
    border-radius: 8px;
    box-shadow: none;
    font-size: 22px;
    height: 42px;
    width: 42px;
}

.zilo-product-mobile-page .product-thumb-strip {
    bottom: 26px;
    gap: 18px;
    left: 92px;
    right: 92px;
}

.zilo-product-mobile-page .product-thumb-strip button {
    border: 3px solid #fffef7;
    border-radius: 13px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
    height: 108px;
    width: 70px;
}

.zilo-product-mobile-page .product-thumb-strip button.active {
    transform: translateY(8px);
}

.zilo-product-mobile-page .product-sticky-bar {
    border-top-color: #eeeeef;
    gap: 14px;
    grid-template-columns: 102px 1fr;
    padding: 20px 13px;
}

.zilo-product-mobile-page .product-sticky-bar div {
    min-height: 61px;
    padding: 10px 6px;
}

.zilo-product-mobile-page .product-sticky-bar button {
    border-radius: 5px;
    font-size: 17px;
    height: 61px;
}

@media (max-width: 430px) {
    .zilo-product-mobile-page .product-main-media {
        height: clamp(500px, calc(100vh - 150px), 640px);
    }

    .zilo-product-mobile-page .product-thumb-strip {
        gap: 12px;
        left: 70px;
        right: 70px;
    }

    .zilo-product-mobile-page .product-thumb-strip button {
        height: 92px;
        width: 62px;
    }
}

@media (max-width: 820px) {
    .zilo-product-page {
        max-width: 640px;
    }

    .zilo-product-layout {
        grid-template-columns: 1fr;
    }

    .zilo-product-summary {
        position: static;
    }
}

.product-info-card {
    border: 1px solid #d8d8d8;
    border-radius: 28px;
    margin: 22px 0;
    padding: 28px;
}

.product-spec-grid {
    display: grid;
    gap: 26px 42px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-spec-grid div {
    min-width: 0;
}

.product-spec-grid strong,
.product-info-block h2,
.product-info-block h3,
.product-info-card > h2 {
    color: #242638;
    display: block;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
}

.product-spec-grid span,
.product-info-block p {
    color: #343644;
    display: block;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.28;
    margin: 6px 0 0;
}

.product-info-block {
    margin-top: 42px;
}

.product-info-block h2,
.product-info-block h3,
.product-info-card > h2 {
    margin: 0 0 12px;
}

.product-info-block p {
    margin: 0;
}

@media (max-width: 520px) {
    .product-info-card {
        border-radius: 22px;
        padding: 22px;
    }

    .product-spec-grid {
        gap: 22px 24px;
    }

    .product-spec-grid strong,
    .product-info-block h2,
    .product-info-block h3,
    .product-info-card > h2 {
        font-size: 21px;
    }

    .product-spec-grid span,
    .product-info-block p {
        font-size: 19px;
    }
}

.variant-section {
    margin-top: 24px;
}

.variant-section h2 {
    font-size: 22px;
    margin: 0 0 12px;
}

.stock-line {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 7px;
    margin: 8px 0 4px;
    padding: 7px 10px;
}

.stock-line.available {
    background: #eefbf3;
    color: #166534;
}

.stock-line.empty {
    background: #fff1f2;
    color: #be123c;
}

.product-rating-line {
    align-items: center;
    color: #6b5b26;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.product-rating-line span,
.review-card span,
.review-status-chip span {
    color: #f59e0b;
    display: inline-flex;
    gap: 2px;
}

.product-rating-line strong {
    color: #111827;
    font-size: 14px;
}

.product-rating-line em {
    color: #6b7280;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

.variant-choice-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.variant-choice {
    cursor: pointer;
    display: block;
    position: relative;
}

.variant-choice input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.variant-choice span {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 62px;
    padding: 11px 12px;
}

.variant-choice strong {
    color: #111827;
    font-size: 14px;
}

.variant-choice small {
    color: #6b7280;
    font-size: 12px;
}

.variant-choice input:checked + span {
    border-color: #d85ad9;
    box-shadow: 0 0 0 2px rgba(216, 90, 217, .14);
}

.variant-choice.disabled {
    cursor: not-allowed;
}

.variant-choice.disabled span {
    background: #f3f4f6;
    color: #9ca3af;
    text-decoration: line-through;
}

.field-error-text {
    color: #be123c;
    font-size: 13px;
    font-weight: 700;
    margin: -2px 0 10px;
}

.sticky-add-btn {
    background: #111;
    border: 0;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
    margin-top: 24px;
    min-height: 52px;
    width: 100%;
}

.product-return-note {
    background: #fff9e8;
    border: 1px solid #efe0a8;
    border-radius: 10px;
    color: #4a3b12;
    display: grid;
    gap: 4px;
    margin-top: 22px;
    padding: 14px;
}

.product-return-note strong {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-return-note span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.product-add-form,
.quick-add-form {
    margin: 0;
}

.quick-add-form button {
    align-items: center;
    background: #111;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
    min-height: 36px;
    width: 100%;
}

.wishlist-toggle-form {
    margin: 0;
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 2;
}

.wishlist-toggle-form button {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border: 1px solid #eee;
    border-radius: 999px;
    color: #777;
    cursor: pointer;
    display: flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.wishlist-toggle-form button.active {
    color: #df71e5;
}

.search-filter-card .front-btn {
    width: 100%;
}

.search-checks,
.inline-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-checks label,
.inline-filter-bar label {
    align-items: center;
    background: #f7f7f7;
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    padding: 9px 11px;
}

.inline-filter-bar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 10px;
}

.inline-filter-bar select,
.inline-filter-bar button {
    border: 1px solid #ddd;
    border-radius: 8px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    min-height: 38px;
    padding: 0 10px;
}

.inline-filter-bar button {
    background: #111;
    color: #fff;
    cursor: pointer;
}

.compact-products {
    padding: 0;
}

.section-row-title {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.section-row-title h2 {
    margin: 0;
}

.section-row-title a {
    color: #df71e5;
    font-size: 13px;
    font-weight: 900;
}
/* ================= FRONT PAGINATION ================= */

.front-pagination {
    width: 100%;
    padding: 22px 14px 92px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Laravel default pagination wrapper */
.front-pagination nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Laravel ul */
.front-pagination .pagination {
    margin: 0;
    padding: 8px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 7px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top left, rgba(196, 99, 232, 0.10), transparent 35%),
        #ffffff;
    border: 1px solid rgba(20, 19, 22, 0.08);
    box-shadow: 0 14px 34px rgba(38, 20, 48, 0.10);
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 100%;
}

.front-pagination .pagination::-webkit-scrollbar {
    display: none;
}

/* Page item */
.front-pagination .page-item {
    flex: 0 0 auto;
}

/* Page link */
.front-pagination .page-link {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fbf8ff;
    color: #141316;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(20, 19, 22, 0.06);
    transition: all 0.3s ease;
}

/* Hover */
.front-pagination .page-link:hover {
    background: linear-gradient(135deg, #8f35c7 0%, #c463e8 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(196, 99, 232, 0.24);
}

/* Active */
.front-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #8f35c7 0%, #c463e8 100%);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(196, 99, 232, 0.30);
}

/* Disabled */
.front-pagination .page-item.disabled .page-link {
    opacity: 0.45;
    pointer-events: none;
    background: #f3f0f7;
    color: #9b94a8;
}

/* Previous / Next button */
.front-pagination .page-item:first-child .page-link,
.front-pagination .page-item:last-child .page-link {
    width: auto;
    min-width: 42px;
    padding: 0 13px;
    font-size: 12px;
}

/* SVG icons if Laravel Tailwind pagination comes */
.front-pagination svg {
    width: 16px;
    height: 16px;
}

/* Tailwind default pagination fix */
.front-pagination .hidden {
    display: none !important;
}

.front-pagination p {
    display: none;
}

/* Laravel Tailwind span/a reset */
.front-pagination a,
.front-pagination span {
    text-decoration: none;
}

/* Mobile small */
@media (max-width: 360px) {
    .front-pagination {
        padding-left: 10px;
        padding-right: 10px;
    }

    .front-pagination .pagination {
        gap: 5px;
        padding: 7px;
    }

    .front-pagination .page-link {
        width: 32px;
        height: 32px;
        border-radius: 12px;
        font-size: 12px;
    }

    .front-pagination .page-item:first-child .page-link,
    .front-pagination .page-item:last-child .page-link {
        min-width: 38px;
        padding: 0 10px;
    }
}

.document-page {
    background: #f5f6f8;
}

.document-shell {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.document-market-header {
    align-items: flex-start;
    background: linear-gradient(135deg, #8f35c7 0%, #c463e8 100%);
    color: #fff;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 22px;
}

.receipt-document.paid .document-market-header {
    background: linear-gradient(135deg, #064e3b 0%, #0f766e 55%, #14b8a6 100%);
}

.receipt-document.refund .document-market-header {
    background: linear-gradient(135deg, #7c2d12 0%, #b45309 58%, #f59e0b 100%);
}

.payment-document .document-market-header {
    background: linear-gradient(135deg, #172554 0%, #1d4ed8 58%, #06b6d4 100%);
}

.document-eyebrow,
.document-address-grid span,
.document-note-box span {
    color: #0f766e;
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.document-market-header .document-eyebrow {
    color: #a7f3d0;
}

.document-market-header h1 {
    font-size: 28px;
    line-height: 1.08;
    margin: 0 0 7px;
    word-break: break-word;
}

.document-market-header p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.document-print-btn,
.payment-lock {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 900;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
}

.document-print-btn {
    cursor: pointer;
}

.payment-lock {
    height: 44px;
    justify-content: center;
    padding: 0;
    width: 44px;
}

.document-status-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #e8eaf0;
}

.document-status-strip.document-status-strip-two {
    grid-template-columns: repeat(2, 1fr);
}

.document-status-strip > div {
    border-right: 1px solid #e8eaf0;
    display: grid;
    gap: 5px;
    min-width: 0;
    padding: 14px;
}

.document-status-strip > div:last-child {
    border-right: 0;
}

.document-status-strip span {
    color: #667085;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.document-status-strip strong {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.doc-badge {
    align-items: center;
    background: #eef2ff;
    border-radius: 999px;
    color: #3730a3 !important;
    display: inline-flex;
    justify-content: center;
    justify-self: start;
    min-height: 26px;
    padding: 0 10px;
}

.doc-badge.success {
    background: #dcfce7;
    color: #166534 !important;
}

.doc-badge.warning {
    background: #fef3c7;
    color: #92400e !important;
}

.document-address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
}

.document-address-grid article {
    background: #f8fafc;
    border: 1px solid #edf0f5;
    border-radius: 8px;
    min-width: 0;
    padding: 14px;
}

.document-address-grid strong {
    color: #111827;
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.document-address-grid p,
.document-note-box p,
.receipt-proof-card p,
.payment-method-head p,
.payment-demo-card p {
    color: #667085;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.5;
    margin: 0;
    overflow-wrap: anywhere;
}

.document-table-wrap {
    overflow-x: auto;
    padding: 0 16px 16px;
}

.document-table {
    border-collapse: collapse;
    min-width: 560px;
    width: 100%;
}

.document-table th {
    background: #f1f5f9;
    color: #475467;
    font-size: 11px;
    font-weight: 900;
    padding: 11px 12px;
    text-align: left;
    text-transform: uppercase;
}

.document-table td {
    border-bottom: 1px solid #eef2f6;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
    padding: 13px 12px;
    vertical-align: top;
}

.document-table td strong {
    color: #111827;
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.document-table td span {
    color: #667085;
    display: block;
    font-size: 12px;
}

.document-table .right {
    text-align: right;
}

.document-table .strong {
    color: #111827;
    font-weight: 900;
}

.document-bottom-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 240px;
    padding: 0 16px 16px;
}

.document-note-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 14px;
}

.document-total-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 8px;
    overflow: hidden;
}

.document-total-card.full {
    margin: 0 16px 16px;
}

.document-total-card div {
    align-items: center;
    border-bottom: 1px solid #eef2f6;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px 14px;
}

.document-total-card div:last-child {
    border-bottom: 0;
}

.document-total-card span {
    color: #667085;
    font-size: 12px;
    font-weight: 850;
}

.document-total-card strong {
    color: #111827;
    font-size: 13px;
    font-weight: 950;
    text-align: right;
    overflow-wrap: anywhere;
}

.document-total-card .grand {
    background: #111827;
}

.document-total-card .grand span,
.document-total-card .grand strong {
    color: #fff;
    font-size: 15px;
}

.document-footer-note {
    align-items: center;
    background: #f8fafc;
    border-top: 1px solid #e8eaf0;
    color: #667085;
    display: flex;
    gap: 10px;
    padding: 13px 16px;
}

.document-footer-note i {
    color: #0f766e;
}

.document-footer-note span {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.receipt-proof-card {
    align-items: center;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    margin: 0 16px 16px;
    padding: 16px;
}

.receipt-document.refund .receipt-proof-card {
    background: #fff7ed;
    border-color: #fed7aa;
}

.receipt-check-icon {
    align-items: center;
    background: #16a34a;
    border-radius: 999px;
    color: #fff;
    display: flex;
    flex: 0 0 auto;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.receipt-document.refund .receipt-check-icon {
    background: #ea580c;
}

.receipt-proof-card span {
    color: #166534;
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.receipt-document.refund .receipt-proof-card span {
    color: #9a3412;
}

.receipt-proof-card strong {
    color: #111827;
    display: block;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 6px;
}

.payment-method-panel {
    border-bottom: 1px solid #e8eaf0;
    padding: 16px;
}

.payment-method-head {
    align-items: center;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    display: grid;
    gap: 12px;
    grid-template-columns: 42px 1fr auto;
    padding: 14px;
}

.payment-method-head > span {
    align-items: center;
    background: #dbeafe;
    border-radius: 8px;
    color: #1d4ed8;
    display: flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.payment-method-head strong {
    color: #111827;
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.payment-method-head em {
    background: #ecfeff;
    border-radius: 999px;
    color: #0e7490;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    padding: 7px 9px;
}

.payment-provider-row {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 12px;
}

.payment-provider-row span {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #edf0f5;
    border-radius: 8px;
    color: #475467;
    display: flex;
    font-size: 12px;
    font-weight: 900;
    gap: 7px;
    justify-content: center;
    min-height: 38px;
}

.payment-demo-card {
    background: #101828;
    border-radius: 8px;
    color: #fff;
    display: grid;
    gap: 12px;
    margin: 0 16px 16px;
    padding: 18px;
}

.payment-demo-card h2 {
    font-size: 20px;
    margin: 0;
}

.payment-demo-card > i {
    color: #67e8f9;
    font-size: 30px;
}

.payment-demo-card p {
    color: rgba(255, 255, 255, 0.72);
}

.payment-demo-card .front-btn {
    width: 100%;
}

.document-summary {
    position: static;
}

@media (max-width: 520px) {
    .document-market-header {
        padding: 18px;
    }

    .document-market-header h1 {
        font-size: 24px;
    }

    .document-status-strip {
        grid-template-columns: 1fr;
    }

    .document-status-strip.document-status-strip-two {
        grid-template-columns: 1fr;
    }

    .document-status-strip > div {
        border-right: 0;
    }

    .document-address-grid,
    .document-bottom-grid {
        grid-template-columns: 1fr;
    }

    .payment-method-head {
        grid-template-columns: 42px 1fr;
    }

    .payment-method-head em {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .payment-provider-row {
        grid-template-columns: 1fr;
    }
}

@media print {
    body {
        background: #fff;
    }

    .zilo-static-header,
    .zilo-mobile-header,
    .mobile-bottom-nav,
    .document-print-btn {
        display: none !important;
    }

    .zilo-mobile-page {
        background: #fff;
        box-shadow: none;
        max-width: none;
        padding-bottom: 0;
    }

    .front-flow-page {
        padding: 0;
    }

    .document-page {
        background: #fff;
    }

    .document-shell {
        border: 0;
        box-shadow: none;
    }

    .document-market-header {
        color-adjust: exact;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .document-table-wrap {
        overflow: visible;
    }
}

/* ================= STATIC PREMIUM ECOMMERCE HEADER ================= */
/* ================= VASTRA EXPRESS STYLE STATIC MOBILE APP HEADER ================= */

.zilo-static-header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

/* Top Header */
.zilo-header-top {
    height: 58px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.08), transparent 36%),
        #ffffff;
}

/* Logo */
.zilo-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111827;
    flex-shrink: 0;
}

.zilo-logo-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.10);
    flex-shrink: 0;
}

.zilo-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(1.18);
    display: block;
}

.zilo-logo-text {
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.5px;
    color: #111827;
    white-space: nowrap;
}

.zilo-logo-text strong {
    color: #7c3aed;
    font-weight: 900;
}
@media (max-width: 575px) {
    .zilo-logo-text {
        display: block;
    }

    .zilo-logo-img {
        width: 52px;
        height: 52px;
    }
}

/* Icons */
.zilo-header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon-link {
    position: relative;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #111827;
    background: #f8fafc;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
}

.header-icon-link i {
    font-size: 14px;
    line-height: 1;
}

.header-icon-link:hover {
    background: #7c3aed;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.24);
}

.icon-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    border-radius: 30px;
    background: #111827;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid #ffffff;
}

/* Category Nav */
.zilo-category-nav {
    height: 46px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 25px;
    overflow-x: auto;
    background: #ffffff;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.zilo-category-nav::-webkit-scrollbar {
    display: none;
}

.zilo-category-nav a {
    position: relative;
    text-decoration: none;
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 16px 0 14px;
    transition: all 0.3s ease;
}

.zilo-category-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.zilo-category-nav a:hover,
.zilo-category-nav a.active {
    color: #7c3aed;
}

.zilo-category-nav a:hover::after,
.zilo-category-nav a.active::after {
    width: 100%;
}

/* ================= SAME VIEW ON ALL DEVICES ================= */
/* Desktop/laptop par bhi mobile app width ke andar same rahega */

.zilo-app .zilo-static-header {
    max-width: 430px;
    margin: 0 auto;
}

/* ================= SMALL MOBILE FIX ================= */

@media (max-width: 360px) {
    .zilo-header-top {
        height: 54px;
        padding: 0 12px;
    }

    .zilo-logo {
        font-size: 15px;
        letter-spacing: 0.8px;
    }

    .zilo-header-icons {
        gap: 6px;
    }

    .header-icon-link {
        width: 31px;
        height: 31px;
    }

    .header-icon-link i {
        font-size: 13px;
    }

    .zilo-category-nav {
        height: 44px;
        padding: 0 12px;
        gap: 22px;
    }

    .zilo-category-nav a {
        font-size: 11px;
        letter-spacing: 0.8px;
    }
}



/* ================= HERO CAROUSEL SAME MOBILE STYLE ================= */

.zilo-hero-carousel {
    position: relative;
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
    padding: 28px 16px 46px;
    background:
        radial-gradient(circle at top right, rgba(124, 58, 237, 0.10), transparent 36%),
        linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.65s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #7c3aed;
}

.hero-content h1 {
    margin: 0;
    color: #10141f;
    font-size: 26px;
    line-height: 1.32;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content h1 strong {
    color: #10141f;
}

.hero-btn {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    min-width: 112px;
    padding: 0 18px;
    border-radius: 6px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(124, 58, 237, 0.25);
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.08);
    filter: blur(8px);
    z-index: 1;
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: 125px;
    height: 220px;
    object-fit: cover;
    object-position: top center;
    filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.16));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

.hero-dots {
    position: absolute;
    left: 16px;
    bottom: 24px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-dots button {
    width: 28px;
    height: 6px;
    border: 0;
    border-radius: 20px;
    background: rgba(17, 24, 39, 0.16);
    cursor: pointer;
}

.hero-dots button.active {
    width: 50px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

/* Sale slide */
.sale-slide {
    background:
        radial-gradient(circle at right, rgba(255, 255, 255, 0.48), transparent 35%),
        linear-gradient(135deg, #d98ca4 0%, #efb8c8 100%);
}

.sale-slide .hero-tag,
.sale-slide .hero-content h1,
.sale-slide .hero-content h1 strong {
    color: #ffffff;
}

.dark-btn {
    background: #111827;
}

/* Extra small phones */
@media (max-width: 360px) {
    .hero-slider {
        height: 365px;
    }

    .hero-content h1 {
        font-size: 23px;
        letter-spacing: 1.5px;
    }

    .hero-image img {
        width: 112px;
        height: 205px;
    }
}

.front-flow-page {
    display: grid;
    gap: 16px;
    padding: 18px 16px 104px;
}

.flow-heading {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.flow-heading span {
    color: #df71e5;
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.flow-heading h1 {
    font-size: 30px;
    line-height: 1;
    margin: 0 0 8px;
}

.flow-heading p {
    color: #666;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
}

.front-alert {
    background: #effaf1;
    border: 1px solid #cfead4;
    border-radius: 10px;
    color: #276232;
    font-size: 13px;
    font-weight: 900;
    padding: 12px 14px;
}

.front-alert.danger {
    background: #fff1f1;
    border-color: #ffd0d0;
    color: #9a2929;
}

.empty-bag-state {
    align-items: center;
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: grid;
    justify-items: center;
    padding: 34px 22px;
    text-align: center;
}

.empty-bag-state i {
    color: #df71e5;
    font-size: 34px;
}

.empty-bag-state h2 {
    font-size: 24px;
    margin: 14px 0 8px;
}

.empty-bag-state p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 18px;
}

.cart-list {
    display: grid;
    gap: 12px;
}

.cart-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: grid;
    gap: 12px;
    grid-template-columns: 92px 1fr;
    overflow: hidden;
    padding: 10px;
}

.cart-item img {
    aspect-ratio: 3 / 4;
    background: #f3f3f3;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.cart-item span {
    color: #df71e5;
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.cart-item h2 {
    font-size: 16px;
    line-height: 1.2;
    margin: 5px 0 7px;
}

.cart-item strong {
    font-size: 17px;
}

.cart-item p {
    color: #666;
    font-size: 13px;
    font-weight: 800;
    margin: 8px 0 0;
}

.cart-variant-line {
    color: #5b5560 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    margin: 4px 0 5px !important;
}

.delivery-type-section {
    display: grid;
    gap: 14px;
}

.delivery-type-section h2 {
    font-size: 25px;
    margin: 16px 0 0;
}

.delivery-type-grid {
    display: grid;
    gap: 14px;
}

.delivery-type-card {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
    cursor: pointer;
    display: grid;
    gap: 18px;
    grid-template-columns: 56px 220px 1fr;
    padding: 22px;
}

.delivery-type-card input {
    position: absolute;
    opacity: 0;
}

.delivery-check {
    border: 2px solid #c7c7c7;
    border-radius: 8px;
    height: 40px;
    width: 40px;
}

.delivery-type-card.active {
    border-color: #111;
}

.delivery-type-card.active .delivery-check {
    background: #111;
    border-color: #111;
    box-shadow: inset 0 0 0 9px #fff;
}

.delivery-type-card strong {
    color: #111;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}

.delivery-type-card ul {
    color: #555;
    display: grid;
    font-size: 15px;
    gap: 10px;
    line-height: 1.35;
    margin: 0;
    padding-left: 18px;
}

@media (max-width: 560px) {
    .delivery-type-card {
        grid-template-columns: 46px 1fr;
    }

    .delivery-type-card ul {
        grid-column: 2;
    }
}

.review-mini-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding: 12px;
}

.review-mini-form label {
    color: #5b5560;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 5px;
}

.review-mini-form input,
.review-mini-form select,
.review-mini-form textarea {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #111827;
    font-size: 14px;
    padding: 10px;
    width: 100%;
}

.review-status-chip {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #475569;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    margin-top: 12px;
    padding: 10px;
}

.review-list {
    display: grid;
    gap: 10px;
}

.review-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 13px;
}

.review-card > div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.review-card strong {
    color: #111827;
    font-size: 14px;
}

.review-card h3 {
    font-size: 15px;
    margin: 10px 0 4px;
}

.review-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.empty-review-state {
    background: #f8fafc;
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 800;
    padding: 18px;
    text-align: center;
}

.size-guide-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    display: grid;
    gap: 14px;
    margin-top: 22px;
    padding: 14px;
}

.size-guide-head {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.size-guide-head h2 {
    font-size: 19px;
    margin: 0 0 5px;
}

.size-guide-head p {
    color: #666;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

.size-guide-head i {
    align-items: center;
    background: #fff6fb;
    border-radius: 10px;
    color: #d85ad9;
    display: flex;
    flex: 0 0 38px;
    height: 38px;
    justify-content: center;
}

.size-chart-table {
    overflow-x: auto;
}

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

.size-chart-table th,
.size-chart-table td {
    border-bottom: 1px solid #eeeeee;
    font-size: 13px;
    padding: 10px 8px;
    text-align: left;
}

.size-chart-table th {
    color: #777;
    font-weight: 900;
}

.size-chart-table tr.suggested td {
    background: #fff6fb;
    color: #8f2b93;
    font-weight: 900;
}

.fit-reco-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: grid;
    gap: 10px;
    padding: 12px;
}

.fit-reco-box h3 {
    font-size: 15px;
    margin: 0;
}

.fit-reco-fields {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-reco-fields label {
    color: #5b5560;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 5px;
}

.fit-reco-fields input {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px;
    width: 100%;
}

.fit-reco-box button {
    background: #111;
    border: 0;
    border-radius: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    padding: 11px;
}

.fit-reco-box p {
    color: #666;
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.question-form {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
    padding: 13px;
}

.question-form label {
    color: #5b5560;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
}

.question-form textarea {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #111827;
    font-size: 14px;
    line-height: 1.45;
    padding: 10px;
    resize: vertical;
}

.question-form button {
    background: #111;
    border: 0;
    border-radius: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    padding: 11px;
}

.qa-list {
    display: grid;
    gap: 10px;
}

.qa-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    display: grid;
    gap: 9px;
    padding: 13px;
}

.qa-card div {
    align-items: flex-start;
    display: grid;
    gap: 9px;
    grid-template-columns: 28px 1fr;
}

.qa-card strong {
    align-items: center;
    background: #fff6fb;
    border-radius: 8px;
    color: #d85ad9;
    display: flex;
    font-size: 13px;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.qa-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin: 3px 0 0;
}

.personalized-section .frontend-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.personalized-section {
    background: #fffdf7;
    border-top: 1px solid #f2ead6;
    border-bottom: 1px solid #f2ead6;
}

.cart-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.cart-actions form:first-child {
    align-items: center;
    display: flex;
    gap: 8px;
}

.cart-actions label {
    align-items: center;
    color: #777;
    display: flex;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
}

.cart-actions input {
    border: 1px solid #ddd;
    border-radius: 8px;
    min-height: 34px;
    padding: 0 8px;
    width: 58px;
}

.cart-actions button {
    background: #f4f4f4;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    min-height: 34px;
    padding: 0 10px;
}

.cart-actions .link-danger {
    background: #fff1f1;
    color: #a33131;
}

.checkout-summary-card,
.front-form-card,
.try-rule-card,
.return-status-card,
.order-success-hero {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
}

.checkout-summary-card {
    bottom: 96px;
    box-shadow: 0 14px 36px rgba(20, 20, 20, .08);
    display: grid;
    gap: 12px;
    position: sticky;
}

.checkout-summary-card .savings-banner {
    background: #066d3b;
    border-radius: 28px 28px 0 0;
    color: #fff;
    display: block;
    font-size: 22px;
    font-weight: 900;
    margin: -16px -16px 14px;
    padding: 22px;
    text-align: center;
}

.checkout-summary-card h2 {
    color: #858585;
    font-size: 22px;
    margin: 8px 0 18px;
    text-transform: uppercase;
}

.checkout-summary-card div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.checkout-summary-card span {
    color: #666;
    font-size: 13px;
    font-weight: 800;
}

.checkout-summary-card strong {
    font-size: 15px;
    text-align: right;
}

.checkout-summary-card strong.green {
    color: #067341;
}

.checkout-summary-card .summary-total {
    border-top: 1px dashed #ddd;
    padding-top: 12px;
}

.checkout-summary-card .summary-total strong {
    color: #111;
    font-size: 22px;
}

.checkout-form {
    display: grid;
    gap: 16px;
}

.try-toggle {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 12px;
}

.try-toggle input {
    accent-color: #df71e5;
    height: 22px;
    width: 22px;
}

.try-toggle strong,
.try-toggle small {
    display: block;
}

.try-toggle strong {
    font-size: 17px;
}

.try-toggle small {
    color: #666;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.try-rule-message {
    background: #effaf1;
    border-radius: 10px;
    color: #2a6a36;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
    margin-top: 14px;
    padding: 12px;
}

.try-rule-message.locked {
    background: #fff1f1;
    color: #9a2929;
}

.selected-delivery-card {
    display: grid;
    gap: 6px;
}

.selected-delivery-card strong {
    font-size: 18px;
    text-transform: uppercase;
}

.selected-delivery-card span {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
}

.selected-delivery-card a {
    color: #df71e5;
    font-size: 13px;
    font-weight: 900;
    justify-self: start;
}

.front-form-card {
    display: grid;
    gap: 12px;
}

.front-form-card h2 {
    font-size: 21px;
    margin: 0;
}

.checkout-location-card {
    align-items: center;
    background: #fff8ff;
    border: 1px solid #ead8f4;
    border-radius: 10px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr auto;
    padding: 12px;
}

.checkout-location-card > div {
    align-items: center;
    color: #333;
    display: flex;
    font-size: 13px;
    font-weight: 800;
    gap: 9px;
    min-width: 0;
}

.checkout-location-card i {
    color: var(--accent);
    font-size: 18px;
}

.checkout-location-card button {
    background: var(--ink);
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    min-height: 38px;
    padding: 0 12px;
    white-space: nowrap;
}

.checkout-location-card button:disabled {
    cursor: wait;
    opacity: .65;
}

.front-form-card label {
    color: #333;
    display: grid;
    font-size: 13px;
    font-weight: 900;
    gap: 7px;
}

.front-form-card input,
.front-form-card textarea {
    border: 1px solid #ddd;
    border-radius: 8px;
    font: inherit;
    min-height: 44px;
    outline: 0;
    padding: 10px 12px;
    width: 100%;
}

.front-form-card textarea {
    resize: vertical;
}

.front-form-card small {
    color: #9a2929;
}

.form-grid-2 {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.payment-options {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

.payment-options label {
    cursor: pointer;
}

.payment-options input {
    display: none;
}

.payment-options span {
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    gap: 8px;
    justify-content: center;
    min-height: 48px;
}

.payment-options input:checked + span {
    background: #fff1fb;
    border-color: #df71e5;
    color: #a43ba9;
}

.checkout-mobile-page .front-flow-page {
    gap: 12px;
    padding: 12px 12px 96px;
}

.checkout-mobile-page .flow-heading {
    padding: 12px;
}

.checkout-mobile-page .flow-heading span {
    font-size: 11px;
}

.checkout-mobile-page .flow-heading h1 {
    font-size: 22px;
    line-height: 1.1;
    margin: 4px 0 6px;
}

.checkout-mobile-page .flow-heading p {
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
}

.checkout-mobile-page .checkout-form {
    gap: 10px;
}

.checkout-mobile-page .checkout-summary-card,
.checkout-mobile-page .front-form-card,
.checkout-mobile-page .try-rule-card {
    border-radius: 8px;
    padding: 12px;
}

.checkout-mobile-page .selected-delivery-card strong {
    font-size: 14px;
}

.checkout-mobile-page .selected-delivery-card span,
.checkout-mobile-page .selected-delivery-card a {
    font-size: 12px;
}

.checkout-mobile-page .front-form-card {
    gap: 9px;
}

.checkout-mobile-page .front-form-card h2 {
    font-size: 17px;
}

.checkout-mobile-page .checkout-location-card {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 10px;
}

.checkout-mobile-page .checkout-location-card > div {
    font-size: 12px;
}

.checkout-mobile-page .checkout-location-card button {
    min-height: 34px;
}

.checkout-mobile-page .front-form-card label {
    font-size: 12px;
    gap: 5px;
}

.checkout-mobile-page .front-form-card input,
.checkout-mobile-page .front-form-card textarea,
.checkout-mobile-page .front-form-card select {
    border-radius: 7px;
    font-size: 13px;
    min-height: 38px;
    padding: 8px 10px;
}

.checkout-mobile-page .front-form-card textarea {
    min-height: 70px;
}

.checkout-mobile-page .form-grid-2 {
    gap: 8px;
}

.checkout-mobile-page .payment-options {
    gap: 8px;
}

.checkout-mobile-page .payment-options span {
    font-size: 13px;
    min-height: 40px;
}

.checkout-mobile-page .checkout-summary-card {
    bottom: 82px;
    gap: 8px;
}

.checkout-mobile-page .checkout-summary-card div {
    gap: 10px;
}

.checkout-mobile-page .checkout-summary-card span {
    font-size: 12px;
}

.checkout-mobile-page .checkout-summary-card strong {
    font-size: 13px;
}

.checkout-mobile-page .checkout-summary-card small {
    display: block;
    font-size: 11px;
    margin-top: 2px;
}

.checkout-mobile-page .checkout-summary-card .summary-total {
    padding-top: 8px;
}

.checkout-mobile-page .checkout-summary-card .summary-total strong {
    font-size: 18px;
}

.checkout-mobile-page .front-btn.primary {
    min-height: 44px;
}

.order-success-hero {
    text-align: center;
}

.order-success-hero i {
    color: #2f9e44;
    font-size: 42px;
}

.order-success-hero span {
    color: #666;
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-top: 12px;
    text-transform: uppercase;
}

.order-success-hero h1 {
    font-size: 30px;
    margin: 8px 0;
}

.order-success-hero p {
    color: #666;
    font-weight: 800;
    margin: 0;
}

.return-status-card {
    background: #effaf1;
    border-color: #cfead4;
    color: #276232;
}

.return-status-card.locked {
    background: #fff1f1;
    border-color: #ffd0d0;
    color: #9a2929;
}

.return-status-card strong {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
}

.return-status-card p {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
}

.order-lookup-form .front-btn {
    width: 100%;
}

.order-card-list {
    display: grid;
    gap: 12px;
}

.customer-order-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    color: #111;
    display: grid;
    gap: 10px;
    padding: 16px;
}

.customer-order-card div {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.customer-order-card span {
    color: #df71e5;
    font-size: 13px;
    font-weight: 900;
}

.customer-order-card strong {
    font-size: 18px;
}

.customer-order-card small {
    background: #f4f4f4;
    border-radius: 999px;
    color: #555;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 10px;
}

.customer-order-card small.good {
    background: #effaf1;
    color: #276232;
}

.customer-order-card small.warn {
    background: #fff1f1;
    color: #9a2929;
}

.customer-order-card p {
    color: #666;
    font-size: 13px;
    font-weight: 800;
    margin: 0;
}

.order-success-hero.compact i {
    display: none;
}

.order-timeline-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
}

.order-timeline-card h2 {
    font-size: 21px;
    margin: 0 0 14px;
}

.order-timeline {
    display: grid;
    gap: 12px;
}

.order-timeline div {
    align-items: center;
    color: #999;
    display: flex;
    font-size: 13px;
    font-weight: 900;
    gap: 10px;
}

.order-timeline div.active {
    color: #1f7a35;
}

.order-timeline i {
    font-size: 10px;
}

.order-timeline-card p {
    background: #f6f6f6;
    border-radius: 10px;
    color: #555;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    margin: 14px 0 0;
    padding: 10px;
}

.order-item-return-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: grid;
    gap: 12px;
    padding: 10px;
}

.order-item-return-card .cart-item {
    border: 0;
    border-radius: 0;
    padding: 0;
}

.return-mini-form {
    border-top: 1px dashed #ddd;
    display: grid;
    gap: 10px;
    padding-top: 12px;
}

.return-mini-form label {
    color: #333;
    display: grid;
    font-size: 13px;
    font-weight: 900;
    gap: 7px;
}

.return-mini-form select,
.return-mini-form textarea {
    border: 1px solid #ddd;
    border-radius: 8px;
    font: inherit;
    min-height: 42px;
    padding: 10px;
    width: 100%;
}

.return-request-chip {
    background: #effaf1;
    border-radius: 10px;
    color: #276232;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.4;
    padding: 12px;
}

.return-request-chip.locked {
    background: #fff1f1;
    color: #9a2929;
}

.order-timeline-card a {
    color: #df71e5;
    font-weight: 900;
}

.tracking-address-card,
.delivery-boy-profile,
.delivery-task-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
}

.tracking-address-card h2,
.delivery-boy-profile h2,
.delivery-task-card h2 {
    font-size: 21px;
    margin: 0 0 8px;
}

.tracking-address-card p,
.delivery-boy-profile p,
.delivery-task-card p {
    color: #555;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
}

.tracking-address-card span,
.delivery-boy-profile span,
.delivery-task-card span,
.delivery-task-card small {
    color: #df71e5;
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.delivery-boy-profile {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.delivery-boy-profile strong {
    background: #effaf1;
    border-radius: 999px;
    color: #276232;
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 900;
    padding: 8px 11px;
}

.delivery-logout-btn {
    background: #111;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    min-height: 38px;
    padding: 0 13px;
}

.front-form-note {
    color: #777;
    font-size: 12px;
    font-weight: 800;
    margin: 0;
}

.delivery-task-list {
    display: grid;
    gap: 12px;
}

.delivery-task-card {
    display: grid;
    gap: 12px;
}

.task-head {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.task-head strong {
    background: #fff1fb;
    border-radius: 999px;
    color: #a43ba9;
    font-size: 12px;
    padding: 7px 10px;
}

.delivery-task-card small {
    color: #777;
    text-transform: none;
}

.delivery-step-hint {
    background: #fffdf0;
    border: 1px solid #f2e7aa;
    border-radius: 10px;
    padding: 10px 12px;
}

.delivery-step-hint span {
    color: #7a5a00;
    font-size: 12px;
    line-height: 1.35;
    text-transform: none;
}

.delivery-action-stack {
    display: grid;
    gap: 8px;
}

.delivery-action-stack form {
    display: grid;
    gap: 8px;
}

.delivery-action-stack button,
.failed-delivery-form button,
.cod-action-form button {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    min-height: 40px;
    padding: 0 8px;
    width: 100%;
}

.delivery-action-stack button {
    background: #111;
    color: #fff;
}

.failed-delivery-form {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 112px;
}

.failed-delivery-form input,
.delivery-action-stack input {
    border: 1px solid #ddd;
    border-radius: 8px;
    font: inherit;
    min-height: 40px;
    padding: 0 10px;
}

.failed-delivery-form button {
    background: #fff1f1;
    color: #9a2929;
}

.cod-action-form button {
    background: #effaf1;
    color: #276232;
}

.cod-action-form button:disabled {
    cursor: default;
    opacity: .68;
}

.delivery-action-stack button:disabled {
    cursor: default;
    opacity: .45;
}

.customer-auth-card .front-btn,
.address-form-grid .front-btn {
    width: 100%;
}

.inline-check {
    align-items: center !important;
    display: flex !important;
    flex-direction: row;
    gap: 10px !important;
}

.inline-check input {
    min-height: auto !important;
    width: auto !important;
}

.customer-profile-hero {
    align-items: center;
    background: #111;
    border-radius: 14px;
    color: #fff;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 18px;
}

.customer-profile-hero span {
    color: #ef8df1;
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.customer-profile-hero h1 {
    font-size: 28px;
    line-height: 1;
    margin: 0 0 8px;
}

.customer-profile-hero p {
    color: #ddd;
    font-size: 14px;
    font-weight: 800;
    margin: 0;
}

.customer-profile-hero button {
    background: #fff;
    border: 0;
    border-radius: 8px;
    color: #111;
    cursor: pointer;
    font-weight: 900;
    min-height: 38px;
    padding: 0 12px;
}

.profile-stat-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-stat-grid div {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.profile-stat-grid a {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    color: #111;
    padding: 14px;
    text-align: center;
}

.profile-stat-grid strong {
    display: block;
    font-size: 24px;
}

.profile-stat-grid a strong {
    display: block;
    font-size: 24px;
}

.profile-stat-grid span {
    color: #777;
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-top: 3px;
}

.notification-toolbar {
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    padding: 14px;
}

.notification-toolbar strong {
    font-size: 15px;
}

.notification-toolbar button,
.notification-card button {
    background: #111;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    min-height: 34px;
    padding: 0 10px;
}

.notification-list {
    display: grid;
    gap: 10px;
}

.notification-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: grid;
    gap: 10px;
    padding: 12px;
}

.notification-card.unread {
    border-color: #e7a7eb;
    box-shadow: 0 10px 24px rgba(223, 113, 229, .1);
}

.notification-card a {
    color: #111;
    display: grid;
    gap: 12px;
    grid-template-columns: 34px 1fr;
}

.notification-card i {
    align-items: center;
    background: #f7f7f7;
    border-radius: 999px;
    display: flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.notification-card span {
    color: #df71e5;
    display: block;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.notification-card h2 {
    font-size: 16px;
    margin: 3px 0 5px;
}

.notification-card p,
.notification-card small {
    color: #666;
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    margin: 0;
}

.address-form-grid {
    display: grid;
    gap: 12px;
}

.profile-section-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
}

.profile-section-card h2 {
    font-size: 22px;
    margin: 0 0 14px;
}

.profile-list {
    display: grid;
    gap: 10px;
}

.profile-mini-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    display: grid;
    gap: 7px;
    padding: 12px;
}

.profile-mini-card span {
    color: #df71e5;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-mini-card h3 {
    font-size: 16px;
    margin: 0;
}

.profile-mini-card p,
.profile-empty {
    color: #666;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    margin: 0;
}

.profile-mini-card div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-mini-card button {
    background: #111;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    min-height: 34px;
    padding: 0 10px;
}

.profile-mini-card button.danger {
    background: #fff1f1;
    color: #9a2929;
}

@media (max-width: 680px) {
    .event-grid a,
    .event-grid .event-card {
        min-height: 300px;
    }

    .event-grid span {
        font-size: 30px;
    }

    .shop-women-grid a {
        min-height: 210px;
    }

    .shop-women-grid span {
        font-size: 20px;
    }

    .summer-picks {
        gap: 12px;
        padding: 0 8px;
    }

    .sports-grid,
    .alist-grid {
        gap: 12px;
    }
}

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

button,
input {
    font: inherit;
}

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

.site-shell {
    margin: 0 auto;
    max-width: 1240px;
    padding: 14px 18px 92px;
}

.deal-ticker {
    align-items: center;
    background: var(--ink);
    border-radius: 8px;
    color: #fff;
    display: flex;
    gap: 18px;
    justify-content: center;
    min-height: 38px;
    overflow: hidden;
    padding: 8px 14px;
    white-space: nowrap;
}

.deal-ticker span {
    align-items: center;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 7px;
}

.deal-ticker span:not(:first-child)::before {
    background: rgba(255, 255, 255, .35);
    border-radius: 999px;
    content: "";
    display: inline-block;
    height: 5px;
    margin-right: 2px;
    width: 5px;
}

.front-header {
    align-items: center;
    background: rgba(255, 250, 244, .92);
    border-bottom: 1px solid rgba(233, 229, 225, .7);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
}

.brand-mark,
.location-chip,
.desktop-nav {
    align-items: center;
    display: flex;
}

.brand-mark {
    gap: 10px;
}

.brand-icon {
    align-items: center;
    background: var(--ink);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
}

.location-chip {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(28, 24, 20, .05);
    cursor: pointer;
    gap: 9px;
    min-width: 230px;
    padding: 9px 12px;
}

.location-chip strong,
.location-chip small {
    display: block;
}

.location-chip strong {
    font-size: 13px;
}

.location-chip small {
    color: var(--muted);
    font-size: 11px;
}

.desktop-nav {
    gap: 20px;
}

.desktop-nav a {
    color: #3a353d;
    font-size: 13px;
    font-weight: 700;
}

.zilo-topline {
    padding: 20px 0 10px;
    text-align: center;
}

.zilo-topline h1 {
    font-size: clamp(28px, 5vw, 58px);
    line-height: 1;
    margin: 0;
}

.zilo-topline p {
    color: var(--muted);
    font-size: clamp(15px, 2vw, 22px);
    font-weight: 700;
    margin: 8px 0 0;
}

.quick-search {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(260px, 1fr);
    margin-top: 14px;
}

.gender-tabs {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 6px;
    padding: 6px;
}

.gender-tabs button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 7px;
    min-height: 38px;
    padding: 0 12px;
}

.gender-tabs button.active {
    background: var(--ink);
    color: #fff;
}

.search-box {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    min-height: 52px;
    padding: 0 14px;
}

.search-box i {
    color: var(--accent);
}

.search-box input {
    border: 0;
    flex: 1;
    min-width: 0;
    outline: 0;
}

.zilo-location-card {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(28, 24, 20, .07);
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 180px auto;
    margin: 14px auto 16px;
    max-width: 860px;
    padding: 10px;
}

.zilo-location-card > div {
    align-items: center;
    display: flex;
    gap: 10px;
    min-width: 0;
}

.zilo-location-card i {
    align-items: center;
    background: #fff1f1;
    border-radius: 8px;
    color: var(--accent-dark);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.zilo-location-card strong,
.zilo-location-card small {
    display: block;
}

.zilo-location-card strong {
    font-size: 13px;
}

.zilo-location-card small {
    color: var(--muted);
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zilo-location-card input {
    background: #f8f4ef;
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: 0;
    padding: 13px 12px;
    width: 100%;
}

.zilo-location-card button {
    background: var(--ink);
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    min-height: 46px;
    padding: 0 18px;
}

.zilo-hero-feed,
.zilo-full-banner {
    margin-top: 16px;
}

.zilo-image-banner {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: block;
    overflow: hidden;
}

.zilo-image-banner img {
    height: auto;
    width: 100%;
}

.zilo-image-banner.hero {
    box-shadow: var(--shadow);
}

.front-carousel {
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 18px;
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    min-height: 360px;
    position: relative;
}

.carousel-slide {
    inset: 0;
    opacity: 0;
    position: absolute;
    transition: opacity .45s ease;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

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

.carousel-slide::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .18), rgba(0, 0, 0, .02));
    content: "";
    inset: 0;
    position: absolute;
}

.carousel-slide div {
    color: #fff;
    left: 42px;
    max-width: 540px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-slide span {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 11px;
    text-transform: uppercase;
}

.carousel-slide h2 {
    font-size: clamp(32px, 5vw, 62px);
    line-height: .98;
    margin: 14px 0 10px;
}

.carousel-slide p {
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.45;
    margin: 0;
}

.carousel-btn {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 8px;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    z-index: 3;
}

.carousel-btn.prev {
    left: 14px;
}

.carousel-btn.next {
    right: 14px;
}

.carousel-dots {
    bottom: 14px;
    display: flex;
    gap: 7px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 4;
}

.carousel-dots button {
    background: rgba(255, 255, 255, .55);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 8px;
    width: 8px;
}

.carousel-dots button.active {
    background: #fff;
    width: 28px;
}

.zilo-banner-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

.coupon-section {
    margin-top: 34px;
}

.section-head.compact {
    margin-bottom: 12px;
}

.coupon-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.coupon-rail img {
    border-radius: 8px;
    flex: 0 0 330px;
    max-width: 330px;
}

.hero-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    margin-top: 18px;
    min-height: 520px;
    overflow: hidden;
}

.hero-media {
    min-height: 520px;
    overflow: hidden;
}

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

.hero-copy {
    align-self: center;
    padding: 44px;
}

.hero-kicker {
    align-items: center;
    background: var(--yellow);
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 8px;
    padding: 8px 12px;
}

.hero-copy h1 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: .96;
    margin: 18px 0 16px;
    max-width: 620px;
}

.hero-copy p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
    max-width: 560px;
}

.pincode-search {
    align-items: center;
    background: #f8f4ef;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    max-width: 470px;
    padding: 8px;
}

.pincode-search i {
    color: var(--accent);
    padding-left: 8px;
}

.pincode-search input {
    background: transparent;
    border: 0;
    flex: 1;
    min-width: 0;
    outline: 0;
    padding: 12px 4px;
}

.pincode-search button,
.front-btn,
.add-btn {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
}

.pincode-search button {
    background: var(--ink);
    color: #fff;
    padding: 12px 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.front-btn {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
}

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

.front-btn.ghost {
    background: #fff;
    border: 1px solid var(--line);
}

.promise-strip {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 18px 0 0;
}

.mini-offer-rail {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
}

.mini-offer-rail a {
    background: #fff1f1;
    border: 1px dashed #f3aaaa;
    border-radius: 8px;
    min-height: 76px;
    padding: 14px;
}

.mini-offer-rail strong,
.mini-offer-rail span {
    display: block;
}

.mini-offer-rail strong {
    color: var(--accent-dark);
    font-size: 14px;
}

.mini-offer-rail span {
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
}

.promise-strip div {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 3px;
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px;
}

.promise-strip i {
    align-items: center;
    background: var(--mint);
    border-radius: 8px;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.promise-strip strong,
.promise-strip span {
    grid-column: 2;
}

.promise-strip strong {
    font-size: 14px;
}

.promise-strip span {
    color: var(--muted);
    font-size: 12px;
}

.front-section {
    margin-top: 42px;
}

.section-head {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-head span,
.trial-band span {
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-head h2,
.trial-band h2 {
    font-size: clamp(24px, 3vw, 38px);
    margin: 4px 0 0;
}

.section-head a {
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 800;
}

.category-rail {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-tile {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 148px;
    padding: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-tile:hover,
.product-card:hover,
.campaign-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.category-tile span {
    align-items: center;
    background: var(--blue);
    border-radius: 8px;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    margin-bottom: 22px;
    width: 46px;
}

.category-tile strong,
.category-tile small {
    display: block;
}

.brand-rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.brand-chip {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    min-width: 148px;
    padding: 12px;
}

.brand-chip strong {
    align-items: center;
    background: var(--ink);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.brand-chip.color-discover-chip strong {
    background: var(--swatch-color, currentColor) !important;
    border: 1px solid rgba(0, 0, 0, .18);
    color: transparent;
}

.brand-chip span {
    font-size: 14px;
    font-weight: 800;
}

.occasion-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.occasion-card {
    border-radius: 8px;
    min-height: 320px;
    overflow: hidden;
    position: relative;
}

.occasion-card img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.occasion-card::after {
    content: "";
    inset: 0;
    position: absolute;
}

.occasion-card.rose::after {
    background: linear-gradient(180deg, rgba(242, 85, 85, .08), rgba(102, 24, 35, .76));
}

.occasion-card.blue::after {
    background: linear-gradient(180deg, rgba(37, 99, 235, .08), rgba(26, 43, 84, .75));
}

.occasion-card.green::after {
    background: linear-gradient(180deg, rgba(22, 163, 74, .08), rgba(22, 72, 48, .76));
}

.occasion-card.yellow::after {
    background: linear-gradient(180deg, rgba(245, 158, 11, .08), rgba(92, 55, 10, .76));
}

.occasion-card div {
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 18px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.occasion-card span {
    background: rgba(255, 255, 255, .18);
    border-radius: 999px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 9px;
}

.occasion-card h3 {
    font-size: 26px;
    line-height: 1;
    margin: 12px 0 8px;
}

.occasion-card p {
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

.category-tile strong {
    font-size: 16px;
}

.category-tile small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    margin-top: 4px;
}

.campaign-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.15fr .85fr;
}

.campaign-card {
    border-radius: 8px;
    min-height: 230px;
    overflow: hidden;
    position: relative;
}

.campaign-card.large {
    grid-row: span 2;
    min-height: 474px;
}

.campaign-card img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.campaign-card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .62));
    content: "";
    inset: 0;
    position: absolute;
}

.campaign-card div {
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 24px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.campaign-card span {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
}

.campaign-card h3 {
    font-size: clamp(24px, 4vw, 48px);
    line-height: 1;
    margin: 14px 0 10px;
}

.campaign-card:not(.large) h3 {
    font-size: 28px;
}

.campaign-card p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    max-width: 420px;
}

.fit-layout {
    display: grid;
    gap: 14px;
    grid-template-columns: 320px minmax(0, 1fr);
}

.size-strip {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);
    padding: 14px;
}

.size-strip a {
    align-items: center;
    background: #f8f4ef;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 54px;
}

.body-guide-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.body-guide-grid a {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 132px;
    padding: 16px;
}

.body-guide-grid i {
    color: var(--accent);
}

.body-guide-grid strong,
.body-guide-grid span {
    display: block;
}

.body-guide-grid strong {
    font-size: 16px;
    margin-top: 14px;
}

.body-guide-grid span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    margin-top: 5px;
}

.product-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.product-image {
    aspect-ratio: 4 / 5;
    background: #eee6df;
    overflow: hidden;
    position: relative;
}

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

.product-image span {
    background: var(--ink);
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    left: 10px;
    padding: 6px 9px;
    position: absolute;
    top: 10px;
}

.product-body {
    padding: 14px;
}

.product-body p {
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
    margin: 0 0 6px;
}

.product-body h3 {
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 10px;
    min-height: 39px;
}

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

.price-row del {
    color: var(--muted);
    font-size: 12px;
}

.add-btn {
    background: var(--ink);
    color: #fff;
    margin-top: 12px;
    padding: 10px 14px;
    width: 100%;
}

.app-download-band {
    align-items: center;
    background: #fff7ce;
    border: 1px solid #f2df86;
    border-radius: 8px;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 44px;
    padding: 26px;
}

.app-download-band span {
    color: #8a5a00;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.app-download-band h2 {
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
    margin: 6px 0 10px;
}

.app-download-band p {
    color: #6f5e2d;
    line-height: 1.55;
    margin: 0;
    max-width: 660px;
}

.app-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.qr-box,
.store-btn {
    align-items: center;
    background: #fff;
    border: 1px solid #ecd26d;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 900;
    gap: 8px;
    min-height: 50px;
    padding: 0 14px;
}

.qr-box {
    flex-direction: column;
    gap: 3px;
    height: 86px;
    justify-content: center;
    min-width: 86px;
}

.qr-box i {
    font-size: 30px;
}

.qr-box span {
    color: var(--ink);
    font-size: 10px;
}

.trial-band {
    align-items: center;
    background: var(--ink);
    border-radius: 8px;
    color: #fff;
    display: grid;
    gap: 24px;
    grid-template-columns: .78fr 1.22fr;
    margin-top: 44px;
    padding: 28px;
}

.trial-band span {
    color: #ffd9d9;
}

.trial-steps {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trial-steps article {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    min-height: 126px;
    padding: 16px;
}

.trial-steps strong {
    align-items: center;
    background: var(--accent);
    border-radius: 8px;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.trial-steps p {
    color: #f6eeee;
    line-height: 1.45;
    margin: 16px 0 0;
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.zone-list form {
    margin: 0;
}

.zone-list button {
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    padding: 12px 14px;
}

.zone-list button.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.zone-list button.active span {
    color: var(--accent-soft);
}

.zone-list span {
    color: var(--muted);
    font-size: 12px;
}

.seo-block {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 28px;
    grid-template-columns: .9fr 1.1fr;
    margin-top: 44px;
    padding: 28px;
}

.seo-block > div > span {
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.seo-block h2 {
    font-size: clamp(25px, 3vw, 40px);
    line-height: 1.05;
    margin: 8px 0 12px;
}

.seo-block p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    background: #f8f4ef;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    margin-top: 10px;
}

.mobile-bottom-nav {
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    left: 50%;
    max-width: 608px;
    margin: 0 auto;
    padding: 8px 8px 10px;
    position: fixed;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    z-index: 40;
    backdrop-filter: blur(18px);
}

.mobile-bottom-nav .logo-link img {
    display: block;
    height: 24px;
    object-fit: contain;
    width: auto;
}

.mobile-bottom-nav a {
    align-items: center;
    border-radius: 8px;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 800;
    gap: 4px;
    padding: 8px 2px;
    position: relative;
}

.nav-icon-wrap {
    display: inline-grid;
    place-items: center;
    position: relative;
}

.nav-icon-wrap em {
    align-items: center;
    background: #df71e5;
    border-radius: 999px;
    color: #fff;
    display: flex;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    height: 17px;
    justify-content: center;
    min-width: 17px;
    padding: 0 4px;
    position: absolute;
    right: -13px;
    top: -9px;
}

.mobile-bottom-nav a.active {
    background: #fff1f1;
    color: var(--accent-dark);
}

.toast {
    background: var(--ink);
    border-radius: 8px;
    bottom: 84px;
    box-shadow: var(--shadow);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    left: 50%;
    opacity: 0;
    padding: 12px 16px;
    pointer-events: none;
    position: fixed;
    transform: translate(-50%, 16px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 50;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 980px) {
    .desktop-nav {
        display: none;
    }

    .hero-panel {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 340px;
    }

    .hero-copy {
        padding: 28px;
    }

    .promise-strip,
    .mini-offer-rail,
    .category-rail,
    .product-grid,
    .occasion-grid,
    .body-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .campaign-grid,
    .trial-band,
    .fit-layout,
    .app-download-band,
    .seo-block {
        grid-template-columns: 1fr;
    }

    .campaign-card.large {
        min-height: 340px;
    }

    .zilo-location-card {
        grid-template-columns: 1fr;
    }

    .carousel-slide img {
        height: 320px;
    }

    .front-carousel,
    .carousel-track {
        min-height: 320px;
    }
}

@media (max-width: 680px) {
    .site-shell {
        padding: 10px 12px 96px;
    }

    .front-header {
        gap: 10px;
    }

    .deal-ticker {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .quick-search {
        grid-template-columns: 1fr;
    }

    .zilo-banner-grid {
        grid-template-columns: 1fr;
    }

    .coupon-rail img {
        flex-basis: 280px;
        max-width: 280px;
    }

    .carousel-slide div {
        left: 24px;
        max-width: calc(100% - 76px);
    }

    .carousel-slide p {
        font-size: 14px;
    }

    .gender-tabs {
        overflow-x: auto;
    }

    .brand-name {
        font-size: 18px;
    }

    .location-chip {
        flex: 1;
        min-width: 0;
    }

    .hero-copy {
        padding: 22px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .pincode-search {
        align-items: stretch;
    }

    .pincode-search button {
        padding-left: 12px;
        padding-right: 12px;
    }

    .promise-strip,
    .mini-offer-rail {
        grid-template-columns: 1fr;
    }

    .category-rail {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
    }

    .category-tile {
        flex: 0 0 148px;
        scroll-snap-align: start;
    }

    .product-grid,
    .trial-steps,
    .occasion-grid,
    .body-guide-grid {
        grid-template-columns: 1fr 1fr;
    }

    .campaign-card {
        min-height: 260px;
    }

    .campaign-card.large {
        min-height: 330px;
    }

    .app-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 430px) {
    .product-grid,
    .trial-steps,
    .occasion-grid,
    .body-guide-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .front-btn {
        width: 100%;
    }
}
