/* ==============================
   Components CSS
   - WhatsApp floating button
   - Pulse animation
   - Swiper slider styling
   ============================== */


/* ================= WHATSAPP FLOAT ================= */

.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;

  width: 56px;
  height: 56px;

  border-radius: 16px;
  display: grid;
  place-items: center;

  z-index: 99999;

  background: rgba(231,198,162,0.35);
  border: 1px solid rgba(123,21,18,0.35);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 18px 40px rgba(0,0,0,.18);

  transition: transform .18s ease,
              box-shadow .18s ease;
}

.wa-float:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 48px rgba(0,0,0,.25);
}

/* Pulse ring */
.wa-float::after{
  content:"";
  position:absolute;
  inset:-6px;

  border-radius: 20px;

  border: 1px solid rgba(123,21,18,0.25);

  box-shadow: 0 0 0 0 rgba(123,21,18,0.22);

  animation: waPulse 1.8s ease-out infinite;

  pointer-events:none;
}

@keyframes waPulse{
  0%{
    transform: scale(0.96);
    opacity: .6;
    box-shadow: 0 0 0 0 rgba(123,21,18,0.20);
  }
  70%{
    transform: scale(1.10);
    opacity: .12;
    box-shadow: 0 0 0 16px rgba(123,21,18,0);
  }
  100%{
    transform: scale(1.10);
    opacity: 0;
  }
}


/* ================= SWIPER BASE ================= */

.swiper{
  width: 100%;
  height: min(72vh, 560px);
}

@media (max-width: 720px){
  .swiper{
    height: 75vh;
  }
}

.swiper-slide{
  position: relative;

  display:flex;
  align-items:flex-end;

  padding: 28px;

  background-size: cover;
  background-position: center;
}

/* ==============================
   Swiper Theme Override (Brand)
   ============================== */

:root{
  /* Swiper default theme variables override */
  --swiper-theme-color: var(--maroon);
}

/* Dots */
.swiper-pagination-bullet{
  background: rgba(123,21,18,.28) !important; /* maroon tint */
  opacity: 1 !important;
  width: 7px;
  height: 7px;
}

.swiper-pagination-bullet-active{
  background: var(--maroon-2) !important; /* brand red */
  width: 18px;
  border-radius: 999px;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next{
  color: var(--maroon-2) !important;
  background: rgba(250,247,244,.45) !important;   /* glass */
  border: 1px solid rgba(123,21,18,.22) !important;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 18px 40px rgba(0,0,0,.16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(0,0,0,.22);
}

/* Arrow icon thickness */
.swiper-button-prev::after,
.swiper-button-next::after{
  font-size: 15px !important;
  font-weight: 900 !important;
}

/* Dark + warm overlay on slides */
.swiper-slide::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(900px 500px at 20% 20%, rgba(231,198,162,.40), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35));
}

/* Text glass box */
.slide-content{
  position: relative;

  width: min(620px, 100%);

  border-radius: 22px;
  padding: 18px;

  background: rgba(250,247,244,.55);

  border: 1px solid rgba(123,21,18,.16);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.slide-title{
  margin: 10px 0 6px;

  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.1;

  letter-spacing:-0.02em;
}

.slide-text{
  margin: 0 0 10px;
  color: #3a2520;
}


/* ================= PAGINATION ================= */

.swiper-pagination-bullet{
  background: #fff;
  opacity: .35;
}

.swiper-pagination-bullet-active{
  opacity: 1;
}


/* ================= NAV ARROWS ================= */

.swiper-button-prev,
.swiper-button-next{
  color:#fff;
  background: rgba(0,0,0,.25);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  width: 42px;
  height: 42px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.18);
}

.swiper-button-prev::after,
.swiper-button-next::after{
  font-size: 16px;
  font-weight: 900;
}


/* ================= GALLERY HOVER ================= */

.grid-3 img{
  transition: transform .35s ease,
              box-shadow .35s ease;
}

.grid-3 img:hover{
  transform: scale(1.04);
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
}


/* ================= CTA STRIP MOBILE ================= */

@media (max-width: 720px){
  .cta-strip{
    flex-direction: column;
    text-align: center;
  }
}

/* ==============================
   Contact Form - Glass Inputs
   ============================== */

.contact-form{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-form .grid-2{
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;

  border: 1px solid rgba(123,21,18,.18);
  background: rgba(250,247,244,.55);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  outline: none;
  font-size: 15px;
  color: var(--text);

  box-shadow: 0 12px 28px rgba(0,0,0,.08);

  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-form textarea{
  resize: vertical;
  min-height: 140
}



/* ==============================
   About - Founder Photo Block
   ============================== */
.founder-wrap{
  margin: 14px 0 16px;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(250,247,244,.55);
  border: 1px solid rgba(123,21,18,.14);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}

.founder-img{
  width: 100%;
  height: 360px;            /* full दिसायला थोडी जास्त height */
  object-fit: contain;      /* IMPORTANT: crop नको */
  background: rgba(250,247,244,.55); /* रिकामा space smooth दिसेल */
  display: block;
  padding: 10px;            /* image ला breathing space */
}


.founder-cap{
  padding: 12px 14px;
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.founder-name{
  font-weight: 900;
  color: var(--maroon);
}

@media (max-width: 720px){
  .founder-img{ height: 300px; }
}



/* ==============================
   Tea Cup Loader (Glass + Drops)
   ============================== */

#siteLoader{
  position: fixed;
  inset: 0;
  z-index: 100000;

  display: grid;
  place-items: center;

  background:
    radial-gradient(900px 500px at 20% 10%, rgba(231,198,162,.35), transparent 60%),
    radial-gradient(800px 500px at 80% 20%, rgba(123,21,18,.10), transparent 55%),
    rgba(250,247,244,.75);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition: opacity .35s ease, transform .35s ease;
}

#siteLoader.hide{
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.loader-card{
  width: min(520px, 92vw);
  border-radius: 26px;
  padding: 18px 18px 16px;

  background: linear-gradient(180deg, rgba(250,247,244,.62), rgba(231,198,162,.22));
  border: 1px solid rgba(123,21,18,.16);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);

  text-align: center;
}

.loader-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin-bottom: 10px;
}

.loader-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(123,21,18,.25);
  animation: dotPulse 1.2s ease-in-out infinite;
}
.loader-dot:nth-child(2){ animation-delay: .15s; }
.loader-dot:nth-child(3){ animation-delay: .30s; }

@keyframes dotPulse{
  0%,100%{ transform: translateY(0); opacity:.35; }
  50%{ transform: translateY(-3px); opacity:1; }
}

.loader-title{
  font-weight: 950;
  color: var(--maroon);
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  font-size: 18px;
}

.loader-sub{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.tea-stage{
  position: relative;
  width: 220px;
  height: 240px;
  margin: 10px auto 6px;
}

/* Steam */
.steam{
  position:absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 90px;
  opacity: .9;
}

.steam path{
  stroke: rgba(123,21,18,.28);
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.08));
  stroke-dasharray: 140;
  animation: steamDraw 2.2s ease-in-out infinite;
}

.steam path:nth-child(2){ animation-delay: .25s; opacity:.7; }
.steam path:nth-child(3){ animation-delay: .5s; opacity:.55; }

@keyframes steamDraw{
  0%   { stroke-dashoffset: 140; transform: translateY(8px); opacity:.05; }
  45%  { stroke-dashoffset: 25;  transform: translateY(0px); opacity:1; }
  100% { stroke-dashoffset: -140; transform: translateY(-10px); opacity:0; }
}

/* Cup SVG */
.cup{
  position:absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 220px;
  height: 200px;
}

.cup .cup-outline{
  stroke: rgba(123,21,18,.70);
  stroke-width: 4.5;
  fill: rgba(250,247,244,.35);
}

.cup .cup-liquid{
  fill: rgba(123,21,18,.16);
}

.cup .cup-glow{
  fill: rgba(231,198,162,.45);
}

/* Drops */
.drop{
  position:absolute;
  left: 50%;
  top: 78px;
  width: 10px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(217,39,46,.55), rgba(123,21,18,.20));
  transform: translateX(-50%);
  opacity: 0;
  filter: blur(.0px);
  animation: dropFall 1.35s ease-in-out infinite;
  box-shadow: 0 16px 28px rgba(0,0,0,.10);
}

.drop:nth-child(2){ left: 46%; animation-delay: .20s; }
.drop:nth-child(3){ left: 54%; animation-delay: .40s; }

@keyframes dropFall{
  0%   { transform: translate(-50%, -10px) scale(.7); opacity:0; }
  20%  { opacity:1; }
  70%  { opacity:1; }
  100% { transform: translate(-50%, 98px) scale(.9); opacity:0; }
}

/* Progress bar */
.loader-bar{
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(123,21,18,.14);
  background: rgba(250,247,244,.50);
}

.loader-bar > div{
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, var(--maroon), var(--maroon-2));
  border-radius: 999px;
  animation: barMove 1.4s ease-in-out infinite;
}

@keyframes barMove{
  0%   { transform: translateX(-60%); width: 35%; }
  50%  { transform: translateX(40%);  width: 55%; }
  100% { transform: translateX(160%); width: 35%; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .steam path, .drop, .loader-bar > div, .loader-dot{ animation: none !important; }
}

/* ==============================
   Homepage - Stats Strip
   ============================== */
.stats-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;

  border-radius: 22px;
  padding: 14px;

  background: linear-gradient(180deg, rgba(250,247,244,.62), rgba(231,198,162,.22));
  border: 1px solid rgba(123,21,18,.16);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.stat{
  border-radius: 18px;
  padding: 14px;

  background: rgba(250,247,244,.35);
  border: 1px solid rgba(123,21,18,.12);

  display:flex;
  flex-direction: column;
  gap: 6px;

  text-align: center;
}

.stat-num{
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--maroon);
}

.stat-label{
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 900px){
  .stats-strip{ grid-template-columns: 2fr 2fr; }
}

/* Make long text more readable on home */
.card .p b{
  color: var(--maroon);
}
.card .p{
  font-size: 16px;
}

/* ==============================
   FORCE FULL-WIDTH FOOTER
   ============================== */

footer.footer{
  width: 100vw;              /* IMPORTANT */
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);

  background:
    radial-gradient(900px 500px at 20% 0%, rgba(231,198,162,.25), transparent 60%),
    linear-gradient(180deg, rgba(123,21,18,.08), rgba(0,0,0,.02));

  border-top: 1px solid rgba(123,21,18,.18);
}

/* ==============================
   Footer - Full Width Layout
   ============================== */

footer.footer{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;

  background:
    radial-gradient(1100px 600px at 15% 0%, rgba(231,198,162,.28), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(123,21,18,.10), transparent 55%),
    linear-gradient(180deg, rgba(123,21,18,.06), rgba(0,0,0,.02));
  border-top: 1px solid rgba(123,21,18,.16);
}

.footer-wrap{
  padding: 54px 0 42px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}

.footer-left{
  border-radius: 26px;
  padding: 18px;

  background: linear-gradient(180deg, rgba(250,247,244,.60), rgba(231,198,162,.22));
  border: 1px solid rgba(123,21,18,.16);
  box-shadow: 0 22px 56px rgba(0,0,0,.16);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.footer-logo{
  width: 54px;
  height: 54px;
  border-radius: 16px;
}

.footer-name{
  font-weight: 950;
  color: var(--maroon);
  letter-spacing: -0.02em;
  font-size: 18px;
}

.footer-sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.footer-text{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.footer-copy{
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  opacity: .9;
}

/* Right side cards */
.footer-right{
  display:grid;
  gap: 12px;
}

.footer-card{
  border-radius: 22px;
  padding: 16px;

  background: rgba(250,247,244,.52);
  border: 1px solid rgba(123,21,18,.14);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-h{
  font-weight: 900;
  color: var(--maroon);
  margin-bottom: 10px;
}

.footer-card a{
  display:block;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}

.footer-card a:hover{
  background: rgba(231,198,162,.26);
  border-color: rgba(123,21,18,.12);
  transform: translateY(-1px);
}

.footer-line{
  color: var(--text);
  margin: 8px 0;
  font-size: 14px;
}

@media (max-width: 900px){
  .footer-wrap{
    grid-template-columns: 1fr;
    padding: 44px 0 34px;
  }
}

/* ==============================
   Franchise Page Styles
   ============================== */

/* Franchise hero emphasis */
.franchise-hero .h1{
  max-width: 820px;
}

/* Process grid cards */
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 900px){
  .grid-3{
    grid-template-columns: 1fr;
  }
}

/* Two column layout */
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 900px){
  .grid-2{
    grid-template-columns: 1fr;
  }
}

/* Franchise highlight cards */
.franchise-point{
  padding: 14px;
  border-radius: 18px;
  background: rgba(250,247,244,.55);
  border: 1px solid rgba(123,21,18,.14);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

/* Apply form tweaks */
#franchiseForm input,
#franchiseForm select,
#franchiseForm textarea{
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(123,21,18,.18);
  background: rgba(250,247,244,.65);
  font-size: 15px;
}

#franchiseForm textarea{
  resize: vertical;
  min-height: 120px;
}

#franchiseForm input:focus,
#franchiseForm select:focus,
#franchiseForm textarea:focus{
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(123,21,18,.12);
}

/* Franchise CTA emphasis */
.franchise-cta{
  background: linear-gradient(
    180deg,
    rgba(250,247,244,.65),
    rgba(231,198,162,.28)
  );
  border: 1px solid rgba(123,21,18,.18);
  box-shadow: 0 22px 52px rgba(0,0,0,.16);
}

/* Small helper text */
.small{
  font-size: 13px;
  color: var(--muted);
}

/* Badge spacing improvement */
.badge{
  margin-bottom: 8px;
}

/* ==============================
   Home - Franchise Teaser
   ============================== */
.franchise-teaser{
  background: linear-gradient(135deg, rgba(250,247,244,.62), rgba(231,198,162,.26));
  border: 1px solid rgba(123,21,18,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}


/* ==============================
   WhatsApp Floating Button (Dark)
   ============================== */

.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  width: 58px;
  height: 58px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    145deg,
    #0f5132,
    #0b3d2a
  );

  color: #fff;
  text-decoration: none;

  box-shadow:
    0 14px 28px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.08);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.wa-float:hover{
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 18px 36px rgba(0,0,0,.45),
    0 0 0 6px rgba(37,211,102,.18);
}

@keyframes waPulse{
  0%{
    box-shadow:
      0 14px 28px rgba(0,0,0,.35),
      0 0 0 0 rgba(37,211,102,.35);
  }
  70%{
    box-shadow:
      0 18px 36px rgba(0,0,0,.45),
      0 0 0 14px rgba(37,211,102,0);
  }
  100%{
    box-shadow:
      0 14px 28px rgba(0,0,0,.35),
      0 0 0 0 rgba(37,211,102,0);
  }
}

.wa-float{
  animation: waPulse 2.8s infinite;
}

.wa-float span{
  font-size: 24px;
  line-height: 1;
}

/* ================= CART DRAWER ================= */

.cart-drawer{
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: -10px 0 30px rgba(0,0,0,.2);
  transition: right .35s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open{ right:0; }

.cart-head{
  padding:16px;
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid #eee;
}

.cart-foot{
  padding:16px;
  border-top:1px solid #eee;
}

.cart-fab{
  position: fixed;
  bottom: 90px;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:#7b1512;
  color:#fff;
  font-size:22px;
  border:none;
  box-shadow:0 14px 28px rgba(0,0,0,.35);
}

.card{
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.nav-links a.active{
  color: #7b1512;
  font-weight: 600;
}

.btn.danger{
  background:#c62828;
  color:#fff;
}

/* ================= Select / Dropdown (Shop) ================= */
select,
#outletSelect{
  width: 100%;
  max-width: 420px;
  margin-top: 10px;

  padding: 12px 44px 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(123, 21, 18, .25);

  background: rgba(255,255,255,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  color: #2a1a16;
  font-weight: 600;

  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

/* arrow */
select,
#outletSelect{
  background-image:
    linear-gradient(45deg, transparent 50%, #7b1512 50%),
    linear-gradient(135deg, #7b1512 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 4px),
    calc(100% - 12px) calc(50% - 4px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select:focus,
#outletSelect:focus{
  border-color: rgba(123, 21, 18, .55);
  box-shadow: 0 0 0 4px rgba(123, 21, 18, .18), 0 12px 30px rgba(0,0,0,.14);
  transform: translateY(-1px);
}

/* options (limited control, but improves readability where supported) */
select option{
  color: #2a1a16;
  font-weight: 600;
}

/* ===== Admin Login: force input UI ===== */
.admin-login form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.admin-login input{
  width:100%;
  display:block;
  padding:14px 16px;
  border-radius:14px;

  border:1px solid rgba(123,21,18,.28);
  background:rgba(255,255,255,.70);

  color:#2a1a16;
  font-size:15px;
  font-weight:600;

  outline:none;
  box-shadow:0 10px 22px rgba(0,0,0,.10);

  transition:border .2s ease, box-shadow .2s ease, transform .15s ease;
}

.admin-login input::placeholder{
  color: rgba(42,26,22,.55);
  font-weight:500;
}

.admin-login input:focus{
  border-color: rgba(123,21,18,.65);
  box-shadow: 0 0 0 4px rgba(123,21,18,.18), 0 12px 28px rgba(0,0,0,.14);
  transform: translateY(-1px);
}

.admin-login .btn.primary{
  width:100%;
  justify-content:center;
  padding:14px;
  border-radius:999px;
}

/* ================= ADMIN PANEL (Products/Outlets/Dashboard) ================= */
.admin-panel .card{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.admin-panel form{
  display: grid;
  gap: 12px;
}

.admin-panel .btn-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.admin-panel input,
.admin-panel select{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(123,21,18,.22);
  background: rgba(255,255,255,.70);
  color:#2a1a16;
  font-size: 14px;
  font-weight: 600;
  outline:none;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  transition: border .2s ease, box-shadow .2s ease, transform .15s ease;
}

.admin-panel input:focus,
.admin-panel select:focus{
  border-color: rgba(123,21,18,.6);
  box-shadow: 0 0 0 4px rgba(123,21,18,.16), 0 12px 28px rgba(0,0,0,.12);
  transform: translateY(-1px);
}

/* product row form layout */
.admin-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

.admin-left{
  display:flex;
  gap:12px;
  align-items:center;
}

.admin-fields{
  display:grid;
  gap:10px;
  min-width: 260px;
}

.admin-panel input[type="file"]{
  padding: 10px 12px;
}

/* small image */
.admin-thumb{
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.08);
}
.admin-panel form{display:grid;gap:12px}
.admin-row{display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;align-items:center}
.admin-left{display:flex;gap:12px;align-items:center}
.admin-fields{display:grid;gap:10px;min-width:260px}
.admin-thumb{width:60px;height:60px;object-fit:cover;border-radius:10px}

.checkout-page input{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.7);
  font-weight:600;
  outline:none;
}
.checkout-page input:focus{
  border-color: rgba(0,0,0,.25);
  box-shadow: 0 0 0 4px rgba(0,0,0,.08);
}