﻿:root {
      --gold: #c9a84c;
      --gold-light: #e8d08a;
      --gold-dark: #8f6d1e;
      --cream: #fdf8f0;
      --warm-white: #fffef9;
      --deep: #1a1208;
      --brown: #3d2b0e;
      --text: #2e1f06;
      --text-light: #7a5c2e;
      --cross-color: #c9a84c;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* --- HERO --- */
    .hero {
      min-height: 100vh;
      background: linear-gradient(160deg, #1a1208 0%, #2e1f06 40%, #3d2b0e 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,168,76,0.12) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .hero-cross {
      font-size: 3rem;
      color: var(--gold);
      margin-bottom: 20px;
      animation: fadeDown 1s ease forwards;
      opacity: 0;
    }

    .hero-brand {
      font-family: 'Cinzel', serif;
      font-size: clamp(0.75rem, 2vw, 0.95rem);
      letter-spacing: 0.5em;
      color: var(--gold-light);
      text-transform: uppercase;
      margin-bottom: 16px;
      animation: fadeDown 1s 0.2s ease forwards;
      opacity: 0;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 8vw, 6rem);
      font-weight: 300;
      color: var(--warm-white);
      line-height: 1.05;
      margin-bottom: 10px;
      animation: fadeDown 1s 0.35s ease forwards;
      opacity: 0;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2.5vw, 1.4rem);
      font-style: italic;
      color: rgba(253,248,240,0.65);
      margin: 18px 0 36px;
      max-width: 480px;
      line-height: 1.7;
      animation: fadeDown 1s 0.5s ease forwards;
      opacity: 0;
    }

    .daily-scripture {
      margin: 0 0 28px;
      max-width: 520px;
      text-align: center;
      border-top: 1px solid rgba(201,168,76,0.25);
      border-bottom: 1px solid rgba(201,168,76,0.25);
      padding: 16px 24px;
      animation: fadeDown 1s 0.52s ease forwards;
      opacity: 0;
    }

    .daily-scripture-label {
      font-family: 'Cinzel', serif;
      font-size: 0.62rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
      display: block;
    }

    .daily-scripture-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1rem, 2.2vw, 1.25rem);
      font-style: italic;
      color: rgba(253,248,240,0.88);
      line-height: 1.65;
    }

    .daily-scripture-ref {
      display: block;
      margin-top: 8px;
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      color: var(--gold-light);
      font-style: normal;
    }

    .hero-price-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      color: var(--deep);
      padding: 10px 28px;
      border-radius: 60px;
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      margin-bottom: 36px;
      animation: fadeDown 1s 0.65s ease forwards;
      opacity: 0;
      box-shadow: 0 4px 24px rgba(201,168,76,0.3);
    }

    .hero-cta {
      display: inline-block;
      padding: 16px 48px;
      border: 1.5px solid var(--gold);
      color: var(--gold-light);
      font-family: 'Cinzel', serif;
      font-size: 0.85rem;
      letter-spacing: 0.3em;
      text-decoration: none;
      text-transform: uppercase;
      transition: all 0.3s ease;
      animation: fadeDown 1s 0.8s ease forwards;
      opacity: 0;
    }

    .hero-cta:hover {
      background: var(--gold);
      color: var(--deep);
    }

    .scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(201,168,76,0.5);
      font-size: 1.5rem;
      animation: bounce 2s infinite;
      text-decoration: none;
    }

    /* --- DIVIDER --- */
    .divider {
      text-align: center;
      padding: 20px 20px 0;
      color: var(--gold);
      font-size: 1.4rem;
      letter-spacing: 0.5em;
    }

    /* --- ABOUT BAND --- */
    .about {
      background: var(--warm-white);
      padding: 30px 20px 80px;
      text-align: center;
    }

    .section-label {
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      letter-spacing: 0.5em;
      color: var(--gold-dark);
      text-transform: uppercase;
      margin-bottom: 16px;
      margin-top: 0;
    }

    .about h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 300;
      color: var(--brown);
      margin-bottom: 24px;
    }

    .about p {
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--text-light);
      font-weight: 300;
    }

    .about-features {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-top: 56px;
      flex-wrap: wrap;
    }

    .feature {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      max-width: 160px;
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--gold);
    }

    .feature span {
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-light);
      text-align: center;
    }

    /* --- BRACELETS GRID --- */
    .shop {
      background: var(--cream);
      padding: 80px 20px;
    }

    .shop-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .shop-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 300;
      color: var(--brown);
    }

    .shop-note {
      margin-top: 12px;
      font-size: 0.95rem;
      color: var(--text-light);
      font-weight: 300;
    }

    .bracelets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 32px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .bracelet-card {
      background: var(--warm-white);
      border: 1px solid rgba(201,168,76,0.2);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .bracelet-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(61,43,14,0.12);
    }

    .card-img {
      width: 100%;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      background: linear-gradient(135deg, #1a1208, #3d2b0e);
      position: relative;
      overflow: hidden;
    }

    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #1a1208;
      display: block;
      padding: 12px;
      box-sizing: border-box;
    }

    .card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 40% 40%, rgba(201,168,76,0.15), transparent 60%);
    }

    .card-body {
      padding: 22px 24px 26px;
    }

    .card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--brown);
      margin-bottom: 6px;
    }

    .card-verse {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.9rem;
      color: var(--gold-dark);
      margin-bottom: 10px;
    }

    .card-desc {
      font-size: 0.88rem;
      color: #000;
      line-height: 1.65;
      margin-bottom: 20px;
      font-weight: 300;
    }

    .card-footer {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .card-price {
      font-family: 'Cinzel', serif;
      font-size: 1.1rem;
      color: var(--gold-dark);
      font-weight: 600;
    }

    .btn-order {
      padding: 9px 22px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      color: var(--deep);
      border: none;
      font-family: 'Cinzel', serif;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-order:hover {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      box-shadow: 0 4px 16px rgba(201,168,76,0.35);
    }

    /* --- ORDER SECTION --- */
    .order-section {
      background: linear-gradient(160deg, #1a1208, #2e1f06);
      padding: 90px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* --- SIZING GUIDE --- */
    .sizing-guide {
      background: var(--warm-white);
      padding: 80px 20px;
      text-align: center;
    }

    .sizing-guide h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 300;
      color: var(--brown);
      margin-bottom: 10px;
    }

    .sizing-intro {
      max-width: 640px;
      margin: 0 auto 28px;
      color: var(--text-light);
      font-weight: 300;
      line-height: 1.7;
    }

    .sizing-link {
      color: var(--gold-dark);
      text-decoration: none;
      border-bottom: 1px solid rgba(201,168,76,0.5);
      padding-bottom: 2px;
    }

    .sizing-link:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    .size-table {
      max-width: 900px;
      margin: 0 auto 32px;
      border: 1px solid rgba(201,168,76,0.2);
      background: var(--cream);
    }

    .size-row {
      display: grid;
      grid-template-columns: 1.1fr 1fr 1.4fr;
      gap: 12px;
      padding: 14px 18px;
      border-top: 1px solid rgba(201,168,76,0.18);
      text-align: left;
      font-size: 0.95rem;
      color: var(--text);
    }

    .size-row:first-child { border-top: none; }

    .size-header {
      background: var(--warm-white);
      font-family: 'Cinzel', serif;
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dark);
    }

    .sizing-steps {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
      color: var(--text-light);
      line-height: 1.75;
      font-weight: 300;
    }

    .sizing-steps h3 {
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 12px;
    }

    .sizing-steps ol {
      padding-left: 20px;
      margin-bottom: 14px;
    }

    .sizing-steps li {
      margin-bottom: 10px;
    }

    .sizing-note {
      margin-top: 6px;
      font-size: 0.95rem;
      color: var(--text-light);
    }

    .order-section::before {
      content: '✝';
      position: absolute;
      font-size: 28rem;
      color: rgba(201,168,76,0.03);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      font-family: serif;
    }

    .order-section .section-label { color: var(--gold-light); }

    .order-section h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3rem);
      color: var(--warm-white);
      font-weight: 300;
      margin-bottom: 14px;
    }

    .order-section p {
      color: rgba(253,248,240,0.6);
      font-size: 1rem;
      max-width: 480px;
      margin: 0 auto 42px;
      line-height: 1.75;
      font-weight: 300;
    }

    .order-form {
      max-width: 520px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      z-index: 1;
    }

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

    .order-form input,
    .order-form select,
    .order-form textarea {
      width: 100%;
      padding: 14px 18px;
      background: rgba(253,248,240,0.06);
      border: 1px solid rgba(201,168,76,0.25);
      color: var(--warm-white);
      font-family: 'Lato', sans-serif;
      font-size: 0.92rem;
      font-weight: 300;
      outline: none;
      transition: border-color 0.25s;
    }

    .order-form input::placeholder,
    .order-form textarea::placeholder { color: rgba(253,248,240,0.35); }

    .order-form input:focus,
    .order-form select:focus,
    .order-form textarea:focus {
      border-color: var(--gold);
      background: rgba(253,248,240,0.09);
    }

    .order-form select option { background: #2e1f06; }

    .order-form textarea { resize: vertical; min-height: 90px; }

    .form-error {
      min-height: 20px;
      color: #f2b2b2;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
    }

    .form-note {
      font-size: 0.8rem;
      color: rgba(253,248,240,0.4);
      font-style: italic;
      margin-top: -4px;
    }

    .btn-submit {
      padding: 16px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      color: var(--deep);
      border: none;
      font-family: 'Cinzel', serif;
      font-size: 0.88rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    .btn-submit:hover {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      box-shadow: 0 6px 24px rgba(201,168,76,0.4);
    }

    /* --- TESTIMONIAL --- */
    .testimonial {
      background: var(--warm-white);
      padding: 80px 20px;
      text-align: center;
    }

    .testimonial blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.05rem, 2.4vw, 1.5rem);
      font-weight: 300;
      color: var(--brown);
      max-width: 700px;
      margin: 0 auto 20px;
      line-height: 1.6;
    }

    .testimonial cite {
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      color: var(--gold-dark);
      font-style: normal;
    }

    /* --- WHO AM I PAGE --- */
    .who-page-hero {
      padding: 120px 20px 40px;
      text-align: center;
      background: var(--warm-white);
    }

    .who-page-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 6vw, 3.6rem);
      font-weight: 300;
      color: var(--brown);
    }

    .who-page .who-am-i {
      max-width: 860px;
      margin: 0 auto;
      text-align: left;
      color: var(--text-light);
      line-height: 1.8;
      font-weight: 300;
      font-size: 1rem;
    }

    .who-page .who-am-i p {
      margin-bottom: 16px;
    }

    .who-gallery {
      background: var(--cream);
      padding: 70px 20px 90px;
      text-align: center;
    }

    .gallery-grid {
      max-width: 1100px;
      margin: 30px auto 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
    }

    .gallery-grid figure {
      margin: 0;
      background: var(--warm-white);
      border: 1px solid rgba(201,168,76,0.2);
      overflow: hidden;
    }

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

    .verse-bar {
      background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
      padding: 18px 20px;
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.05rem;
      color: var(--deep);
    }

    /* --- FOOTER --- */
    footer {
      background: var(--deep);
      padding: 48px 20px 32px;
      text-align: center;
    }

    .footer-logo {
      font-family: 'Cinzel', serif;
      font-size: 1.2rem;
      color: var(--gold);
      letter-spacing: 0.3em;
      margin-bottom: 12px;
    }

    footer p {
      color: rgba(253,248,240,0.3);
      font-size: 0.92rem;
      font-weight: 300;
      margin-bottom: 6px;
    }

    footer .footer-cross {
      color: var(--gold-dark);
      font-size: 1.5rem;
      margin: 16px 0;
      display: block;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin: 10px 0 18px;
    }

    .social-links a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.4);
      transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
      font-size: 1rem;
    }

    .social-links a:hover {
      transform: translateY(-2px);
      color: var(--gold-light);
      border-color: var(--gold);
    }

    .back-to-top {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      color: var(--deep);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-family: 'Cinzel', serif;
      font-size: 1.1rem;
      box-shadow: 0 8px 22px rgba(61,43,14,0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      z-index: 998;
    }

    .back-to-top:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(61,43,14,0.35);
    }

    /* --- NAV --- */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 40px;
      background: transparent;
      transition: background 0.35s ease, backdrop-filter 0.35s;
    }

    nav.scrolled {
      background: rgba(26,18,8,0.92);
      backdrop-filter: blur(12px);
    }

    .nav-logo {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      color: var(--gold);
      letter-spacing: 0.25em;
      text-decoration: none;
    }

    .nav-logo img {
      height: 70px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      letter-spacing: 0.25em;
      color: rgba(253,248,240,0.7);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--gold); }

    /* --- MODAL --- */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26,18,8,0.85);
      z-index: 999;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.open { display: flex; }

    .modal {
      background: var(--warm-white);
      max-width: 440px;
      width: 100%;
      padding: 44px 40px;
      text-align: center;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 14px; right: 18px;
      background: none;
      border: none;
      font-size: 1.4rem;
      color: var(--text-light);
      cursor: pointer;
    }

    .modal h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      color: var(--brown);
      margin-bottom: 10px;
    }

    .modal p {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    .modal .gold-cross { font-size: 2.5rem; color: var(--gold); margin-bottom: 12px; }

    /* --- ANIMATIONS --- */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
      nav { padding: 14px 20px; }
      .nav-links { gap: 16px; }
      .nav-links a { font-size: 0.62rem; letter-spacing: 0.15em; }

      .hero { padding: 100px 24px 60px; min-height: 100svh; }
      .hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
      .hero-sub { font-size: 1rem; margin: 14px 0 28px; }
      .hero-price-badge { font-size: 0.88rem; padding: 9px 22px; }
      .hero-cta { padding: 13px 36px; font-size: 0.78rem; }

      .about { padding: 60px 24px; }
      .about h2 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
      .about p { font-size: 0.97rem; }

      .about-features { gap: 28px; }
      .feature { max-width: 130px; }

      .order-form .form-row { grid-template-columns: 1fr; }
      .nav-logo img { height: 52px; }
    }













/* --- ADMIN --- */
.admin-wrap {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
  font-family: 'Lato', sans-serif;
  color: #2d2010;
}

.admin-wrap h1 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.admin-table th,
.admin-table td {
  border: 1px solid rgba(0,0,0,0.15);
  padding: 10px 12px;
  text-align: left;
}

.admin-table input {
  width: 140px;
  padding: 6px;
}

.admin-table td:nth-child(5) input {
  width: 240px;
}

.admin-table td:nth-child(6) input {
  width: 320px;
}

.admin-actions {
  margin-top: 12px;
}

.admin-message {
  margin-top: 12px;
  font-size: 0.95rem;
}


/* --- STOCK BADGE --- */
.sold-out-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(40,0,0,0.85);
  color: #f2d7d7;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: none;
}

.sold-out-badge.show {
  display: inline-block;
}

.bracelet-card.sold-out {
  display: none;
}


/* --- INLINE ICONS --- */
.icon-svg {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
}

.icon-chevron {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Admin/order enhancements */
.stock-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-left: 10px;
  background: #f2ebe4;
  color: #5a4532;
}

.stock-badge.in-stock {
  background: #e5f4ea;
  color: #2f6c3f;
}

.stock-badge.out-stock {
  background: #ffe8e8;
  color: #a34747;
}

.btn-order[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-alert {
  padding: 12px 14px;
  border-radius: 10px;
  margin: 10px 0 18px;
  font-weight: 600;
}

.form-alert.success { background: #eaf6ea; color: #2f6c3f; }
.form-alert.error { background: #ffe8e8; color: #a34747; }
.form-alert.warning { background: #fff1d9; color: #8a5a1a; }
