/*
Theme Name: Qiri Atelier
Theme URI: https://qiriatelier.com
Author: Qiri Atelier
Description: Temë e personalizuar për Qiri Atelier — qirinj dekorativë të punuar me dorë dhe të aromatizuar.
Version: 1.1
Text Domain: qiri-atelier
*/

/* ============================================
   DESIGN TOKENS
============================================ */
:root {
  --rose: #F2A7BB;
  --blush: #FDE8EF;
  --petal: #FCCEDD;
  --cream: #FFF9FB;
  --deep-rose: #D4849A;
  --warm-brown: #4A2C32;
  --soft-gray: #9E8B8F;
  --light-gray: #F8F2F4;
  --white: #FFFFFF;
  --lavender: #E8D5F0;
  --baby-blue: #D5EAF7;
  --peach: #FFE0CC;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Quicksand', 'Segoe UI', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 28px rgba(212,132,154,0.10);
  --shadow-hover: 0 12px 44px rgba(212,132,154,0.20);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--warm-brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--deep-rose); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--warm-brown); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--warm-brown);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: 8px;
}

/* ============================================
   HEADER
============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,249,251,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(242,167,187,0.15);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(212,132,154,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--petal);
  transition: transform 0.3s;
}
.site-logo:hover img { transform: rotate(8deg) scale(1.05); }
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--warm-brown);
}
.site-logo-text em {
  font-style: italic;
  color: var(--deep-rose);
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-brown);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: var(--petal);
  border-radius: 3px;
  transition: width 0.3s, left 0.3s;
}
.main-nav a:hover::after { width: 100%; left: 0; }

.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--petal)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(242,167,187,0.3) !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 24px rgba(242,167,187,0.45) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--warm-brown); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.35s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--petal));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(242,167,187,0.3);
}
.btn-primary:hover {
  color: var(--white);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(242,167,187,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--deep-rose);
  border: 2px solid var(--petal);
}
.btn-outline:hover {
  background: var(--blush);
  color: var(--warm-brown);
  transform: translateY(-3px);
}

/* ============================================
   HERO
============================================ */
.hero {
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--blush) 0%, var(--cream) 60%, var(--white) 100%);
}
/* cute floating petal decorations */
.hero::before {
  content: '🌸';
  position: absolute;
  top: 18%;
  right: 8%;
  font-size: 2.4rem;
  opacity: 0.25;
  animation: floaty 6s ease-in-out infinite;
}
.hero::after {
  content: '✨';
  position: absolute;
  bottom: 22%;
  left: 6%;
  font-size: 1.8rem;
  opacity: 0.2;
  animation: floaty 5s ease-in-out infinite 1s;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-content h1 { margin-bottom: 18px; font-style: italic; }
.hero-content h1 span { color: var(--deep-rose); }
.hero-content p {
  font-size: 1rem;
  color: var(--soft-gray);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.85;
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.hero-images img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: 240px;
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}
.hero-images img:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-hover);
}
.hero-images img:first-child {
  grid-row: span 2;
  height: 100%;
}

/* ============================================
   CUTE MARQUEE
============================================ */
.cute-marquee {
  overflow: hidden;
  padding: 16px 0;
  background: linear-gradient(90deg, var(--petal), var(--rose), var(--petal));
  white-space: nowrap;
}
.cute-marquee-inner {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.cute-marquee span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 24px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   FEATURES
============================================ */
.features-strip {
  padding: 60px 0;
  background: var(--white);
}
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  border-radius: var(--radius);
  background: var(--cream);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feature-icon { font-size: 2.2rem; line-height: 1; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.feature-desc {
  font-size: 0.8rem;
  color: var(--soft-gray);
  line-height: 1.6;
}

/* ============================================
   PRODUCT CARDS
============================================ */
.products-section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 52px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}
.product-card:hover {
  transform: translateY(-10px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}
.product-card-img-wrap { overflow: hidden; }
.product-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover .product-card-img { transform: scale(1.08); }
.product-card-body { padding: 22px; }
.product-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.product-card-desc {
  font-size: 0.85rem;
  color: var(--soft-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}
.product-card .btn {
  width: 100%;
  justify-content: center;
  padding: 11px 20px;
  font-size: 0.76rem;
}

/* ============================================
   ABOUT TEASER
============================================ */
.about-teaser {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
  position: relative;
}
.about-teaser::before {
  content: '🕯️';
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 3rem;
  opacity: 0.12;
  animation: floaty 7s ease-in-out infinite 0.5s;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.5s;
}
.about-img:hover { transform: rotate(-1deg) scale(1.02); }
.about-content p {
  color: var(--soft-gray);
  margin-bottom: 24px;
  line-height: 1.85;
}

/* ============================================
   INSTAGRAM
============================================ */
.instagram-section {
  padding: 80px 0;
  text-align: center;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.insta-grid a { display: block; overflow: hidden; border-radius: var(--radius-sm); }
.insta-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.insta-grid a:hover img { transform: scale(1.08) rotate(1deg); }

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--petal) 50%, var(--lavender) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -100px; right: -100px;
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-section .btn {
  background: var(--white);
  color: var(--deep-rose);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.cta-section .btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  color: var(--warm-brown);
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--warm-brown);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .site-logo-text { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.86rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--rose); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--white);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.footer-social a:hover {
  background: var(--rose);
  transform: translateY(-4px) scale(1.1);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 0.78rem;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-section { padding: 140px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; background: var(--white);
  border: 1.5px solid rgba(242,167,187,0.2);
  border-radius: var(--radius-sm); margin-bottom: 14px;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none; color: var(--warm-brown);
}
.contact-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.contact-card-icon { font-size: 1.3rem; }
.contact-card-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--deep-rose); margin-bottom: 2px; }
.contact-card-value { font-size: 0.9rem; color: var(--warm-brown); }

.about-section { padding: 140px 0 80px; }

/* Form styling */
.qiri-form input, .qiri-form textarea, .qiri-form select {
  width: 100%; padding: 13px 18px;
  background: var(--white); border: 1.5px solid rgba(242,167,187,0.25);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 0.9rem; color: var(--warm-brown); outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.qiri-form input:focus, .qiri-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(242,167,187,0.12);
}

/* WPForms override */
.qiri-wpforms .wpforms-submit {
  background: linear-gradient(135deg, var(--rose), var(--petal)) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  padding: 13px 32px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 16px rgba(242,167,187,0.3) !important;
}
.qiri-wpforms .wpforms-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 24px rgba(242,167,187,0.45) !important;
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 120px 0 60px; }
  .hero-images img { height: 190px; }
  .hero-images img:first-child { grid-row: auto; height: 190px; }
}

@media (max-width: 600px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #FFFFFF;
    z-index: 999;
    justify-content: center; align-items: center; gap: 24px;
  }
  .main-nav.open::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #FFFFFF;
    z-index: -1;
  }
  .main-nav.open a {
    font-size: 1.15rem;
    padding: 14px 40px;
    background: var(--blush);
    border-radius: 50px;
    width: 240px;
    text-align: center;
    color: var(--warm-brown);
  }
  .main-nav.open .nav-cta {
    background: linear-gradient(135deg, var(--rose), var(--petal)) !important;
    color: var(--white) !important;
  }
  .nav-toggle { display: block; z-index: 1001; }
  .products-grid { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr; }
  .hero-images { grid-template-columns: 1fr; }
  .hero-images img:first-child { grid-row: auto; }
  input, select, textarea { font-size: 16px !important; }
}

/* ============================================
   CUTE ANIMATIONS
============================================ */

/* Floating petals particles */
.petal-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}
.petal {
  position: absolute;
  font-size: 1rem;
  opacity: 0;
  animation: petalFall linear forwards;
}
@keyframes petalFall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(100vh) rotate(720deg); }
}

/* Animated candle flame SVG */
.candle-flame-wrap {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 120px;
  height: 200px;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}
@keyframes flicker {
  0%, 100% { transform: scaleY(1) scaleX(1) translateY(0); opacity: 0.9; }
  25% { transform: scaleY(1.08) scaleX(0.95) translateY(-2px); opacity: 1; }
  50% { transform: scaleY(0.96) scaleX(1.04) translateY(1px); opacity: 0.85; }
  75% { transform: scaleY(1.05) scaleX(0.97) translateY(-1px); opacity: 0.95; }
}
.flame-body { animation: flicker 2s ease-in-out infinite; transform-origin: bottom center; }

/* Sparkle on hover for product cards */
.product-card::before {
  content: '✨';
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(0) rotate(-20deg);
  z-index: 2;
}
.product-card { position: relative; }
.product-card:hover::before {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Gentle pulse on CTA button */
@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(242,167,187,0.3); }
  50% { box-shadow: 0 4px 28px rgba(242,167,187,0.5); }
}
.cta-section .btn {
  animation: gentlePulse 3s ease-in-out infinite;
}

/* Heart beat on contact CTA */
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.08); }
}
.nav-cta { animation: heartBeat 4s ease-in-out infinite; }

/* Wavy underline for h2 */
.section-header h2 {
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--petal), var(--rose), var(--petal));
  border-radius: 4px;
}

/* ============================================
   PRODUCT PICKER (Order page)
============================================ */
.picker-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow);
}
.picker-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s;
}
.picker-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--petal);
}
.picker-item:hover img { transform: scale(1.05); }

.picker-item.active {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(242,167,187,0.25), var(--shadow-hover);
  transform: translateY(-6px);
}
.picker-item.active img { transform: scale(1.05); }

.picker-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.picker-item.active .picker-check {
  opacity: 1;
  transform: scale(1);
}

.picker-label {
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--warm-brown);
  background: var(--white);
  text-align: center;
}
.picker-item.active .picker-label {
  background: var(--blush);
  color: var(--deep-rose);
}

/* Form labels */
.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-rose);
  margin-bottom: 6px;
}

/* Form inputs on order page */
.qiri-form input,
.qiri-form textarea,
.qiri-form select {
  width: 100%;
  padding: 13px 18px;
  background: var(--white);
  border: 1.5px solid rgba(242,167,187,0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--warm-brown);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.qiri-form input:focus,
.qiri-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(242,167,187,0.12);
}
.qiri-form input::placeholder,
.qiri-form textarea::placeholder {
  color: var(--soft-gray);
  opacity: 0.7;
}

/* Responsive picker */
@media (max-width: 900px) {
  .product-picker > div { grid-template-columns: repeat(2, 1fr) !important; }
  .contact-section .contact-card { font-size: 0.85rem; }
}
@media (max-width: 600px) {
  .product-picker > div { grid-template-columns: 1fr !important; }
  .contact-section > .container > div:last-child { grid-template-columns: 1fr !important; }
}


/* Smaller eyebrow on mobile */
@media (max-width: 600px) {
  .hero .section-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
  }
}

/* Contact card SVG icons */
.contact-card-icon svg {
  color: var(--deep-rose);
  flex-shrink: 0;
}
.contact-card:hover .contact-card-icon svg {
  color: var(--rose);
}
