:root {
    --violet-deep: #2b0a4a;
    --violet-rich: #4b1d6b;
    --gold: #d4af37;
    --white: #ffffff;
    --lavender: #f6f1fa;
    --charcoal: #242124;
    --muted: #6c6475;
    --border: rgba(43, 10, 74, 0.12);
    --shadow: 0 22px 60px rgba(43, 10, 74, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--charcoal);
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 24%),
        linear-gradient(180deg, #f8f4fb 0%, #ffffff 14%, #ffffff 100%);
}

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: #18052c;
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(43, 10, 74, 0.96);
    border-bottom: 1px solid rgba(212, 175, 55, 0.7);
    backdrop-filter: blur(10px);
}

.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.6rem;
    color: var(--white);
    letter-spacing: 0.08em;
}

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

.site-nav a,
.site-nav button {
    color: var(--white);
    font-size: 0.92rem;
}

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

.header-search input {
    width: 190px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 14px;
}

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

.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: var(--gold);
    color: var(--violet-deep);
    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));
    }
}
