/* ===========================================================================
   Brittni's Florist and Gifts — combined stylesheet
   Shared base + page-specific sections below
   =========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;1,600&family=Caveat:wght@600;700&display=swap');

/* BASE (shared across all pages) */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #2b2b2b;
  background:
    radial-gradient(ellipse 900px 500px at 8% -5%, #f7c9dc 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 96% 8%, #cfe6d2 0%, transparent 50%),
    radial-gradient(ellipse 600px 400px at 30% 60%, #fceccf 0%, transparent 45%),
    #fdf6ee;
}

/* Headings get a warmer, more distinctive display face */
h1, h2, h3, .logo span.name { font-family: 'Playfair Display', Georgia, serif; }

/* Hand-written accent style, used sparingly for character */
.script-accent { font-family: 'Caveat', cursive; }

/* Reusable flower motif (mirrors the brand mark) — positioned decoratively */
.deco-flower {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.deco-flower svg { display: block; width: 100%; height: 100%; }

/* PALETTE
   pink accent:  #e8a9c0 / soft bg #fdf1f5
   green accent: #8fb996 / soft bg #eef6ef
   deep plum (new accent for contrast): #7a4a5c
*/

/* ===========================================================================
   HOME PAGE (index.html)
   =========================================================================== */

  /* NAVBAR */
  header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px 34px;
    flex-wrap: wrap;
    gap: 16px;
    background: linear-gradient(115deg, #fbdfe9 0%, #fef3e2 55%, #fdf6ee 100%);
    z-index: 2;
  }
  /* scalloped edge instead of a flat border line */
  header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 14px;
    background-image: radial-gradient(circle at 10px 0, transparent 9px, #fffaf6 10px);
    background-size: 20px 14px;
    background-repeat: repeat-x;
  }
  .logo { display: flex; align-items: center; gap: 16px; }
  .logo img {
    height: 74px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(122,74,92,0.2);
    border: 3px solid #fff;
  }
  .logo span.name {
    font-size: 34px;
    font-weight: 700;
    color: #6b3b4d;
    letter-spacing: 0.2px;
    line-height: 1;
  }
  .logo span.name .script {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 1.35em;
    color: #c2597a;
    padding-right: 2px;
  }
  .status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    width: fit-content;
  }
  .status .dot { width: 6px; height: 6px; border-radius: 50%; }
  .status.open { color: #4a7a56; background: #eef6ef; }
  .status.open .dot { background: #7fb98b; }
  .status.closed { color: #b3565f; background: #fdf1f5; }
  .status.closed .dot { background: #e8a9c0; }

  .nav-buttons { display: flex; align-items: center; gap: 12px; }

  /* btn-secondary and btn-cta share one simple, calm shape — a full pill —
     so the pair reads as an intentional set rather than two different,
     fussy corner treatments competing with each other. */
  .btn-secondary,
  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  }
  .btn-secondary {
    color: #6b3b4d;
    background: #fff;
    border: 1.5px solid #f0d3dd;
  }
  .btn-secondary:hover { border-color: #e8a9c0; }
  .btn-cta {
    background: #c2597a;
    color: #fff;
    border: 1.5px solid #c2597a;
  }
  .btn-cta:hover { background: #ab4165; border-color: #ab4165; }

  /* status shown as a small solid pill instead of a bare dot + caps text,
     so it matches the weight of the button it lives inside */
  .btn-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.2px;
  }
  .btn-status-pill .btn-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .btn-status-pill.open { color: #4a7a56; background: #eef6ef; }
  .btn-status-pill.open .btn-status-dot { background: #7fb98b; }
  .btn-status-pill.closed { color: #b3565f; background: #fdf1f5; }
  .btn-status-pill.closed .btn-status-dot { background: #e08a97; }
  .btn-status-pill.pending { color: #a08a70; background: #fbf3e8; }
  .btn-status-pill.pending .btn-status-dot { background: #d8bd93; }

  /* HERO */
  .hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    padding: 64px 40px 76px;
    align-items: center;
    overflow: hidden;
  }
  .hero-image {
    width: 100%;
    height: 420px;
    background: #f3f0ee;
    border: 7px solid #fff;
    border-radius: 16px 56px 16px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a89e98;
    font-size: 14px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform: none;
    box-shadow: 0 18px 34px rgba(122,74,92,0.16);
    position: relative;
    z-index: 1;
    justify-self: end;
  }
  .hero-text { position: relative; z-index: 1; padding-right: 20px; }
  .hero-text .eyebrow {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: #b3565f;
    display: block;
    margin-bottom: 2px;
  }
  .hero-text h1 {
    font-size: 44px;
    line-height: 1.12;
    margin-bottom: 18px;
    color: #3a2530;
    max-width: 460px;
  }
  .hero-text h1 .hl {
    color: #c2597a;
    font-style: italic;
  }
  .hero-text p { font-size: 16px; line-height: 1.7; color: #5a5a5a; margin-bottom: 26px; max-width: 440px; }

  /* tilted stamp badge, overlapping the hero photo for a hand-made feel */
  .hero-stamp {
    position: absolute;
    z-index: 2;
    top: -18px;
    right: 6%;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: #fbe100;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(58,37,48,0.18);
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 15px;
    color: #3a2530;
    line-height: 1.2;
    padding: 6px;
  }

  .hero .deco-flower.f1 { width: 130px; height: 130px; top: -30px; left: -20px; transform: rotate(-18deg); }
  .hero .deco-flower.f2 { width: 70px; height: 70px; bottom: 10px; right: 12%; transform: rotate(20deg); opacity: 0.35; }
  .hero .deco-flower.f3 { width: 46px; height: 46px; top: 40%; left: 42%; transform: rotate(8deg); opacity: 0.3; }

  /* LOCATION (compact) */
  .location-section {
    position: relative;
    margin: 10px 40px 60px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(120deg, #dcefe0 0%, #eef6ef 100%);
    padding: 36px;
    border-radius: 24px;
  }
  .location-section iframe {
    width: 100%;
    height: 230px;
    border: 5px solid #fff;
    border-radius: 16px 56px 16px 56px;
    display: block;
    filter: saturate(1.05);
    box-shadow: 0 14px 26px rgba(47,74,53,0.12);
  }
  .location-blurb h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2f4a35;
  }
  .location-blurb p { font-size: 15px; color: #4d5d50; line-height: 1.6; margin-bottom: 10px; }
  .location-caption {
    font-size: 13px;
    color: #6f7f72;
    font-weight: bold;
  }
  .location-caption a { color: #2f4a35; text-decoration: none; }

  /* GALLERY */
  .gallery-section { position: relative; margin: 0 40px 70px; }
  .gallery-section h2 { font-size: 30px; color: #3a2530; margin-bottom: 4px; }
  .gallery-section .section-sub { font-family: 'Caveat', cursive; font-size: 19px; color: #b3565f; margin-bottom: 30px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: 16px;
  }
  /* asymmetric layout: first tile runs tall, breaking the uniform grid */
  .gallery-grid figure {
    margin: 0;
    grid-row: span 1;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f0ee;
    border: 4px solid #fff;
    box-shadow: 0 6px 16px rgba(122,74,92,0.08);
  }
  .gallery-grid figure:nth-child(1) { grid-row: span 2; }
  .gallery-grid figure { border-color: #fff; border-width: 5px; }
  .gallery-grid figure:nth-child(odd) { box-shadow: 0 10px 20px rgba(122,74,92,0.14); }
  .gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
  @media (max-width: 700px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid figure:nth-child(1) { grid-row: span 1; }
    .gallery-grid figure { transform: none !important; margin: 0 !important; }
  }

  /* TESTIMONIALS */
  .testimonials-section { position: relative; margin: 0 40px 70px; padding: 54px 40px; background: linear-gradient(120deg, #f9d9e4 0%, #fbe6ed 100%); border-radius: 24px; }
  .testimonials-section h2 { font-size: 30px; color: #6b3b4d; margin-bottom: 30px; text-align: center; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(122,74,92,0.07);
    position: relative;
  }
  .testimonial-card { border-top: 4px solid #d9a3b5; }
  .testimonial-stars { color: #d9a3b5; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
  .testimonial-card p.quote { font-size: 14px; color: #4a4a4a; line-height: 1.6; margin-bottom: 12px; }
  .testimonial-card p.author { font-size: 13px; font-weight: bold; color: #b3565f; }
  @media (max-width: 700px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { transform: none !important; margin: 0 !important; }
  }

  /* FOOTER */
  footer {
    position: relative;
    padding: 40px 40px 20px;
    background: linear-gradient(135deg, #6b3b4d 0%, #4a2c39 100%);
    color: #f3e6ea;
    overflow: hidden;
  }
  footer::before {
    content: "";
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 14px;
    background-image: radial-gradient(circle at 10px 14px, transparent 9px, #4a2c39 10px);
    background-size: 20px 14px;
    background-repeat: repeat-x;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    padding-top: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .footer-top div[style*="color:#333"] { color: #fff !important; }
  .footer-top div[style*="color:#777"] { color: #e3cdd4 !important; }
  .footer-top a[style*="color:#777"] { color: #e3cdd4 !important; }
  .footer-hours { font-size: 12px; color: #e3cdd4; }
  .footer-hours-title {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
  }
  .fh-heading { font-weight: bold; color: #fff; font-size: 13px; }
  .fh-live-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: bold;
  }
  .fh-live-status .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
  .fh-live-status.open { color: #a8dcb2; }
  .fh-live-status.open .dot { background: #a8dcb2; }
  .fh-live-status.closed { color: #f0aab4; }
  .fh-live-status.closed .dot { background: #f0aab4; }
  .footer-hours-grid {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 5px 14px;
  }
  .footer-hours-grid .fh-day { color: #c9a9b3; font-weight: bold; text-align: left; }
  .footer-hours-grid .fh-time { text-align: left; }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    color: #e3cdd4;
    padding-top: 14px;
  }
  .footer-left { display: flex; align-items: center; gap: 16px; }
  .footer-left a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
  }
  .footer-left a.fb { background: #1877f2; }
  .footer-left a.ig { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
  .footer-left a svg { display: block; }

  .footer-payments { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
  .pay-icon {
    height: 24px;
    min-width: 38px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-size: 11px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid #e2e2e2;
    background: #fff;
  }
  .pay-icon.cashapp { background: #00d632; color: #fff; border: none; }
  .pay-icon.applepay { background: #000; color: #fff; border: none; gap: 3px; }
  .pay-icon.googlepay { color: #5f6368; }
  .pay-icon.googlepay span.g { color: #4285f4; }
  .pay-icon.visa { color: #1a1f71; font-style: italic; letter-spacing: 0.5px; }
  .pay-icon.mastercard { gap: 0; }
  .pay-icon.mastercard .c1 { width: 13px; height: 13px; border-radius: 50%; background: #eb001b; }
  .pay-icon.mastercard .c2 { width: 13px; height: 13px; border-radius: 50%; background: #f79e1b; margin-left: -5px; mix-blend-mode: multiply; }
  .pay-icon.amex { background: #016fd0; color: #fff; border: none; }
  .pay-icon.discover { color: #f68121; font-style: italic; }
  .pay-icon.jcb span.j { color: #0e4c96; }
  .pay-icon.jcb span.c { color: #e01f26; }
  .pay-icon.jcb span.b { color: #159652; }

  @media (max-width: 700px) {
    .hero { grid-template-columns: 1fr; }
    .location-section { grid-template-columns: 1fr; }
    header { flex-direction: column; gap: 16px; }
    .location-section iframe { height: 300px; }
  }


/* ===========================================================================
   ORDER PAGE (order_index.html)
   =========================================================================== */

  /* NAVBAR */
  header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 30px;
    flex-wrap: wrap;
    gap: 16px;
    background: linear-gradient(135deg, #fff8fb 0%, #fffdfb 60%);
  }
  header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 14px;
    background-image: radial-gradient(circle at 10px 0, transparent 9px, #fffaf6 10px);
    background-size: 20px 14px;
    background-repeat: repeat-x;
  }
  .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .logo img {
    height: 72px;
    border-radius: 50%;
    transform: rotate(-4deg);
    box-shadow: 0 4px 14px rgba(122,74,92,0.15);
  }
  .logo span.name { font-size: 22px; font-weight: 700; color: #6b3b4d; }

  .nav-buttons { display: flex; align-items: center; gap: 12px; }
  /* buttons on this page reuse the shared .btn-secondary / .btn-cta / .btn-status-pill
     rules defined above so both pages present the same matched button pair */

  @media (max-width: 700px) {
    header { flex-direction: column; gap: 16px; }
  }

  /* PAGE CONTENT */
  .page-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 20px 80px;
  }
  .page-header { text-align: center; margin-bottom: 32px; }
  .page-header h1 { font-size: 28px; color: #2b2b2b; margin-bottom: 8px; }
  .page-header p { font-size: 14px; color: #888; }

  .form-box {
    background: #fff;
    border: 1px solid #f0ebe8;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  }

  .order-form { display: flex; flex-direction: column; }

  .form-section { padding: 26px 0; }
  .form-section:first-child { padding-top: 0; }
  .form-section + .form-section { border-top: 1px solid #f2ede9; }

  .section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }
  .section-heading h3 {
    font-size: 15px;
    color: #333;
    font-weight: bold;
  }
  .section-heading .section-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fdf1f5;
    color: #b3565f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 7px;
    box-sizing: border-box;
  }

  .section-fields { display: flex; flex-direction: column; gap: 14px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-field { display: flex; flex-direction: column; gap: 6px; }
  .form-field label { font-size: 12px; font-weight: bold; color: #555; }
  .form-field .hint { font-size: 11px; font-weight: normal; color: #999; }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: inherit;
    font-size: 14px;
    padding: 10px 12px;
    border: 1px solid #e2ddda;
    border-radius: 8px;
    color: #2b2b2b;
    background: #fff;
    width: 100%;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: #d9a3b5;
  }
  .form-field textarea { resize: vertical; min-height: 70px; }

  .input-with-prefix { position: relative; }
  .input-with-prefix .prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
    pointer-events: none;
  }
  .input-with-prefix input { padding-left: 24px; }
  /* hide native number spinner arrows */
  .input-with-prefix input::-webkit-outer-spin-button,
  .input-with-prefix input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .input-with-prefix input[type="number"] { -moz-appearance: textfield; }

  .budget-pills { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
  .budget-pill {
    padding: 8px 18px;
    border: 1px solid #e2ddda;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    background: #fafafa;
    transition: all 0.12s ease;
  }
  .budget-pill:hover { border-color: #d9a3b5; background: #fff; }
  .budget-pill.selected {
    border-color: #d9a3b5;
    background: #fdf1f5;
    color: #b3565f;
  }

  .field-footer {
    display: flex;
    justify-content: flex-end;
    font-size: 11px;
    color: #aaa;
    margin-top: -2px;
  }

  .toggle-group { display: flex; gap: 8px; }
  .toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 10px;
    border: 1px solid #e2ddda;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
    background: #fff;
  }
  .toggle-option svg { flex-shrink: 0; }
  .toggle-option.selected {
    border-color: #d9a3b5;
    background: #fdf1f5;
    color: #b3565f;
  }

  .pickup-info-box {
    display: none;
    align-items: center;
    gap: 12px;
    background: #eef6ef;
    border-radius: 8px;
    padding: 12px 14px;
    color: #4a7a56;
  }
  .pickup-info-box svg { flex-shrink: 0; }
  .pickup-info-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
  .pickup-info-text strong { font-size: 13px; color: #2b2b2b; }
  .pickup-info-text span { font-size: 12px; color: #666; }
  .pickup-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: bold;
    color: #4a7a56;
    text-decoration: none;
    background: #fff;
    border: 1px solid #cfe6d3;
    padding: 7px 12px;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .pickup-directions-link:hover { background: #f5faf6; }

  .payment-note {
    font-size: 13px;
    color: #666;
    background: #eef6ef;
    border-radius: 8px;
    padding: 12px 14px;
    line-height: 1.5;
    margin-top: -6px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }
  .payment-note i { margin-top: 1px; }

  .form-submit-row { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
  .btn-submit {
    background: #d9a3b5;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s ease;
  }
  .btn-submit:hover { background: #c98ba0; }
  .btn-submit:disabled { background: #e6c3d0; cursor: default; }
  .form-status { font-size: 13px; color: #666; }

  /* spinny flower loader */
  .flower-spinner {
    display: none;
    width: 20px;
    height: 20px;
    animation: spin 0.9s linear infinite;
  }
  .flower-spinner.active { display: inline-block; }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* success checkmark */
  .success-check {
    display: none;
    width: 22px;
    height: 22px;
  }
  .success-check.active { display: inline-block; }
  .success-check circle {
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 63;
    stroke-dashoffset: 63;
    animation: circle-draw 0.4s ease forwards;
  }
  .success-check path {
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: check-draw 0.3s ease 0.35s forwards;
  }
  @keyframes circle-draw {
    to { stroke-dashoffset: 0; }
  }
  @keyframes check-draw {
    to { stroke-dashoffset: 0; }
  }

  .btn-submit.success { background: #7fb98b; }

  /* success confirmation panel */
  .order-success-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 10px 10px;
    gap: 10px;
  }
  .order-success-panel.active { display: flex; }
  .order-success-panel .big-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef6ef;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pop-in 0.3s ease;
  }
  .order-success-panel .big-check svg { width: 30px; height: 30px; }
  .order-success-panel .big-check svg circle {
    stroke: #7fb98b;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 63;
    stroke-dashoffset: 63;
    animation: circle-draw 0.5s ease forwards;
  }
  .order-success-panel .big-check svg path {
    stroke: #7fb98b;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: check-draw 0.3s ease 0.4s forwards;
  }
  @keyframes pop-in {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  .order-success-panel h3 { font-size: 19px; color: #2b2b2b; margin-top: 4px; }
  .order-success-panel p { font-size: 14px; color: #777; max-width: 340px; }
  .btn-close-success {
    margin-top: 10px;
    background: #fff;
    border: 1px solid #dcebde;
    color: #4a6b52;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
  }
  .btn-close-success:hover { background: #f5faf6; }

  @media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
    .form-box { padding: 24px 18px; }
    .form-section { padding: 20px 0; }
  }
