
:root {
    --blue-900: #0b1f3a;
    --blue-700: #123764;
    --blue-600: #1a4a89a2;
    --light: #ffffffb9;
    --aziz: #ffffffe1;
    --bg: #f3f6fb;
    --text: #0b1f3a;
    --muted: #6c7a90;
    --danger: #e63946;
    --success: #2a9d8f;
    --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
}
.variant-hint{
  margin: 6px 0 10px;
  font-size: 0.9rem;
  color: var(--blue-700);
  font-weight: 800;
}

* {
    box-sizing: border-box;
}
html, body {
  direction: rtl;
  font-family: "Tahoma", "Segoe UI", Arial, sans-serif;
}

.hero-glass {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero-glass h1,
.hero-glass p {
    color: #fff;
}

body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: url("/images/bg.jpg") no-repeat center center fixed;
    background-size: cover;
    color: var(--text);
    overflow-x: hidden;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 24px;
    }
}

.site-header {
    background: var(--blue-900);
    color: var(--light);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 0;
}

.logo img {
   height: 50px; 
   padding: 0px;     /* augmente la taille */
   /* width: auto; */
}
/* =========================
   VARIANTS - SELECTED STATE
   ========================= */

/* Tailles (chips) */
.chip{
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease;
}

.chip.active{
  border-color: #0b1f3a;
  box-shadow: 0 0 0 3px rgba(11,31,58,.15);
  transform: translateY(-1px);
}

/* Couleurs (swatches) */
.swatch{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 2px solid rgba(0,0,0,.12);
  cursor: pointer;
  position: relative;
  transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease;
}

/* cercle extérieur + glow */
.swatch.active{
  border-color: #0b1f3a;
  box-shadow: 0 0 0 3px rgba(11,31,58,.15);
  transform: translateY(-1px);
}

/* check visible au milieu */
.swatch.active::after{
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.45);
}


.nav {
    display: flex;
    gap: 24px;
    justify-content: center;
    font-weight: 600;
}


.nav a {
    padding: 6px 10px;
    border-radius: 20px;
    transition: 0.2s ease;
}
.nav a{
  position: relative;
  padding: 10px 12px;
}

.nav a::after{
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -6px;
  height: 3px;
  background: #ffffff;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  opacity: .9;
}

.nav a:hover::after,
.nav a.active::after{
  transform: scaleX(1);
}


.nav a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero {
    background: linear-gradient(120deg, var(--blue-900), var(--blue-600));
    color: var(--light);
    padding: 0px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 10px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.hero-card strong {
    font-size: 2rem;
    display: block;
    margin-top: 8px;
}

.section-block {
    margin: 50px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin: 0;
}

.section-hero {
    background: var(--blue-900);
    color: var(--light);
    padding: 40px 0;
    margin-bottom: 30px;
}

.section-hero-inner {
    text-align: center;
}

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

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.product-card {
    background: var(--light);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image .badges {
    position: absolute;
    top: 12px;
    right: 12px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #e4e9f2;
}

.product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.prices {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-old {
    color: var(--danger);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.price-new {
    font-weight: 700;
    font-size: 1.1rem;
}

.badges {
    display: flex;
    gap: 6px;

    margin-top: 8px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--light);
}

.badge-new {
    background: var(--blue-600);
}

.badge-best {
    background: #f4a261;
    color: #382c21;
}

.badge-discount {
    background: #e63946;
}

.promo-savings {
    margin: 8px 0 0;
    font-weight: 700;
    color: var(--blue-700);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn.primary {
    background: var(--blue-900);
    color: var(--light);
}

.btn.primary:hover {
    background: var(--blue-700);
}

.btn.ghost {
    background: transparent;
    border: 1px solid var(--blue-900);
    color: var(--blue-900);
}

.btn.ghost:hover {
    background: var(--blue-900);
    color: var(--light);
}

.site-main {
    padding-bottom: 60px;
}

.site-footer {
    background: var(--blue-900);
    color: var(--light);
    padding: 40px 0 24px;
}

.footer-logo-row {
    text-align: center;
    display: grid;
    gap: 8px;
    justify-items: center;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 54px;
}

.footer-logo span {
    font-weight: 800;
    font-size: 1.2rem;
}

.footer-tagline {
    margin: 0;
    color: #d6e1f2;
    font-weight: 600;
}

.footer-columns {
    display: grid;
    gap: 20px;
    text-align: right;
}

.footer-col h4 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: #d6e1f2;
    margin: 6px 0;
    font-weight: 600;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.footer-socials {
    display: inline-flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 840px) {
    .footer-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-page {
    padding: 40px 0 80px;
}

.product-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: start;
}

.product-gallery {
    position: relative;
}

.gallery-wrap {
    position: relative;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    direction: ltr;
    touch-action: pan-y;
    border-radius: 16px;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    scroll-snap-align: center;
    background: #eef1f7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-help{
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--blue-700);
  font-weight: 700;
}


.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 5;

    /* ✅ Couleur des flèches SVG */
    color: var(--blue-900);
}

/* ✅ SVG toujours visible (et jamais “??”) */
.gallery-nav svg {
    display: block;
}

/* Garde tes positions */
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }


.gallery-indicator {
    position: absolute;
    bottom: 12px;
    inset-inline-start: 12px;
    background: rgba(11, 31, 58, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

@media (hover: hover) {
    .gallery-nav {
        opacity: 0;
        transition: 0.18s ease;
    }
    .gallery-wrap:hover .gallery-nav {
        opacity: 1;
    }
}

.product-details h1 {
    margin-top: 0;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin-bottom: 12px;
    
}

.description {
    margin: 16px 0;
    color: var(--muted);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    color: var(--blue-700);
}

.info-list li {
    margin-bottom: 6px;
}

.order-form {
    background: var(--light);
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.order-formv {
    background: var(--aziz);
    padding: 10px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.form-field {
    margin-bottom: 16px;
}

.input, .order-form input, .order-form select, .order-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d5dbe5;
    font-family: inherit;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--blue-900);
    background: transparent;
    cursor: pointer;
}

.qty-input {
    width: 80px;
    text-align: center;
}

.alert-error {
    background: #fde8ea;
    color: #9b1c26;
    border: 1px solid #f7c9cf;
    padding: 10px 12px;
    border-radius: 10px;
    margin: 0 0 12px;
    font-weight: 700;
}

.form-error {
    color: #b42318;
    font-size: 0.85rem;
    margin-top: 6px;
    line-height: 1.4;
}

.form-error ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.reassurance-text {
    margin: 12px 0 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f0f4fb;
    color: var(--blue-700);
    font-weight: 700;
    font-size: 0.9rem;
}

.reassurance-text p {
    margin: 0;
}

.error-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--danger);
    color: var(--light);
    text-align: center;
    padding: 12px;
    font-weight: 600;
    z-index: 50;
}

.thank-you,
.contact {
    padding: 60px 0;
    text-align: center;
}

.thank-you .order-number {
    font-size: 1.6rem;
    font-weight: 800;
    background: #ffffff;
    color: var(--blue-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.thank-you .confirm-text {
    font-weight: 700;
    color: var(--blue-700);
}

.thank-you-reassurance {
    margin: 12px auto 0;
    max-width: 520px;
    background: #f0f4fb;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
    color: var(--blue-700);
}

.thank-you-reassurance p {
    margin: 0;
}

.order-recap {
    margin: 16px auto 0;
    max-width: 520px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px 16px;
    text-align: right;
    display: grid;
    gap: 10px;
}

.recap-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
    color: var(--blue-900);
}

.recap-row span {
    color: var(--muted);
    font-weight: 600;
}

.recap-row.total {
    border-top: 1px solid #e6ebf3;
    padding-top: 10px;
    font-size: 1rem;
}

.faq-page {
    padding: 40px 0 80px;
}

.static-page {
    padding: 40px 0 80px;
}

.static-page p {
    color: var(--muted);
    line-height: 1.6;
}

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

.faq-item {
    background: var(--light);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px 16px;
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-item p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.contact-card {
    background: var(--light);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 20px auto 0;
}

@media (max-width: 720px) {
    .header-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-items: center;
    }

    .nav {
        gap: 8px;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}
.section-title-center {
    text-align: center;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    margin: 0 0 22px;
}

.section-more-center {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.features-section {
    padding: 40px 0 70px;
}

.features-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.feature-card {
    background: var(--light);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    text-align: right;
}

.feature-card h3 {
    margin: 12px 0 6px;
    font-size: 1.05rem;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(11, 31, 58, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

@media (min-width: 840px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

.empty-state {
    text-align: center;
    color: var(--muted);
}

.btn-buy {
    width: 100%;
    margin-top: auto;
    min-height: 44px;
}
.footer-shipping {
    font-size: 0.85rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.16);
    padding: 6px 12px;
    border-radius: 999px;
    display: inline-flex;
    /*align-items: center;*/
    gap: 6px;
    white-space: nowrap;

    /* IMPORTANT: à gauche */
    margin-right: auto;
    margin-left: 0;
}

/* ===== Product variants layout ===== */
.variant-row{
  display:flex;
  gap:24px;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.variant-block{
  flex:1;
  min-width:220px;
}

.choice-grid{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* Hide radio input but keep accessible */
.choice-grid input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

/* Make each choice look like a button */
.choice-grid label{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid #d5dbe5;
  background:#fff;
  cursor:pointer;
  font-weight:600;
  min-width:80px;
  transition:0.2s ease;
}

/* Selected state */
.choice-grid input[type="radio"]:checked + label{
  border-color: var(--blue-900);
  box-shadow: 0 6px 18px rgba(11,31,58,0.12);
}

/* Sizes: same as buttons */
.sizes-grid label{
  min-width:92px;
}

/* Colors: small squares */
.colors-grid label{
  width:44px;
  height:44px;
  padding:0;
  border-radius:6px;
  min-width:auto;
}

/* If your color text is HEX (ex: #000000), we can show it as background using inline style later.
   For now, it stays as text unless you set background in Twig. */

/* ===== Inputs style like the screenshot ===== */
.order-form input,
.order-form textarea,
.order-form select{
  border:1px solid #e2e6ef;
  border-radius:10px;
  padding:12px 14px;
  background:#fff;
}

.order-form input:focus,
.order-form textarea:focus{
  outline:none;
  border-color: var(--blue-700);
  box-shadow:0 0 0 4px rgba(18,55,100,0.10);
}

/* ===== Buy row (button + qty on the right) ===== */
.buy-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:18px;
}

.buy-btn{
  flex:1;
  height:46px;
  border-radius:8px;
  font-size:1rem;
}

.qty-box{
  display:flex;
  align-items:center;
  gap:10px;
}

.qty-box .qty-btn{
  width:42px;
  height:42px;
  border-radius:6px;
  border:1px solid #e2e6ef;
  background:#f4f6fb;
  cursor:pointer;
}

.qty-box .qty-input{
  width:70px;
  height:42px;
  text-align:center;
  border-radius:6px;
}
.order-form-v2{
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
}

.options-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 12px 0;
}

.option-title{
  font-weight: 700;
  margin-bottom: 8px;
  text-align: right;
}

.chip-list, .swatch-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  border:1px solid #d5dbe5;
  background:#fff;
  padding:8px 12px;
  border-radius:6px;
  cursor:pointer;
  font-weight:600;
}

.chip.active{
  border-color: var(--blue-900);
  box-shadow: 0 0 0 2px rgba(11,31,58,.12);
}

.chip:focus-visible,
.swatch:focus-visible{
  outline: 3px solid rgba(11, 31, 58, 0.35);
  outline-offset: 2px;
}

.chip[disabled],
.swatch[disabled],
.chip.disabled,
.swatch.disabled{
  opacity: 0.45;
  pointer-events: none;
}

.swatch{
  border:1px solid #d5dbe5;
  background:#fff;
  width:auto;
  padding:8px 10px;
  border-radius:6px;
  cursor:pointer;
  font-weight:700;
}

.swatch.active{
  border-color: var(--blue-900);
  box-shadow: 0 0 0 2px rgba(11,31,58,.12);
}

.customer-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.customer-grid .full{
  grid-column: 1 / -1;
}

.cta-row{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top: 14px;
}

.cta-btn{
  flex:1;
  height:46px;
  border-radius:10px;
}

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

.qty-inline .qty-btn{
  width:40px;
  height:40px;
  border-radius:6px;
  border:1px solid #d5dbe5;
}

.qty-inline .qty-input{
  width:64px;
  height:40px;
  border-radius:6px;
  border:1px solid #d5dbe5;
  text-align:center;
}
.hidden-field { display: none; }


@media (max-width: 720px){
  .options-row{ grid-template-columns: 1fr; }
  .customer-grid{ grid-template-columns: 1fr; }
}


/* ===== Footer tweaks ===== */

.reassurance-inline {
    margin: 6px 0 0;
    font-size: 0.9rem;
    color: #e6edf7;
    font-weight: 700;
}

/* ===== Product order form v3 ===== */
.order-form-v3 {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.order-form-v3 .variant-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.order-form-v3 .variant-label {
    font-weight: 700;
    min-width: 70px;
    color: var(--blue-700);
}

.order-form-v3 .variant-control {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.order-form-v3 .chip {
    border: 1px solid #d5dbe5;
    background: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.order-form-v3 .chip.active {
    border-color: var(--blue-900);
    box-shadow: 0 0 0 2px rgba(11, 31, 58, 0.12);
}

.order-form-v3 .swatch {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #d5dbe5;
    cursor: pointer;
    padding: 0;
}

.order-form-v3 .swatch.active {
    border-color: var(--blue-900);
    box-shadow: 0 0 0 2px rgba(11, 31, 58, 0.12);
}

.order-form-v3 .hidden-field {
    display: none;
}

.order-form-v3 .order-inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.order-form-v3 .order-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d5dbe5;
    font-family: inherit;
}

.order-form-v3 textarea.order-input {
    height: 44px;
    resize: none;
}

.order-form-v3 .order-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.order-form-v3 .order-submit {
    order: 2;
    flex: 1;
    height: 46px;
    border-radius: 10px;
}

.order-submit,
.mobile-cta-btn {
    min-height: 44px;
    font-size: 1rem;
}

.mobile-cta-bar {
    display: none;
}

.mobile-cta-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.order-form-v3 .qty-inline {
    order: 1;
}

@media (max-width: 720px) {
    .order-form-v3 .variant-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-form-v3 .order-inputs-row {
        grid-template-columns: 1fr;
    }

    .order-form-v3 .order-cta-row {
        flex-direction: column-reverse;
    }

    .order-form-v3 .order-submit {
        width: 100%;
    }

    .order-form-v3 .qty-inline {
        width: 100%;
        justify-content: center;
    }

    .mobile-cta-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid #e6ebf3;
        box-shadow: 0 -6px 20px rgba(11, 31, 58, 0.12);
        z-index: 60;
    }

    .mobile-cta-btn {
        flex: 1;
    }

    .product-page {
        padding-bottom: 140px;
    }
}
