* {
    box-sizing: border-box;
}

:root {
    --tina-bg: #1b1328;
    --tina-surface: rgba(255, 255, 255, 0.05);
    --tina-surface-strong: #241533;
    --tina-surface-dark: #20122c;
    --tina-line: rgba(255, 255, 255, 0.10);
    --tina-line-pink: rgba(255, 115, 197, 0.20);
    --tina-text: #ffffff;
    --tina-text-soft: rgba(255, 255, 255, 0.75);
    --tina-pink: #ff73c5;
    --tina-pink-soft: #ff93d3;
    --tina-pink-dark: #ff4fb3;
    --tina-purple: #2c1738;
    --tina-purple-2: #31193d;
    --tina-purple-3: #22152d;
    --tina-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    --tina-radius-xl: 2rem;
    --tina-radius-lg: 1.75rem;
    --tina-radius-md: 1.5rem;
    --tina-container: 1280px;
}

html {
    scroll-behavior: smooth;
}

body.tina-shop-body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--tina-bg);
    color: var(--tina-text);
}

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

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

.tina-container {
    width: min(var(--tina-container), calc(100% - 32px));
    margin: 0 auto;
}

.tina-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tina-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
}

.tina-site-brand {
    display: inline-flex;
    align-items: center;
}

.tina-site-logo {
    width: auto;
    max-width: 220px;
    max-height: 60px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
}

.tina-site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tina-site-nav a {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 12px;
    border-radius: 12px;
    transition: color 0.18s ease, background 0.18s ease;
}

.tina-site-nav a:hover {
    color: var(--tina-pink);
    background: rgba(255, 255, 255, 0.04);
}

.tina-cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 115, 197, 0.40);
    color: #ffd2ef;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.18s ease, color 0.18s ease;
}

.tina-cart-button:hover {
    background: var(--tina-pink);
    color: var(--tina-purple);
}

/* Hamburger Toggle Button */
.tina-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 115, 197, 0.30);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.18s ease;
}

.tina-nav-toggle:hover {
    background: rgba(255, 115, 197, 0.12);
}

.tina-nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.tina-site-header.is-open .tina-nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.tina-site-header.is-open .tina-nav-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.tina-site-header.is-open .tina-nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.tina-main {
    position: relative;
    z-index: 1;
}

.tina-main::before,
.tina-main::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.45;
}

.tina-main::before {
    top: 30px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: rgba(255, 79, 179, 0.18);
}

.tina-main::after {
    top: 920px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(194, 107, 255, 0.14);
}

.tina-section {
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.tina-section--last {
    padding-bottom: 80px;
}

.tina-hero {
    padding: 28px 0 18px;
}

.tina-hero__grid,
.tina-story-grid,
.tina-cart-grid,
.tina-form-grid,
.tina-process-box__grid {
    display: grid;
    gap: 28px;
}

.tina-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.tina-hero__content {
    order: 1;
    min-width: 0;
    overflow: hidden;
}

.tina-hero__visual {
    order: 2;
}

.tina-chip,
.tina-section-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(90, 31, 70, 0.45);
    color: #ffd2ef;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tina-hero h1 {
    margin: 22px 0 18px;
    max-width: 14ch;
    font-size: clamp(2rem, 3.2vw, 4rem);
    line-height: 1.05;
    color: var(--tina-pink);
}

.tina-hero p,
.tina-section-head p,
.tina-story-box p,
.tina-process-box p,
.tina-form-info p,
.tina-image-guide__card p,
.tina-product-card__body p {
    color: var(--tina-text-soft);
    line-height: 1.8;
}

.tina-highlight-grid {
    display: grid;
    gap: 12px;
    margin-top: 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tina-highlight-item {
    padding: 16px 18px;
    border-radius: var(--tina-radius-md);
    border: 1px solid var(--tina-line);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.tina-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.tina-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.tina-btn:hover {
    transform: translateY(-1px);
}

.tina-btn--primary {
    background: var(--tina-pink);
    color: var(--tina-purple);
    box-shadow: 0 14px 30px rgba(255, 115, 197, 0.20);
}

.tina-btn--primary:hover {
    background: var(--tina-pink-soft);
}

.tina-btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--tina-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tina-btn--small {
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 14px;
}

.tina-btn--full {
    width: 100%;
}

.tina-hero__visual {
    position: relative;
    overflow: hidden;
    padding: 12px;
    border-radius: var(--tina-radius-xl);
    border: 1px solid var(--tina-line);
    background: #261734;
    box-shadow: var(--tina-shadow);
}

.tina-checkout-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    margin-bottom: 28px;
}

.tina-checkout-form-wrap {
    margin-top: 8px;
}

.tina-checkout-summary-items {
    display: grid;
    gap: 14px;
    margin: 22px 0 24px;
}

.tina-checkout-summary-item {
    padding: 16px 18px;
    border-radius: 1.25rem;
    border: 1px solid var(--tina-line);
    background: rgba(255, 255, 255, 0.04);
}

.tina-checkout-summary-item__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    color: #ffffff;
    font-size: 1rem;
}

.tina-checkout-summary-item__meta {
    margin-top: 8px;
    color: var(--tina-text-soft);
    line-height: 1.6;
    font-size: 0.94rem;
}

.tina-checkout-summary-empty {
    padding: 16px 18px;
    border-radius: 1.25rem;
    border: 1px solid var(--tina-line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--tina-text-soft);
    margin: 22px 0 24px;
}

.tina-checkout-actions {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.tina-checkout-success-box {
    padding: 32px;
    border-radius: var(--tina-radius-xl);
    border: 1px solid var(--tina-line-pink);
    background: linear-gradient(to bottom right, var(--tina-purple-2), var(--tina-purple-3));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.tina-summary-payment__list {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--tina-text-soft);
    line-height: 1.8;
}

.tina-summary-payment__list li + li {
    margin-top: 6px;
}

.tina-checkout-error {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 115, 197, 0.28);
    background: rgba(90, 31, 70, 0.22);
    color: #ffd7ef;
    line-height: 1.6;
}

.tina-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.tina-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(255, 79, 179, 0.10), transparent, rgba(155, 107, 255, 0.10));
    pointer-events: none;
}

.tina-hero__image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.tina-hero__overlay {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    padding: 22px;
    border-radius: 1.5rem;
    border: 1px solid var(--tina-line);
    background: rgba(32, 18, 44, 0.80);
    backdrop-filter: blur(12px);
}

.tina-hero__overlay-label {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tina-pink);
}

.tina-hero__overlay-title {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.tina-hero__overlay p {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.tina-section-head {
    margin-bottom: 28px;
}

.tina-section-head--split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.tina-section-head h2,
.tina-image-guide h2,
.tina-story-box h2,
.tina-process-box h2,
.tina-cart-box h2,
.tina-form-info h2 {
    margin: 14px 0 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.06;
    color: #ffffff;
}

.tina-section-head--split p {
    max-width: 520px;
}

.tina-product-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tina-product-card,
.tina-story-box,
.tina-cart-box,
.tina-summary-box,
.tina-form-info,
.tina-form-box,
.tina-image-guide,
.tina-process-box {
    border-radius: var(--tina-radius-xl);
    border: 1px solid var(--tina-line);
    box-shadow: var(--tina-shadow);
}

.tina-product-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.tina-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 115, 197, 0.30);
}

.tina-product-card__media {
    position: relative;
}

.tina-product-card__image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.tina-product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--tina-pink);
    color: var(--tina-purple);
    font-size: 0.8rem;
    font-weight: 700;
}

.tina-product-card__body {
    padding: 24px;
}

.tina-product-card__eyebrow {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff9ad5;
}

.tina-product-card h3 {
    margin: 14px 0 10px;
    font-size: 2rem;
    color: #ffffff;
}

.tina-product-card__footer {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.tina-product-card__price {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd3ee;
}

.tina-product-config {
    margin-top: 22px;
    padding: 18px;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 115, 197, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tina-product-config__variants {
    display: grid;
    gap: 18px;
}

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

.tina-product-config__grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.tina-product-config__grid label span {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffd2ef;
}

.tina-product-config__grid select,
.tina-product-config__grid input {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(22, 13, 31, 0.9);
    color: #ffffff;
    font: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    -webkit-appearance: none;
    appearance: none;
}

.tina-product-config__grid input {
    padding-right: 12px;
}

.tina-product-config__grid select {
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.65) 50%),
        linear-gradient(135deg, rgba(255,255,255,0.65) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 38px;
}

.tina-product-config__grid select:focus,
.tina-product-config__grid input:focus {
    outline: none;
    border-color: rgba(255, 115, 197, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 115, 197, 0.12);
    background: rgba(30, 17, 42, 0.95);
}

.tina-product-config__grid select:disabled,
.tina-product-config__grid input:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.55);
}

.tina-product-config__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-top: 4px;
}

.tina-product-config__price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.tina-product-config__price span {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.tina-product-config__price strong {
    display: block;
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.1;
    font-weight: 800;
    color: #ffd3ee;
    white-space: nowrap;
}

.tina-product-config__bottom .tina-btn {
    min-width: 210px;
}

.tina-product-config__empty {
    margin: 0;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 11, 26, 0.72);
    color: var(--tina-text-soft);
    line-height: 1.6;
}

.tina-image-guide {
    padding: 32px;
    border-color: rgba(255, 115, 197, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.tina-image-guide__grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tina-image-guide__card {
    padding: 22px;
    border-radius: 1.5rem;
    border: 1px solid var(--tina-line);
    background: #241533;
}

.tina-image-guide__card h3 {
    margin-top: 0;
    color: #ffb2df;
}

.tina-story-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.tina-story-box {
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
}

.tina-story-box--main {
    background: #241533;
}

.tina-story-box h3 {
    margin-top: 0;
    font-size: 1.35rem;
    color: #ffb2df;
}

.tina-story-grid__cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tina-process-box {
    padding: 34px;
    border-color: var(--tina-line-pink);
    background: linear-gradient(to bottom right, var(--tina-purple-2), var(--tina-purple-3));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.tina-process-box__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.tina-process-box__steps {
    padding: 24px;
    border-radius: 1.75rem;
    border: 1px solid var(--tina-line);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
}

.tina-process-box__steps ol {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--tina-text-soft);
    line-height: 1.9;
}

.tina-cart-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}
.tina-cart-page-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.tina-cart-box,
.tina-summary-box,
.tina-form-info,
.tina-form-box {
    padding: 28px;
    background: rgba(255, 255, 255, 0.05);
}

.tina-cart-box__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.tina-cart-count {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 115, 197, 0.30);
    background: rgba(90, 31, 70, 0.30);
    color: #ffd2ef;
    font-size: 0.9rem;
}

.tina-cart-items {
    margin-top: 28px;
    display: grid;
    gap: 18px;
}

.tina-cart-item {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    padding: 20px;
    border-radius: 1.5rem;
    border: 1px solid var(--tina-line);
    background: #241533;
}

.tina-cart-item h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #ffffff;
}

.tina-cart-item p {
    margin: 6px 0 0;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
}
.tina-cart-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.tina-cart-item--empty {
    grid-template-columns: 1fr;
}

.tina-cart-item--rich {
    grid-template-columns: minmax(0, 1.2fr) auto auto auto;
}

.tina-cart-item__product {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.tina-cart-item__thumb {
    width: 82px;
    height: 82px;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--tina-line);
    background: rgba(255, 255, 255, 0.04);
}

.tina-cart-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tina-cart-item__controls {
    display: flex;
    align-items: center;
}

.tina-cart-item__qty-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tina-cart-item__qty-label span {
    font-size: 0.82rem;
    color: var(--tina-text-soft);
}

.tina-cart-item__qty-label input {
    width: 90px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid var(--tina-line);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font: inherit;
}

.tina-cart-meta {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--tina-line);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
}

.tina-cart-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffd3ee;
}

.tina-cart-remove {
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid var(--tina-line);
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
}

.tina-cart-remove:hover {
    border-color: rgba(255, 115, 197, 0.40);
    color: #ffb2df;
}

.tina-cart-info-grid {
    margin-top: 24px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tina-cart-info {
    padding: 20px;
    border-radius: 1.5rem;
    border: 1px solid var(--tina-line);
    background: #241533;
}

.tina-summary-box {
    border-color: var(--tina-line-pink);
    background: linear-gradient(to bottom right, var(--tina-purple-2), var(--tina-purple-3));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.tina-summary-box h3 {
    margin: 10px 0 0;
    font-size: 2rem;
    color: #ffffff;
}

.tina-summary-lines {
    margin-top: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--tina-line);
    display: grid;
    gap: 14px;
    color: var(--tina-text-soft);
}

.tina-summary-lines > div,
.tina-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.tina-summary-total {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #ffffff;
    align-items: center;
}

.tina-summary-total strong {
    font-size: 2rem;
    color: #ffd3ee;
}

.tina-summary-payment {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 1.5rem;
    border: 1px solid var(--tina-line);
    background: rgba(0, 0, 0, 0.15);
}

.tina-summary-payment ul {
    margin: 14px 0 0;
    padding-left: 0;
    list-style: none;
    color: var(--tina-text-soft);
    line-height: 1.8;
}

.tina-form-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.tina-form-note {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 1.5rem;
    border: 1px solid var(--tina-line);
    background: #241533;
    color: var(--tina-text-soft);
    line-height: 1.75;
}

.tina-form-box {
    border-color: var(--tina-line-pink);
    background: linear-gradient(to bottom right, var(--tina-purple-2), var(--tina-purple-3));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.tina-form-fields {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tina-form-fields label {
    display: block;
}

.tina-form-fields label.full {
    grid-column: 1 / -1;
}

.tina-form-fields span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.tina-form-fields input,
.tina-form-fields select,
.tina-form-fields textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 1rem;
    border: 1px solid var(--tina-line);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font: inherit;
}

.tina-form-fields input::placeholder,
.tina-form-fields textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.tina-form-fields input:focus,
.tina-form-fields select:focus,
.tina-form-fields textarea:focus {
    outline: none;
    border-color: rgba(255, 115, 197, 0.50);
}

.tina-form-fields select {
    background: #2b1938;
}

.tina-form-checks {
    margin-top: 24px;
    padding: 20px;
    border-radius: 1.5rem;
    border: 1px solid var(--tina-line);
    background: rgba(0, 0, 0, 0.15);
    display: grid;
    gap: 14px;
    color: var(--tina-text-soft);
}

.tina-form-checks label {
    display: flex;
    align-items: start;
    gap: 12px;
}

.tina-site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 12, 29, 0.98);
    color: #f7eefe;
    padding: 40px 0;
}

.tina-site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.tina-site-footer__links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.tina-site-footer a {
    color: #ffffff;
}

.tina-btn.is-disabled,
.tina-btn[aria-disabled="true"] {
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width: 1180px) {
    .tina-product-grid,
    .tina-image-guide__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .tina-hero__grid,
    .tina-story-grid,
    .tina-cart-grid,
    .tina-form-grid,
    .tina-cart-page-grid {
        grid-template-columns: 1fr;
    }

    .tina-hero__image {
        height: auto;
        aspect-ratio: 4 / 3;
        object-position: top center;
    }

    .tina-hero__overlay {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        border-radius: 1.2rem;
    }
    .tina-process-box__grid,
    .tina-site-footer__inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .tina-highlight-grid,
    .tina-info-grid,
    .tina-cart-info-grid,
    .tina-story-grid__cards {
        grid-template-columns: 1fr;
    }

    .tina-section-head--split {
        flex-direction: column;
        align-items: stretch;
    }

    .tina-product-config__grid {
        grid-template-columns: 1fr;
    }

    .tina-product-config__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .tina-product-config__bottom .tina-btn {
        width: 100%;
        min-width: 0;
    }
    .tina-checkout-grid {
    grid-template-columns: 1fr;
}
}

@media (max-width: 760px) {
    .tina-container {
        width: min(100% - 24px, var(--tina-container));
    }

    .tina-nav-toggle {
        display: flex;
    }

    .tina-site-header__inner {
        min-height: 70px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 0;
    }

    .tina-site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 4px;
        padding: 10px 0 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .tina-site-header.is-open .tina-site-nav {
        display: flex;
    }

    .tina-site-nav a {
        padding: 12px 16px;
        border-radius: 10px;
        width: 100%;
    }

    .tina-cart-button {
        margin-left: auto;
    }

    .tina-hero__image {
        aspect-ratio: 3 / 2;
    }

    .tina-product-grid,
    .tina-image-guide__grid,
    .tina-form-fields {
        grid-template-columns: 1fr;
    }

    .tina-cart-item {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .tina-product-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .tina-hero__image {
        height: 360px;
    }

    .tina-hero h1 {
        max-width: 100%;
        font-size: 2.6rem;
    }

    .tina-product-config {
        padding: 16px;
    }

    .tina-product-config__grid select,
    .tina-product-config__grid input {
        min-height: 52px;
        font-size: 16px;
    }

    .tina-product-config__price strong {
        font-size: 1.6rem;
    }

    .tina-cart-item--rich {
    grid-template-columns: 1fr;
}

.tina-cart-item__product {
    align-items: flex-start;
}

.tina-cart-item__thumb {
    width: 72px;
    height: 72px;
}

.tina-cart-actions {
    flex-direction: column;
}

.tina-cart-actions .tina-btn {
    width: 100%;
}

.tina-cart-item__qty-label input {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
}

.tina-checkout-actions {
    flex-direction: column;
}

.tina-checkout-actions .tina-btn {
    width: 100%;
}

.tina-checkout-summary-item__head {
    flex-direction: column;
    align-items: flex-start;
}   



.tina-checkout-success-box {
    padding: 24px;
}

}

.tina-product-card__gallery-trigger {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.tina-product-card__gallery-trigger:hover .tina-product-card__image {
    transform: scale(1.02);
}

.tina-product-card__image {
    transition: transform 0.22s ease;
}

.tina-product-card__details-chip {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(26, 14, 36, 0.82);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.tina-product-card__actions-inline {
    margin-top: 18px;
}

.tina-gallery-modal[hidden] {
    display: none;
}

.tina-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
}

.tina-gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 6, 16, 0.72);
    backdrop-filter: blur(8px);
}

.tina-gallery-modal__dialog {
    position: relative;
    width: min(1120px, calc(100% - 32px));
    margin: 40px auto;
    max-height: calc(100vh - 80px);
    overflow: auto;
    border-radius: 2rem;
    border: 1px solid rgba(255, 115, 197, 0.24);
    background: linear-gradient(to bottom right, rgba(38, 20, 51, 0.98), rgba(27, 19, 40, 0.98));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.tina-gallery-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.tina-gallery-modal__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    min-height: 620px;
}

.tina-gallery-modal__main-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.tina-gallery-modal__main-image {
    width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.tina-gallery-modal__sidebar {
    padding: 32px 28px 28px;
}

.tina-gallery-modal__sidebar h2 {
    margin: 14px 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.06;
    color: #ffffff;
}

.tina-gallery-modal__sidebar p {
    margin: 0;
    color: var(--tina-text-soft);
    line-height: 1.75;
}

.tina-gallery-modal__description {
    margin: 14px 0 0;
    color: var(--tina-text-soft);
    font-size: 0.95rem;
    line-height: 1.75;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--tina-line);
}

.tina-gallery-modal__thumbs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.tina-gallery-modal__thumb {
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.tina-gallery-modal__thumb:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 115, 197, 0.34);
}

.tina-gallery-modal__thumb.is-active {
    border-color: rgba(255, 115, 197, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 115, 197, 0.14);
}

.tina-gallery-modal__thumb img {
    width: 100%;
    height: 132px;
    object-fit: cover;
}

/* Prev/next navigation arrows */
.tina-gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(15, 8, 24, 0.60);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tina-gallery-modal__nav:hover {
    background: rgba(255, 115, 197, 0.28);
    border-color: rgba(255, 115, 197, 0.55);
}

.tina-gallery-modal__nav--prev {
    left: 14px;
}

.tina-gallery-modal__nav--next {
    right: 14px;
}

.tina-gallery-modal__nav[hidden] {
    display: none;
}

/* Image counter pill (1 / 3) */
.tina-gallery-modal__counter {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(10, 6, 16, 0.68);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: none;
    white-space: nowrap;
}

.tina-gallery-modal__counter[hidden] {
    display: none;
}

body.tina-gallery-open {
    overflow: hidden;
}

/* Tablet: single column, constrain image height so sidebar stays visible */
@media (max-width: 980px) {
    .tina-gallery-modal__dialog {
        margin: 20px auto;
        max-height: calc(100vh - 40px);
    }

    .tina-gallery-modal__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .tina-gallery-modal__main-wrap {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        max-height: 58vh;
    }

    .tina-gallery-modal__main-image {
        max-height: 52vh;
    }
}

/* Mobile: bottom-sheet style, constrained image, horizontal thumb scroll */
@media (max-width: 760px) {
    /* Anchor dialog to bottom of screen */
    .tina-gallery-modal {
        display: flex;
        align-items: flex-end;
    }

    .tina-gallery-modal__dialog {
        width: 100%;
        margin: 0;
        border-radius: 1.8rem 1.8rem 0 0;
        max-height: 94vh;
        display: flex;
        flex-direction: column;
    }

    /* Let the grid scroll vertically within the dialog */
    .tina-gallery-modal__grid {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tina-gallery-modal__close {
        top: 14px;
        right: 14px;
    }

    .tina-gallery-modal__main-wrap {
        padding: 16px 16px 14px;
        max-height: none;
    }

    .tina-gallery-modal__main-image {
        max-height: 46vh;
    }

    .tina-gallery-modal__sidebar {
        padding: 16px 18px 28px;
    }

    .tina-gallery-modal__sidebar h2 {
        font-size: 1.4rem;
        margin: 8px 0 8px;
    }

    /* Thumbnails: horizontal scroll row instead of grid */
    .tina-gallery-modal__thumbs {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        margin-top: 18px;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .tina-gallery-modal__thumbs::-webkit-scrollbar {
        display: none;
    }

    .tina-gallery-modal__thumb {
        flex: 0 0 88px;
        scroll-snap-align: start;
    }

    .tina-gallery-modal__thumb img {
        height: 80px;
        width: 88px;
    }

    /* Smaller nav arrows on mobile */
    .tina-gallery-modal__nav {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .tina-gallery-modal__nav--prev {
        left: 8px;
    }

    .tina-gallery-modal__nav--next {
        right: 8px;
    }

    .tina-product-card__details-chip {
        right: 12px;
        bottom: 12px;
        font-size: 0.78rem;
    }
}
