:root {
    --ink: #061018;
    --ink-soft: #132532;
    --surface: #f7fafb;
    --surface-strong: #ffffff;
    --line: rgba(9, 33, 48, 0.12);
    --muted: #5f717c;
    --brand: #007ca8;
    --brand-deep: #003c56;
    --brand-soft: #dff5fb;
    --gold: #a16207;
    --cream: #fbfaf7;
    --silver: #edf3f5;
    --shadow-sm: 0 14px 40px rgba(5, 22, 34, 0.08);
    --shadow-lg: 0 34px 90px rgba(2, 14, 24, 0.18);
    --radius: 28px;
    --container: min(1180px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: "IBM Plex Sans Arabic", "Tajawal", system-ui, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.tshirts-product #header {
    inset: 18px 0 auto;
    width: var(--container);
    margin-inline: auto;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(3, 15, 24, 0.72);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

body.tshirts-product #header a,
body.tshirts-product #header span {
    color: rgba(255, 255, 255, 0.78);
}

body.tshirts-product #header > div > a {
    color: #fff;
}

body.tshirts-product #header a:hover,
body.tshirts-product #header a:focus-visible {
    color: #fff;
}

body.tshirts-product .menu-line {
    background: #fff;
}

body.tshirts-product .mobile-menu a,
body.tshirts-product .mobile-menu span {
    color: var(--ink);
}

img,
svg {
    display: block;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
    position: fixed;
    inset-block-start: 14px;
    inset-inline-start: 14px;
    z-index: 100;
    translate: 0 -160%;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    padding: 10px 16px;
    box-shadow: var(--shadow-sm);
    transition: translate 180ms ease;
}

.skip-link:focus {
    translate: 0;
}

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 44%, rgba(0, 124, 168, 0.22), transparent 34%),
        linear-gradient(135deg, #030b11, #061018 48%, #08293a);
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 420ms ease, visibility 420ms ease;
}

.splash-mark {
    display: grid;
    place-items: center;
    width: min(360px, calc(100vw - 64px));
    aspect-ratio: 1.9 / 1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(22px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    animation: splashMark 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.splash-mark img {
    width: min(246px, 70%);
    filter: brightness(0) invert(1);
}

.splash-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.site-header {
    position: fixed;
    z-index: 50;
    inset: 18px 0 auto;
    width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(3, 15, 24, 0.72);
    backdrop-filter: blur(22px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

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

.brand img,
.site-footer img {
    filter: brightness(0) invert(1);
}

.site-nav {
    justify-self: center;
    display: flex;
    gap: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    font-weight: 600;
}

.site-nav a {
    border-radius: 999px;
    padding: 10px 14px;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-link {
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 800;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-link:hover,
.header-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.header-cta,
.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
    background: #fff;
    color: var(--ink);
    padding: 10px 18px;
    font-size: 0.92rem;
}

.header-cta:hover,
.primary-btn:hover,
.ghost-btn:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: 128px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 18%, rgba(0, 124, 168, 0.42), transparent 34%),
        radial-gradient(circle at 72% 62%, rgba(161, 98, 7, 0.14), transparent 30%),
        linear-gradient(135deg, #03101a 0%, #061018 42%, #0b2633 100%);
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -12% -24% -12%;
    height: 42%;
    background:
        repeating-radial-gradient(ellipse at center, rgba(0, 146, 196, 0.34) 0 2px, transparent 3px 18px);
    opacity: 0.14;
    transform: rotate(-6deg);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.04) 36% 50%, transparent 50%),
        radial-gradient(circle at 76% 42%, rgba(255, 255, 255, 0.12), transparent 26%),
        linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 100%);
    background-size: auto, auto, 80px 80px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr minmax(360px, 0.9fr);
    grid-template-areas: "copy product";
    align-items: center;
    gap: clamp(38px, 7vw, 92px);
}

.hero-copy {
    grid-area: copy;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--brand);
    font-family: "Tajawal", "IBM Plex Sans Arabic", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0;
}

.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #80d9f0;
    padding: 9px 14px;
}

h1,
h2,
h3,
p {
    margin-block-start: 0;
}

h1,
h2,
h3 {
    font-family: "Tajawal", "IBM Plex Sans Arabic", sans-serif;
    letter-spacing: 0;
}

h1 {
    max-width: 720px;
    margin-block-end: 18px;
    font-size: clamp(2.55rem, 5.4vw, 5.35rem);
    line-height: 1;
    font-weight: 800;
    text-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
}

.hero-lead {
    max-width: 620px;
    margin-block-end: 26px;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1.04rem, 1.5vw, 1.28rem);
    line-height: 2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-btn {
    border: 0;
    background: linear-gradient(135deg, #00a7d8, #006b91);
    color: #fff;
    padding: 14px 22px;
    box-shadow: 0 18px 44px rgba(0, 124, 168, 0.28);
}

.primary-btn svg,
.ghost-btn svg,
.floating-note svg,
.icon-badge svg,
.detail-list svg,
.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.primary-btn:hover {
    box-shadow: 0 22px 54px rgba(0, 124, 168, 0.38);
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    padding: 14px 20px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 560px;
    margin: 30px 0 0;
}

.hero-stats div {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.hero-stats dt {
    color: #8fe7f5;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 800;
}

.hero-stats dd {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.93rem;
}

.hero-product {
    position: relative;
    grid-area: product;
    min-height: 520px;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
}

.product-orbit {
    position: absolute;
    width: min(520px, 82vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.24), transparent 54%),
        radial-gradient(circle, rgba(0, 158, 204, 0.26), transparent 70%);
    filter: blur(2px);
    animation: pulseGlow 5s ease-in-out infinite;
}

.product-main {
    position: relative;
    z-index: 2;
    width: auto;
    height: min(590px, calc(100svh - 190px));
    max-width: min(430px, 38vw);
    object-fit: contain;
    filter: brightness(1.08) drop-shadow(0 46px 52px rgba(0, 0, 0, 0.44));
    animation: productFloat 7s ease-in-out infinite;
    will-change: transform;
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(3, 15, 24, 0.62);
    color: #fff;
    padding: 12px 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.note-cotton {
    inset-block-start: 12%;
    inset-inline-end: 4%;
}

.note-pack {
    inset-block-end: 12%;
    inset-inline-start: 6%;
}

.section {
    padding: clamp(72px, 9vw, 122px) 0;
    scroll-margin-top: 120px;
}

.section-heading {
    max-width: 720px;
    margin-block-end: 34px;
}

.section-heading h2,
.story-copy h3,
.lab-copy h2,
.order-panel h2 {
    margin-block-end: 16px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
}

.section-heading p,
.story-copy p,
.lab-copy p,
.order-panel p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.icon-badge {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--brand-soft);
    color: var(--brand-deep);
    margin-block-end: 22px;
}

.feature-marker {
    position: absolute;
    z-index: 3;
    left: var(--marker-x);
    top: var(--marker-y);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    max-width: min(230px, 52%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(6, 16, 24, 0.54);
    color: #fff;
    padding: 9px 12px;
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.feature-marker span {
    position: relative;
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: #8fe7f5;
    box-shadow: 0 0 0 8px rgba(143, 231, 245, 0.16);
}

.feature-marker strong {
    font-size: 0.86rem;
    white-space: nowrap;
}

.feature-marker:hover,
.feature-marker:focus-visible,
.feature-marker.is-active {
    background: rgba(6, 16, 24, 0.74);
    border-color: rgba(143, 231, 245, 0.7);
    transform: translate(-50%, -50%) scale(1.04);
}

.feature-marker.is-active span {
    background: #fff;
    box-shadow: 0 0 0 10px rgba(143, 231, 245, 0.24), 0 0 24px rgba(143, 231, 245, 0.68);
}

.detail-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 13px 14px;
    color: var(--ink-soft);
    font-weight: 700;
}

.detail-list svg {
    flex: 0 0 auto;
    margin-block-start: 2px;
    color: var(--brand);
}

.detail-list span {
    display: grid;
    gap: 4px;
}

.detail-list strong {
    color: var(--ink);
    font-size: 1rem;
}

.detail-list small {
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.65;
}

.why-section {
    position: relative;
    z-index: 4;
    margin-block-start: -46px;
}

.why-panel {
    display: grid;
    grid-template-columns: minmax(240px, 0.58fr) minmax(300px, 0.86fr) minmax(260px, 0.74fr);
    align-items: center;
    gap: clamp(22px, 4vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.86);
    padding: clamp(22px, 3.5vw, 38px);
    box-shadow: 0 20px 54px rgba(2, 14, 24, 0.12);
    backdrop-filter: blur(18px);
}

.why-panel h2 {
    margin-block-end: 12px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
}

.why-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.why-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 12px 14px;
    color: var(--ink-soft);
    font-weight: 800;
}

.why-list svg {
    width: 21px;
    height: 21px;
    flex: 0 0 auto;
    color: var(--brand);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-visuals {
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    gap: 12px;
    align-items: end;
}

.why-visuals figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: var(--silver);
    box-shadow: 0 18px 48px rgba(2, 14, 24, 0.12);
}

.why-visuals figure:first-child {
    grid-row: span 2;
    aspect-ratio: 0.82 / 1;
}

.why-visuals figure:not(:first-child) {
    aspect-ratio: 1.12 / 0.78;
}

.why-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.why-visuals figure:hover img {
    transform: scale(1.05);
}

.why-visuals figcaption {
    position: absolute;
    z-index: 2;
    inset: auto 10px 10px;
    border-radius: 999px;
    background: rgba(6, 16, 24, 0.72);
    color: #fff;
    padding: 8px 11px;
    font-size: 0.84rem;
    font-weight: 900;
    backdrop-filter: blur(14px);
}

.fabric-section {
    background:
        radial-gradient(circle at 88% 14%, rgba(0, 124, 168, 0.1), transparent 26%),
        linear-gradient(180deg, var(--surface), #fff);
}

.fabric-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
    gap: clamp(30px, 6vw, 86px);
}

.fabric-copy {
    position: sticky;
    top: 128px;
}

.fabric-copy h2,
.construction-copy h2,
.wear-copy h2,
.pack-copy h2 {
    margin-block-end: 16px;
    color: var(--ink);
    font-size: clamp(2.1rem, 4.7vw, 4.7rem);
    line-height: 1.05;
    font-weight: 900;
}

.fabric-copy p,
.construction-copy p,
.wear-copy p,
.pack-copy p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.9;
}

.fabric-cards {
    display: grid;
    gap: 22px;
}

.fabric-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 0.72fr);
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    padding: clamp(14px, 2vw, 20px);
    box-shadow: var(--shadow-sm);
}

.fabric-card-soft {
    grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.9fr);
    background: #061018;
}

.fabric-card-soft figure {
    order: 2;
}

.fabric-card-soft > div {
    order: 1;
}

.fabric-card figure,
.construction-primary,
.construction-secondary,
.pack-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 26px;
    background: var(--silver);
    box-shadow: 0 22px 62px rgba(2, 14, 24, 0.14);
    isolation: isolate;
}

.fabric-card figure {
    aspect-ratio: 1.25 / 1;
}

.fabric-card img,
.construction-primary img,
.construction-secondary img,
.pack-card img,
.wear-section > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.fabric-card:hover img,
.construction-primary:hover img,
.construction-secondary:hover img,
.pack-card:hover img {
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.085);
}

.fabric-card h3 {
    margin-block-end: 12px;
    color: var(--ink);
    font-size: clamp(1.55rem, 2.8vw, 2.45rem);
    font-weight: 900;
    line-height: 1.15;
}

.fabric-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.fabric-card-soft h3,
.fabric-card-soft p {
    color: #fff;
}

.fabric-card-soft p {
    color: rgba(255, 255, 255, 0.68);
}

.construction-section {
    background: #fff;
}

.construction-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: clamp(30px, 6vw, 80px);
}

.construction-media {
    position: relative;
    min-height: 620px;
}

.construction-primary {
    aspect-ratio: 1.2 / 0.76;
}

.construction-secondary {
    position: absolute;
    width: min(380px, 48%);
    aspect-ratio: 1.05 / 0.78;
    inset-inline-start: -5%;
    inset-block-end: 4%;
    border: 10px solid #fff;
}

.construction-copy {
    max-width: 560px;
}

.wear-section {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #061018;
    color: #fff;
}

.wear-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 12, 18, 0.86), rgba(3, 12, 18, 0.42) 48%, rgba(3, 12, 18, 0.12)),
        linear-gradient(0deg, rgba(3, 12, 18, 0.78), transparent 42%);
    pointer-events: none;
}

.wear-section > img {
    position: absolute;
    inset: 0;
}

.wear-copy {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin-inline: auto;
    padding-block: 0 clamp(70px, 9vw, 120px);
    max-width: 760px;
    margin-inline-start: calc((100vw - var(--container)) / 2);
}

.wear-copy .eyebrow,
.wear-copy h2 {
    color: #fff;
}

.wear-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.wear-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-block-start: 26px;
}

.wear-points span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 10px 14px;
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.wear-marker {
    z-index: 3;
}

.pack-section {
    background:
        radial-gradient(circle at 14% 18%, rgba(0, 124, 168, 0.1), transparent 30%),
        linear-gradient(180deg, #fff, var(--cream));
}

.pack-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(28px, 6vw, 84px);
}

.pack-copy {
    max-width: 520px;
}

.pack-media {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    align-items: end;
    gap: 18px;
}

.pack-card {
    aspect-ratio: 0.82 / 1;
}

.pack-card-2 {
    aspect-ratio: 0.9 / 1.1;
    transform: translateY(-34px);
}

.pack-card figcaption {
    position: absolute;
    z-index: 2;
    inset: auto 16px 16px;
    border-radius: 999px;
    background: rgba(6, 16, 24, 0.72);
    color: #fff;
    padding: 10px 14px;
    font-weight: 900;
    backdrop-filter: blur(14px);
}

.sizes-section {
    background: #061018;
    color: #fff;
}

.sizes-section .section-heading h2,
.sizes-section .section-heading p {
    color: #fff;
}

.sizes-section .section-heading p {
    color: rgba(255, 255, 255, 0.66);
}

.size-guide-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(22px, 4vw, 54px);
}

.size-guide-visual {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(143, 231, 245, 0.2);
    border-radius: calc(var(--radius) + 8px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 78px rgba(0, 0, 0, 0.32);
}

.size-guide-visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.size-guide-visual picture {
    display: block;
}

.size-guide-visual figcaption {
    border-block-start: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.93rem;
    line-height: 1.8;
    margin: 0;
    padding: 14px 16px 16px;
}

.size-guide-table {
    display: grid;
    gap: 16px;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    text-align: center;
}

caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

th,
td {
    border-block-end: 1px solid rgba(255, 255, 255, 0.11);
    padding: 18px 16px;
}

thead th {
    color: #9de8f7;
    font-weight: 800;
}

tbody th {
    color: #fff;
    font-size: 1.18rem;
}

tbody tr:last-child th,
tbody tr:last-child td {
    border-block-end: 0;
}

tbody tr {
    transition: background 180ms ease;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.065);
}

.faq-section {
    background:
        radial-gradient(circle at 82% 16%, rgba(0, 124, 168, 0.1), transparent 30%),
        linear-gradient(180deg, #fff, var(--cream));
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

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

.faq-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    padding: 18px 22px;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-deep);
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease;
}

.faq-item[open] summary::after {
    content: "-";
    transform: rotate(180deg);
    background: #d6f3fb;
}

.faq-item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--muted);
    line-height: 1.9;
}

.order-section {
    background: #fff;
}

.order-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    border-radius: calc(var(--radius) + 8px);
    background:
        radial-gradient(circle at 15% 25%, rgba(0, 124, 168, 0.14), transparent 32%),
        linear-gradient(135deg, #f7fbfc, #eaf5f8);
    padding: clamp(28px, 5vw, 58px);
    box-shadow: var(--shadow-sm);
}

.order-panel .primary-btn {
    min-width: 190px;
}

.site-footer {
    background: #061018;
    color: rgba(255, 255, 255, 0.62);
    padding: 34px 0;
}

.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    z-index: 45;
    inset-inline-end: max(18px, env(safe-area-inset-right));
    inset-block-end: max(18px, env(safe-area-inset-bottom));
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: linear-gradient(135deg, #24d366, #128c7e);
    color: #fff;
    padding: 13px 16px;
    box-shadow: 0 18px 46px rgba(18, 140, 126, 0.28);
    font-weight: 900;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(18, 140, 126, 0.36);
}

.whatsapp-float svg {
    fill: none;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes productFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-1deg);
    }
    50% {
        transform: translate3d(0, -16px, 0) rotate(1deg);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(0.96);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

@keyframes splashMark {
    0% {
        opacity: 0;
        transform: translate3d(0, 18px, 0) scale(0.94);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@media (max-width: 980px) {
    :root {
        --container: min(100vw - 28px, 760px);
    }

    body.tshirts-product #header {
        grid-template-columns: auto auto;
    }

    .site-header {
        grid-template-columns: auto auto;
    }

    .site-nav {
        display: none;
    }

    .hero-grid,
    .fabric-layout,
    .fabric-card,
    .fabric-card-soft,
    .construction-layout,
    .pack-layout,
    .why-panel,
    .size-guide-grid,
    .faq-grid,
    .order-panel {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-areas:
            "product"
            "copy";
        gap: 22px;
    }

    .why-section {
        margin-block-start: -24px;
    }

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

    .why-visuals figure:first-child {
        grid-row: auto;
        aspect-ratio: 1 / 0.92;
    }

    .why-visuals figure:not(:first-child) {
        aspect-ratio: 1 / 0.92;
    }

    .fabric-copy {
        position: static;
    }

    .fabric-card-soft figure,
    .fabric-card-soft > div {
        order: initial;
    }

    .construction-media {
        min-height: 520px;
    }


    .wear-copy {
        margin-inline: auto;
    }

    .pack-media {
        max-width: 680px;
    }

    .hero {
        padding-block-start: 124px;
    }

    .hero-product {
        min-height: 430px;
    }

    .product-main {
        height: min(420px, 48svh);
        max-width: min(320px, 72vw);
    }

    .order-panel .primary-btn {
        justify-self: start;
    }

}

@media (max-width: 640px) {
    body.tshirts-product #header {
        inset-block-start: 10px;
        border-radius: 24px;
        padding: 10px 12px;
    }

    .site-header {
        inset-block-start: 10px;
        border-radius: 24px;
        padding: 10px;
    }

    .brand img {
        width: 126px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-link {
        display: none;
    }

    .header-cta {
        min-height: 40px;
        padding: 8px 12px;
        font-size: 0.84rem;
    }

    .hero {
        min-height: auto;
        padding: 110px 0 64px;
    }

    h1 {
        font-size: clamp(1.95rem, 9.6vw, 2.55rem);
        line-height: 1.04;
    }

    .hero-lead {
        font-size: 0.96rem;
        line-height: 1.72;
        margin-block-end: 18px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .why-panel {
        border-radius: 18px;
        padding: 18px 16px;
    }

    .why-visuals {
        grid-template-columns: 1fr;
    }

    .fabric-card {
        border-radius: 26px;
    }

    .fabric-card figure,
    .construction-primary,
    .construction-secondary,
    .pack-card {
        border-radius: 22px;
    }

    .construction-media {
        display: grid;
        gap: 14px;
        min-height: auto;
    }

    .construction-secondary {
        position: relative;
        inset: auto;
        width: 100%;
        border-width: 0;
    }

    .wear-section {
        min-height: 680px;
    }

    .wear-section::after {
        background:
            linear-gradient(0deg, rgba(3, 12, 18, 0.9), rgba(3, 12, 18, 0.44) 62%, rgba(3, 12, 18, 0.12)),
            linear-gradient(90deg, rgba(3, 12, 18, 0.38), transparent);
    }

    .wear-copy {
        padding-block-end: 58px;
    }

    .pack-media {
        grid-template-columns: 1fr;
    }

    .pack-card-2 {
        transform: none;
    }

    .hero-product {
        min-height: 260px;
        margin-block: 2px 4px;
    }

    .product-main {
        height: min(300px, 36svh);
        max-width: min(240px, 68vw);
    }

    .floating-note {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .note-cotton {
        inset-block-start: 6%;
        inset-inline-end: 0;
    }

    .note-pack {
        inset-block-end: 4%;
        inset-inline-start: 0;
    }

    .feature-marker {
        max-width: 66%;
        padding: 8px 10px;
    }

    .feature-marker strong {
        font-size: 0.78rem;
    }

    .size-guide-visual {
        border-radius: 24px;
    }

    .whatsapp-float {
        inset-inline-start: auto;
        inset-inline-end: 14px;
        justify-content: center;
        padding: 12px 14px;
    }

    .section {
        padding: 66px 0;
    }

    .site-footer .container {
        align-items: flex-start;
        flex-direction: column;
        padding-block-end: 54px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .splash-screen {
        display: none;
    }
}
