:root {
    --violet-deep: #0f172a;
    --violet-rich: #1e1b4b;
    --gold: #d97706;
    --gold-dark: #d97706;
    --gold-light: #f59e0b;
    --gold-amber: #fbbf24;
    --white: #ffffff;
    --lavender: #f8fafc;
    --charcoal: #0f172a;
    --muted: #475569;
    --border: rgba(15, 23, 42, 0.08);
    --shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: min(1200px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--charcoal);
    background: #f8fafc;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.narrow {
    width: min(760px, calc(100vw - 32px));
}

.section {
    padding: 72px 0;
}

.page-shell {
    padding-top: 12px;
}

.announcement-bar {
    background: linear-gradient(90deg, #090d16 0%, #1e1b4b 50%, #090d16 100%);
    color: var(--gold-amber);
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.announcement-bar-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
}

.announcement-text {
    display: inline-block;
}

.announcement-socials {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.announcement-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.announcement-social-link:hover {
    transform: scale(1.15);
    background: var(--gold-amber, #fbbf24);
    color: #0f172a;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-bottom: 2px solid var(--gold-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.header-shell {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    min-width: 160px;
}

.brand-logo {
    width: 112px;
    height: auto;
}

.brand-wordmark {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    color: var(--white);
    letter-spacing: 0.1em;
    font-weight: 800;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.site-nav a,
.site-nav button {
    color: #f1f5f9;
    font-size: 0.95rem;
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--gold-amber);
}

.header-search input {
    width: 200px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 10px 16px;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.nav-badge-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-badge-link span {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    color: var(--white);
    padding: 10px 14px;
    border-radius: 999px;
}

.flash-banner {
    padding: 14px 0;
    font-weight: 700;
}

.flash-banner.success {
    background: #e6f7ee;
    color: #0f5a2d;
}

.flash-banner.error {
    background: #fdeaea;
    color: #8f1f1f;
}

.hero-section {
    padding: 72px 0 44px;
}

.hero-grid,
.split-panel,
.product-grid,
.checkout-grid,
.admin-grid {
    display: grid;
    gap: 32px;
}

.hero-grid,
.split-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.hero-copy h1,
.split-panel h2,
.page-shell h1,
.page-shell h2,
.site-footer h3 {
    font-family: "Playfair Display", serif;
    line-height: 1.05;
    color: var(--violet-deep);
    margin: 0 0 18px;
}

.hero-copy h1 {
    font-size: clamp(2.9rem, 5vw, 5rem);
}

.eyebrow,
.footer-kicker {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-text,
.split-panel p,
.page-shell p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-visual,
.panel-image,
.gallery-main,
.quote-card,
.policy-card,
.summary-card,
.feature-card,
.mini-card,
.cart-card,
.availability-card,
.empty-state {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}

.hero-visual {
    padding: 22px;
}

.hero-image,
.panel-image,
.gallery-image {
    width: 100%;
    min-height: 360px;
    object-fit: contain;
    background: linear-gradient(180deg, #fff 0%, #f9f4fb 100%);
    border-radius: calc(var(--radius-lg) - 8px);
}

.price-stack {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 20px 0 16px;
}

.price-mrp {
    color: #7e7487;
    text-decoration: line-through;
}

.price-sale {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--violet-deep);
}

.discount-pill,
.offer-ribbon,
.hero-badges span,
.trust-strip span,
.icon-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
}

.discount-pill {
    background: rgba(75, 29, 107, 0.1);
    color: var(--violet-rich);
}

.offer-ribbon {
    background: rgba(212, 175, 55, 0.16);
    color: #7a5900;
}

.hero-badges,
.cta-row,
.swatch-row,
.icon-strip,
.trust-strip,
.social-links,
.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-badges span,
.trust-strip span,
.icon-strip span {
    background: var(--white);
    border: 1px solid rgba(43, 10, 74, 0.08);
}

.cta-row {
    margin-top: 22px;
    align-items: center;
}

.button,
.text-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 24px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.text-link:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: linear-gradient(120deg, var(--violet-deep), var(--violet-rich));
    color: var(--white);
    border: 0;
    box-shadow: 0 18px 36px rgba(43, 10, 74, 0.24);
}

.button.secondary {
    background: var(--white);
    color: var(--violet-deep);
    border: 1px solid rgba(43, 10, 74, 0.16);
}

.button.ghost {
    background: transparent;
    color: var(--violet-deep);
    border: 1px solid rgba(43, 10, 74, 0.18);
}

.text-link {
    color: var(--violet-rich);
    padding-inline: 0;
}

.trust-strip,
.summary-card,
.quote-card,
.policy-card,
.availability-card,
.empty-state {
    padding: 24px;
}

.feature-list,
.spec-grid,
.cards-grid,
.variant-stock-grid,
.cart-list,
.faq-list,
.gallery-thumbs,
.thumb-row {
    display: grid;
    gap: 18px;
}

.feature-list {
    margin-top: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-list div,
.policy-card ol {
    color: var(--muted);
}

.mini-card {
    padding: 18px;
}

.swatch-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid rgba(43, 10, 74, 0.14);
    color: var(--charcoal);
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 700;
}

.swatch-button.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
}

.swatch-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(43, 10, 74, 0.18);
}

.swatch-dot.tan {
    background: #b78b57;
}

.swatch-dot.black {
    background: #1f1f22;
}

.cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    padding: 24px;
}

.feature-card h3,
.feature-card h2 {
    margin: 0 0 12px;
    color: var(--violet-deep);
}

.feature-card p {
    margin: 0;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(75, 29, 107, 0.16));
    margin-bottom: 16px;
}

.feature-support {
    margin-top: 28px;
}

.small-note,
.info-note {
    color: var(--muted);
}

.info-note {
    background: rgba(75, 29, 107, 0.06);
    border-left: 4px solid var(--gold);
    padding: 14px 16px;
    border-radius: 12px;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(43, 10, 74, 0.98), rgba(75, 29, 107, 0.92));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow);
}

.cta-banner h2,
.cta-banner p {
    color: var(--white);
}

.cta-banner .eyebrow {
    color: rgba(255, 255, 255, 0.75);
}

.quote-card {
    min-height: 280px;
    display: grid;
    align-content: center;
    gap: 18px;
    background:
        linear-gradient(160deg, rgba(212, 175, 55, 0.08), transparent 34%),
        var(--white);
}

.category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    padding-left: 18px;
    color: var(--muted);
}

.product-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

.gallery-panel {
    display: grid;
    gap: 16px;
}

.gallery-main {
    padding: 18px;
}

.gallery-thumbs {
    overflow: hidden;
}

.thumb-row {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    display: none;
}

.thumb-row.active {
    display: grid;
}

.thumb-button {
    border: 0;
    background: transparent;
    padding: 0;
}

.thumb-image {
    width: 100%;
    height: 108px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.product-summary,
.summary-card,
.policy-card {
    display: grid;
    gap: 16px;
}

.product-action-form,
.pincode-form,
.stack-form,
.media-slot-form {
    display: grid;
    gap: 14px;
}

.stack-form input,
.stack-form select,
.stack-form textarea,
.pincode-form input,
.product-action-form input[type="number"],
.header-search input {
    width: 100%;
}

input,
select,
textarea {
    border-radius: 14px;
    border: 1px solid rgba(43, 10, 74, 0.14);
    padding: 14px 16px;
    background: var(--white);
    color: var(--charcoal);
}

textarea {
    resize: vertical;
}

.spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-grid article {
    padding: 18px;
    border-radius: var(--radius-sm);
    background: rgba(246, 241, 250, 0.82);
}

.checkout-grid,
.admin-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

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

.payment-options {
    display: grid;
    gap: 10px;
}

.sticky {
    position: sticky;
    top: 112px;
}

.cart-card {
    padding: 20px;
    display: grid;
    gap: 18px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.cart-media {
    width: 88px;
}

.cart-actions {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(43, 10, 74, 0.08);
}

.summary-line:last-child {
    border-bottom: 0;
}

.faq-list details {
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(43, 10, 74, 0.1);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(43, 10, 74, 0.08);
}

.faq-list summary {
    cursor: pointer;
    color: var(--violet-deep);
    font-weight: 800;
}

.faq-list p {
    margin: 14px 0 0;
}

.empty-state {
    text-align: center;
}

.site-footer {
    margin-top: 72px;
}

.vix-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 24%),
        linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
    color: #f5f5f5;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.32);
}

.vix-footer::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
    pointer-events: none;
}

.vix-footer__shell {
    position: relative;
    width: min(1400px, calc(100vw - 32px));
    margin-inline: auto;
}

.vix-footer__top {
    padding: 58px 0 34px;
}

.vix-footer__grid {
    display: grid;
    gap: 30px 26px;
    align-items: start;
    grid-template-columns: 1.55fr 1fr 1fr 1.05fr 1.3fr 1.2fr;
}

.vix-footer__column {
    min-width: 0;
}

.vix-footer__column--contact {
    max-width: 280px;
}

.vix-footer__brand-link {
    display: inline-flex;
    margin-bottom: 18px;
}

.vix-footer__logo {
    width: 110px;
    height: auto;
    flex-shrink: 0;
}

.vix-footer__brand-text {
    display: grid;
    gap: 6px;
}

.vix-footer__eyebrow {
    margin: 0;
    color: #d4af37;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vix-footer__brand-title,
.vix-footer__heading {
    margin: 0;
    color: #d4af37;
}

.vix-footer__brand-title {
    font-family: "Playfair Display", serif;
    font-size: 1.78rem;
    line-height: 1.08;
}

.vix-footer__heading {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.vix-footer__description,
.vix-footer__subtext,
.vix-footer__newsletter-text,
.vix-footer__trust-card p,
.vix-footer__contact-text,
.vix-footer__contact-link,
.vix-footer__link,
.vix-footer__support-link,
.vix-footer__payment-point,
.vix-footer__copyright,
.vix-footer__made-in,
.vix-footer__legal-link {
    color: #f5f5f5;
    line-height: 1.72;
}

.vix-footer__description,
.vix-footer__subtext,
.vix-footer__trust-card p,
.vix-footer__contact-text,
.vix-footer__contact-link,
.vix-footer__payment-point,
.vix-footer__copyright,
.vix-footer__made-in {
    color: #b8b8b8;
}

.vix-footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.vix-footer__link,
.vix-footer__support-link,
.vix-footer__contact-link,
.vix-footer__legal-link,
.vix-footer__channel-link {
    transition: color 0.24s ease, transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.vix-footer__link:hover,
.vix-footer__support-link:hover,
.vix-footer__contact-link:hover,
.vix-footer__legal-link:hover {
    color: #f2c94c;
}

.vix-footer__link:hover,
.vix-footer__support-link:hover {
    transform: translateX(4px);
}

.vix-footer__social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.vix-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(255, 255, 255, 0.02);
    color: #f5f5f5;
}

.vix-footer__social-link:hover {
    color: #050505;
    background: #d4af37;
    border-color: #f2c94c;
    transform: translateY(-2px);
}

.vix-footer__channel-link {
    display: inline-flex;
    margin-top: 16px;
    color: #25d366;
    font-weight: 700;
}

.vix-footer__channel-link:hover {
    color: #7ef0a6;
}

.vix-footer__icon-box {
    display: inline-flex;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex: 0 0 18px !important;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
    line-height: 0;
}

.vix-footer__icon-svg {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex: 0 0 18px !important;
    flex-shrink: 0;
    overflow: hidden !important;
    vector-effect: non-scaling-stroke;
}

.vix-footer__support-list {
    display: grid;
    gap: 14px;
}

.vix-footer__support-item {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.vix-footer__support-item-label,
.vix-footer__contact-label {
    display: block;
    margin-bottom: 3px;
    color: #d4af37;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vix-footer__support-icon,
.vix-footer__contact-icon,
.vix-footer__trust-icon,
.vix-footer__payment-point-icon,
.vix-footer__support-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex: 0 0 18px !important;
    overflow: hidden;
    line-height: 0;
    color: #d4af37;
}

.vix-footer__support-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vix-footer__support-item-body {
    min-width: 0;
}

.vix-footer__support-value {
    margin: 0;
    color: #f5f5f5;
    line-height: 1.72;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.vix-footer__contact-list {
    display: grid;
    gap: 16px;
}

.vix-footer__contact-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 12px;
    align-items: start;
}

.vix-footer__contact-body,
.vix-footer__contact-text,
.vix-footer__contact-link {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.vix-footer__payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.vix-footer__payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(255, 255, 255, 0.03);
    color: #f5f5f5;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.vix-footer__payment-points {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.vix-footer__payment-point {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vix-footer__trust {
    padding: 26px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

.vix-footer__trust-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.vix-footer__trust-header .vix-footer__heading {
    margin-bottom: 0;
}

.vix-footer__trust-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vix-footer__trust-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.14);
}

.vix-footer__trust-card h5 {
    margin: 0 0 6px;
    color: #f5f5f5;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
}

.vix-footer__trust-card p {
    margin: 0;
    font-size: 0.88rem;
}

.vix-footer__newsletter {
    display: grid;
    grid-template-columns: 1.1fr minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 32px 0 38px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.vix-footer__newsletter-copy {
    max-width: 520px;
}

.vix-footer__newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
}

.vix-footer__newsletter-input {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(255, 255, 255, 0.03);
    color: #f5f5f5;
}

.vix-footer__newsletter-input::placeholder {
    color: rgba(245, 245, 245, 0.48);
}

.vix-footer__newsletter-input:focus,
.vix-footer__newsletter-button:focus,
.vix-footer__social-link:focus {
    outline: 2px solid rgba(242, 201, 76, 0.8);
    outline-offset: 2px;
}

.vix-footer__newsletter-button {
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #d4af37;
    color: #050505;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.vix-footer__newsletter-button:hover {
    background: #f2c94c;
}

.vix-footer__newsletter-message {
    grid-column: 1 / -1;
    min-height: 22px;
    margin: 0;
    color: #b8b8b8;
    font-size: 0.92rem;
}

.vix-footer__newsletter-message[data-state="error"] {
    color: #ffb4a2;
}

.vix-footer__newsletter-message[data-state="info"] {
    color: #f2c94c;
}

.vix-footer__bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px 24px;
    align-items: center;
    padding: 24px 0 40px;
}

.vix-footer__copyright,
.vix-footer__made-in {
    margin: 0;
    font-size: 0.93rem;
}

.vix-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vix-footer__legal-separator {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.45);
}

.vix-footer__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.image-placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 10px;
    padding: 24px;
    border-radius: inherit;
    background:
        linear-gradient(145deg, rgba(43, 10, 74, 0.05), rgba(212, 175, 55, 0.12)),
        var(--lavender);
    color: var(--violet-deep);
}

.image-placeholder small {
    max-width: 260px;
    color: var(--muted);
}

.icon-strip.small span {
    padding: 8px 12px;
    font-size: 0.88rem;
}

.social-links {
    margin-top: 16px;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: #25d366;
    color: var(--white);
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.24);
    z-index: 60;
    font-weight: 800;
}

@media (max-width: 1199px) {
    .vix-footer__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vix-footer__column--contact,
    .vix-footer__newsletter-copy {
        max-width: none;
    }

    .vix-footer__trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .vix-footer__shell {
        width: min(100vw - 24px, 1400px);
    }

    .vix-footer__top {
        padding-top: 48px;
    }

    .vix-footer__grid,
    .vix-footer__trust-grid,
    .vix-footer__newsletter,
    .vix-footer__bottom {
        grid-template-columns: 1fr;
    }

    .vix-footer__trust-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .vix-footer__newsletter-form {
        grid-template-columns: 1fr;
    }

    .vix-footer__newsletter-button {
        width: 100%;
    }

    .vix-footer__payment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vix-footer__legal,
    .vix-footer__bottom,
    .vix-footer__made-in,
    .vix-footer__copyright {
        justify-content: center;
        text-align: center;
    }

    .vix-footer__bottom {
        justify-items: center;
        padding-bottom: 110px;
    }
}

@media (max-width: 480px) {
    .vix-footer__grid {
        gap: 26px;
    }

    .vix-footer__brand-link {
        align-items: flex-start;
        flex-direction: column;
    }

    .vix-footer__logo {
        width: 104px;
    }

    .vix-footer__payment-grid {
        grid-template-columns: 1fr 1fr;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        padding: 12px 16px;
    }
}

.admin-shell .summary-card,
.admin-shell .feature-card {
    box-shadow: 0 16px 42px rgba(43, 10, 74, 0.08);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.admin-metrics {
    margin-bottom: 28px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.variant-editor {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(246, 241, 250, 0.82);
}

.legal-copy p {
    margin: 0 0 18px;
}

.reverse {
    direction: rtl;
}

.reverse > * {
    direction: ltr;
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-panel,
    .product-grid,
    .checkout-grid,
    .admin-grid,
    .feature-list,
    .cards-grid,
    .footer-grid,
    .admin-metrics {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 16px;
        right: 16px;
        background: #22073c;
        padding: 18px;
        border-radius: 20px;
        border: 1px solid rgba(212, 175, 55, 0.22);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.open {
        display: flex;
    }

    .header-search input {
        width: 100%;
    }

    .cta-banner,
    .footer-bottom,
    .cart-card {
        grid-template-columns: 1fr;
        display: grid;
    }

    .cart-card {
        justify-items: start;
    }

    .grid-two,
    .spec-grid,
    .category-list {
        grid-template-columns: 1fr;
    }

    .sticky {
        position: static;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 56px 0;
    }

    .hero-section {
        padding-top: 48px;
    }

    .hero-copy h1 {
        font-size: 2.55rem;
    }

    .cta-row,
    .button,
    .text-link,
    .swatch-button {
        width: 100%;
    }

    .button,
    .text-link {
        justify-content: center;
    }

    .thumb-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================
   MULTI-PRODUCT & E-COMMERCE STYLES
   ========================================== */

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.category-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.category-card__icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.category-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2937;
}

.category-card__desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
    line-height: 1.4;
}

.category-card__link {
    font-size: 13px;
    font-weight: 600;
    color: #4f46e5;
    margin-top: auto;
}

.vix-product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.vix-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.09);
}

.vix-product-card__image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9fafb;
    overflow: hidden;
}

.vix-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vix-product-card:hover .vix-product-card__img {
    transform: scale(1.04);
}

.vix-product-card__badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.vix-product-card__badge-trending {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4f46e5;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.vix-product-card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vix-product-card__category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.vix-product-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

.vix-product-card__title a {
    color: #111827;
    text-decoration: none;
}

.vix-product-card__title a:hover {
    color: #4f46e5;
}

.vix-product-card__desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vix-product-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.vix-product-card__sale {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.vix-product-card__mrp {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

.vix-stock-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.vix-stock-badge.in-stock {
    background: #def7ec;
    color: #03543f;
}

.vix-stock-badge.out-of-stock {
    background: #fde8e8;
    color: #9b1c1c;
}

.vix-product-card__actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.full-width {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Product Detail Page */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

.main-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

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

.gallery-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
}

.thumb-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: border-color 0.2s;
}

.thumb-img:hover, .thumb-img.active {
    border-color: #4f46e5;
}

.category-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4f46e5;
    background: #eef2ff;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-decoration: none;
}

.product-detail-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
    line-height: 1.2;
}

.sku-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.product-detail-price-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.detail-sale-price {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
}

.detail-mrp-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

.detail-discount-badge {
    background: #dc2626;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
}

.purchase-form-wrap {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.qty-select {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    font-weight: 600;
}

.detail-cta-group {
    display: flex;
    gap: 12px;
}

.detail-cta-group .button {
    flex: 1;
    padding: 14px 20px;
    font-size: 16px;
}

.product-features-box, .product-description-box {
    margin-top: 24px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.product-features-box h3, .product-description-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-features-box ul {
    padding-left: 20px;
    line-height: 1.7;
    color: #374151;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vix-product-card__content {
        padding: 10px;
    }

    .vix-product-card__title {
        font-size: 14px;
    }

    .vix-product-card__sale {
        font-size: 15px;
    }

    .vix-product-card__actions {
        flex-direction: column;
        gap: 6px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================
   ADMIN DASHBOARD PREMIUM INTERFACE STYLES
   ========================================== */

.admin-shell {
    background: #f1f5f9;
    min-height: 100vh;
    padding-bottom: 80px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.admin-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 1.8rem;
}

.admin-header .eyebrow {
    color: #fbbf24;
}

.admin-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.admin-metrics .feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-metrics .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}

.admin-metrics h3 {
    font-size: 2.2rem;
    margin: 0 0 6px;
    color: #0f172a;
    font-weight: 800;
}

.admin-metrics p {
    margin: 0;
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ADMIN FORM & FIELD STYLING */

.stack-form label,
.summary-card label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #1e293b;
}

.stack-form input[type="text"],
.stack-form input[type="number"],
.stack-form input[type="email"],
.stack-form input[type="password"],
.stack-form select,
.stack-form textarea,
.summary-card input[type="text"],
.summary-card input[type="number"],
.summary-card input[type="email"],
.summary-card select,
.summary-card textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    background: #ffffff;
    color: #0f172a;
    margin-top: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.stack-form input:focus,
.stack-form select:focus,
.stack-form textarea:focus,
.summary-card input:focus,
.summary-card select:focus,
.summary-card textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 12px;
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    background: #f8fafc;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin: 16px 0;
}

.checkbox-row label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-weight: 600;
}

.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0f172a;
    cursor: pointer;
}

/* ADMIN TABLE STYLING */

.vix-admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.vix-admin-table th {
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 16px;
    border: none;
}

.vix-admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.92rem;
    vertical-align: middle;
}

.vix-admin-table tr:last-child td {
    border-bottom: none;
}

.vix-admin-table tr:hover td {
    background: #f8fafc;
}

.button.small {
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.82rem;
    border-radius: 6px;
}

.button.error {
    background: #ef4444;
    color: #ffffff;
    border: none;
}

.button.error:hover {
    background: #dc2626;
}

.summary-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.summary-card h2 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

/* ==========================================
   VIXORAA REDESIGNED PRODUCT DETAIL PAGE (PDP)
   ========================================== */

.vix-product-detail-page {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    padding-bottom: 60px;
    width: 100%;
    overflow-x: hidden;
}

.vix-breadcrumb-wrap,
.vix-pdp-main-section,
.vix-full-details-section {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.vix-breadcrumb-wrap {
    padding-top: 16px;
    padding-bottom: 16px;
}

.vix-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.88rem;
    color: #64748b;
}

.vix-breadcrumb a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

.vix-breadcrumb a:hover {
    color: #d97706;
}

.vix-breadcrumb-sep {
    color: #94a3b8;
}

.vix-breadcrumb-current {
    color: #0f172a;
    font-weight: 700;
}

.vix-pdp-main-section {
    padding-bottom: 40px;
}

.vix-pdp-grid {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;
    align-items: start;
}

@media (max-width: 991px) {
    .vix-pdp-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* LEFT COLUMN: AMAZON STYLE GALLERY */
.vix-gallery-column {
    width: 100%;
}

.vix-amazon-gallery {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

/* DESKTOP THUMBNAILS (LEFT COLUMN) */
.vix-thumbs-wrap {
    width: 68px;
    flex-shrink: 0;
    max-height: 520px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
    padding: 2px;
}

.vix-thumbs-wrap::-webkit-scrollbar {
    width: 4px;
}

.vix-thumbs-wrap::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}

.vix-thumbs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vix-thumb-item {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    padding: 3px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.vix-thumb-item:hover {
    border-color: #e47911;
}

.vix-thumb-item.active {
    border-color: #e47911;
    box-shadow: 0 0 0 2px rgba(228, 121, 17, 0.35);
    transform: scale(1.02);
}

.vix-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.vix-gallery-container {
    position: relative;
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.vix-gallery-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #d97706;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 8px;
    z-index: 5;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.vix-main-image-wrap {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 16px;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .vix-amazon-gallery {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .vix-thumbs-wrap {
        width: 100%;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 2px;
    }

    .vix-thumbs-list {
        flex-direction: row;
        gap: 8px;
    }

    .vix-thumb-item {
        width: 58px;
        height: 58px;
        min-width: 58px;
        min-height: 58px;
    }

    .vix-main-image-wrap {
        height: 380px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .vix-main-image-wrap {
        height: 320px;
    }
}

.vix-main-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.2s ease, transform 0.25s ease;
    cursor: zoom-in;
}

.vix-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #e2e8f0;
    color: #0f172a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.2s ease, transform 0.2s ease;
}

.vix-gallery-nav:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.vix-gallery-nav.prev {
    left: 12px;
}

.vix-gallery-nav.next {
    right: 12px;
}

/* RIGHT COLUMN: PRODUCT INFO */
.vix-info-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vix-category-pill {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #d97706;
    text-transform: uppercase;
}

.vix-pdp-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0;
}

.vix-pdp-subtitle {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.vix-rating-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
}

.vix-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.vix-rating-score {
    font-weight: 800;
    color: #0f172a;
}

.vix-rating-count {
    color: #64748b;
}

.vix-trust-tag {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.vix-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
}

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

.vix-sale-price {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0f172a;
}

.vix-mrp-price {
    font-size: 1.05rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.vix-discount-badge {
    background: #fef3c7;
    color: #b45309;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 6px;
}

.vix-tax-note {
    font-size: 0.85rem;
    color: #64748b;
    margin: 8px 0 0;
}

.vix-stock-status-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.9rem;
}

.vix-stock-pill {
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
}

.vix-stock-pill.in-stock {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.vix-stock-pill.out-of-stock {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.vix-sku-text {
    color: #64748b;
}

.vix-warranty-pill {
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.82rem;
}

.vix-swatch-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.vix-swatch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.vix-swatch-btn.active,
.vix-swatch-btn:hover {
    border-color: #0f172a;
    background: #0f172a;
    color: #ffffff;
}

.vix-swatch-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.15);
}

.vix-swatch-color.black { background: #000000; }
.vix-swatch-color.tan { background: #d97706; }

.vix-purchase-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vix-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vix-qty-label {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.vix-qty-stepper {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.vix-qty-btn {
    width: 38px;
    height: 38px;
    background: #f8fafc;
    border: none;
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    cursor: pointer;
    transition: background 0.15s ease;
}

.vix-qty-btn:hover {
    background: #e2e8f0;
}

.vix-qty-stepper input {
    width: 44px;
    height: 38px;
    line-height: 38px;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a !important;
    -webkit-text-fill-color: #0f172a !important;
    opacity: 1 !important;
    background: #ffffff !important;
    -moz-appearance: textfield;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
}

.vix-qty-stepper input::-webkit-outer-spin-button,
.vix-qty-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.vix-action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vix-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.vix-btn-buy-now {
    flex: 2;
    min-width: 160px;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    color: #ffffff;
    border: 1px solid #d97706;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.vix-btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
}

.vix-btn-add-cart {
    flex: 1.5;
    min-width: 140px;
    background: #ffffff;
    color: #0f172a;
    border: 2px solid #0f172a;
}

.vix-btn-add-cart:hover {
    background: #0f172a;
    color: #ffffff;
}

.vix-btn-wishlist {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 10px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
    font-size: 1.4rem;
}

.vix-btn-wishlist:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef2f2;
}

.vix-whatsapp-order-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25D366;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vix-whatsapp-order-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.vix-pincode-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px;
}

.vix-pincode-title {
    font-weight: 700;
    font-size: 0.92rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.vix-pincode-form {
    display: flex;
    gap: 10px;
}

.vix-pincode-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.9rem;
}

.vix-pincode-btn {
    padding: 10px 20px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.vix-pincode-result {
    margin-top: 10px;
    font-size: 0.88rem;
}

.vix-trust-features-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .vix-trust-features-strip {
        grid-template-columns: 1fr;
    }
}

.vix-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 14px;
    border-radius: 10px;
}

.vix-trust-icon {
    font-size: 1.4rem;
}

.vix-trust-text {
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
}

.vix-trust-text strong {
    color: #0f172a;
}

.vix-trust-text span {
    color: #64748b;
}

/* FULL DETAILS & SPECS SECTION BELOW */
.vix-full-details-section {
    padding: 40px 0;
}

.vix-details-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 36px;
}

@media (max-width: 768px) {
    .vix-details-box {
        padding: 20px;
        gap: 24px;
    }
}

.vix-section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px;
    border-bottom: 2px solid #d97706;
    padding-bottom: 8px;
    display: inline-block;
}

.vix-description-content p {
    color: #334155;
    line-height: 1.8;
    font-size: 1.02rem;
    margin: 0;
    white-space: pre-line;
}

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

.vix-feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vix-feat-icon {
    color: #d97706;
    font-weight: 800;
    font-size: 1.1rem;
}

.vix-feat-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
}

.vix-specs-table {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.vix-spec-row {
    display: flex;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.vix-spec-row:last-child {
    border-bottom: none;
}

.vix-spec-row:nth-child(even) {
    background: #f8fafc;
}

.vix-spec-label {
    width: 220px;
    font-weight: 700;
    color: #0f172a;
}

.vix-spec-val {
    flex: 1;
    color: #475569;
}

@media (max-width: 600px) {
    .vix-spec-row {
        flex-direction: column;
        gap: 4px;
    }
    .vix-spec-label {
        width: 100%;
    }
}

/* REVIEWS & FAQ SECTION */
.vix-reviews-faq-section {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.vix-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.vix-review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 14px;
}

.vix-rev-stars {
    color: #f59e0b;
    margin-bottom: 8px;
}

.vix-rev-title {
    font-size: 1.05rem;
    margin: 0 0 6px;
    color: #0f172a;
}

.vix-rev-body {
    font-size: 0.92rem;
    color: #475569;
    margin: 0 0 10px;
    line-height: 1.5;
}

.vix-rev-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
}

.vix-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vix-faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.vix-faq-question {
    padding: 16px 20px;
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
}

.vix-faq-answer {
    padding: 0 20px 16px;
    color: #475569;
    line-height: 1.6;
}

/* RELATED PRODUCTS SECTION */
.vix-related-section {
    padding: 40px 0;
}

.vix-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.vix-product-card-mini {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vix-product-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.vix-card-link {
    text-decoration: none;
    color: inherit;
}

.vix-card-img-wrap {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 12px;
}

.vix-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vix-card-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.vix-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.vix-card-price strong {
    font-size: 1.1rem;
    color: #0f172a;
}

.vix-card-price .mrp {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.85rem;
}

.vix-btn-view {
    display: block;
    text-align: center;
    padding: 8px 14px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}