
:root{
  --bg:#f6f8fb;
  --bg-soft:#eef3f8;
  --surface:rgba(255,255,255,.86);
  --surface-strong:#ffffff;
  --surface-muted:#f3f6fa;
  --text:#0f1721;
  --text-soft:#526072;
  --line:rgba(15,23,33,.08);
  --brand:#0b3d2a;
  --brand-2:#125d43;
  --accent:#c4a85b;
  --accent-2:#e9d6a1;
  --success:#0c8f57;
  --warning:#d18b15;
  --danger:#c23b3b;
  --shadow:0 20px 50px rgba(10, 22, 35, .09);
  --shadow-soft:0 10px 30px rgba(10, 22, 35, .07);
  --radius:26px;
  --radius-sm:18px;
  --radius-xs:14px;
  --header-h:60px;
  --nav-h:74px;
  --content-max:1280px;
  --primary3:#f97316;
  --primary4:#ffb347;
}

body[data-theme="dark"]{
  --bg:#07111a;
  --bg-soft:#0d1823;
  --surface:rgba(12,20,30,.78);
  --surface-strong:#0d1722;
  --surface-muted:#121e2b;
  --text:#eef4fa;
  --text-soft:#9fb0c2;
  --line:rgba(255,255,255,.08);
  --brand:#61d39f;
  --brand-2:#2fb884;
  --accent:#d8bf74;
  --accent-2:#f1dfad;
  --success:#2bd380;
  --warning:#efbc57;
  --danger:#ff7f7f;
  --shadow:0 24px 60px rgba(0,0,0,.32);
  --shadow-soft:0 10px 30px rgba(0,0,0,.28);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(1100px 500px at 15% -10%, rgba(196,168,91,.12), transparent 60%),
    radial-gradient(900px 400px at 90% 0%, rgba(17,117,84,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  color:var(--text);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x:hidden;
  padding-bottom:calc(var(--nav-h) + 20px);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
::selection{background:rgba(196,168,91,.28)}
.container{
  width:min(100%, var(--content-max));
  margin:0 auto;
}
.page-main{
  width:min(100%, var(--content-max));
  margin:0 auto;
  padding:18px clamp(14px, 2.4vw, 24px) 28px;
}
.section{
  margin-top:18px;
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:14px;
  margin:0 0 14px;
}
.section-title{
  margin:0;
  font-size:clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing:-.02em;
}
.section-subtitle{
  margin:6px 0 0;
  color:var(--text-soft);
  font-size:.95rem;
  line-height:1.45;
}
.section-actions{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
}
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(24px);
  background:linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.48));
  border-bottom:1px solid var(--line);
}
body[data-theme="dark"] .header{
  background:linear-gradient(180deg, rgba(7,17,26,.82), rgba(7,17,26,.56));
}
.header-inner{
  width:min(100%, var(--content-max));
  margin:0 auto;
  padding:8px clamp(14px, 2.4vw, 24px);
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-logo{
  min-width:48px;min-height:55px; max-height:55px;
  border-radius:50%;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  border:1px solid var(--line);
  flex:0 0 auto;
}
.brand-copy{min-width:0}
.brand-name{
  margin:0;
  font-size:1rem;
  font-weight:800;
  letter-spacing:-.02em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-tag{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:3px;
  color:var(--text-soft);
  font-size:.75rem;
  white-space:nowrap;
}
.status-dot{
  width:8px;height:8px;border-radius:99px;
  background:var(--success);
  box-shadow:0 0 0 6px rgba(12,143,87,.12);
}
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.icon-btn,.ghost-btn,.chip,.tag,.nav-btn,.switch,.select,.input,.textarea{
  border:1px solid var(--line);
  border-radius:18px;
}
.icon-btn,.ghost-btn,.chip,.nav-btn{
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.icon-btn:hover,.ghost-btn:hover,.chip:hover,.nav-btn:hover{
  transform:translateY(-1px);
}
.icon-btn{
  width:44px;height:44px;
  display:grid;
  place-items:center;
  background:var(--surface);
  color:var(--text);
  box-shadow:var(--shadow-soft);
}
.icon-btn svg{width:20px;height:20px}
.ghost-btn{
  height:44px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  font-weight:700;
}

.ghost-btn{
  background:var(--surface);
  color:var(--text);
  box-shadow:var(--shadow-soft);
}
.pill{
  height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 12px;
  font-size:.8rem;
  font-weight:700;
  background:rgba(12,143,87,.08);
  color:var(--success);
  border:1px solid rgba(12,143,87,.12);
}
.pill.neutral{
  background:rgba(196,168,91,.12);
  color:var(--accent);
  border-color:rgba(196,168,91,.16);
}
.cart_count{
  position:absolute;
  top:0px;right:30%;
  width:18px;height:18px;
  display:grid;place-items:center;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
}
.slider {
  overflow: hidden;
  width: 100%;
  height: 250px;
  border-radius: 16px;
  background: #fafafa;
  margin-bottom: 16px;
  position: relative;
}

.slider-track {
  display: flex;
  width: 300%; height: 100%;
  transition: transform 1s ease;
}

.slider-slide {
  min-width: 100%;
  max-width: 100% !important;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('/naim_global_limited_website/assets/images/banner-home.png')  ;
  background-size: 100vw auto;
  background-repeat: no-repeat; 
}
.slider-btn{
  position: absolute;
  z-index: 10;
  top: 50%; transform: translateY(-50%);
  width: 35px;height: 35px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%; backdrop-filter: blur(55px);
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 30px; font-weight: bolder;
  display: grid;place-content: center;color: #eff;
}
.slider-btn-next{
  right: 8px;
}
.slider-btn-prev{left: 8px;}

.slider-slide img {
  min-width: 100%;
  max-width: 100vw;
  height: 100%;
  display: block; 
  display: none;
}
.hero{
  overflow:hidden;
  position:relative;
  border-radius:clamp(24px, 3vw, 34px);
  background:linear-gradient(135deg, rgba(11,61,42,.58), rgba(13,24,34,.56));
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.06);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:0;  
  align-items:stretch;
}
.hero-copy{
  padding:clamp(8px, 3vw, 20px);
  color:#fff; position:relative; z-index:10;
  background: rgba(19, 15, 39, 0.65); 
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.02em;
}
.hero-title{
  margin:18px 0 12px;
  font-size:clamp(1.75rem, 5vw, 2rem);
  line-height:1.4;
  letter-spacing:-.045em;
}
.hero-text{
  margin:0;
  color:rgb(242, 243, 237);
  font-size:clamp(.9rem, 1.5vw, 1rem);
  line-height:1.5;
  max-width:60ch;
}
.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:8px;
  margin-top:12px;
}
.metric{
  padding:4px;
  border-radius:20px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.12);
  display: grid;place-items:center;
}
.metric strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}
.metric span{font-size:13px;color:rgba(255,255,255,.78)}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap; 
}
.hero-media{
  height:100%;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    url('../images/banner-home.png') center/cover no-repeat;
  position: absolute;
  top:0;left:0;
}
.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(11,61,42,.15), rgba(11,61,42,.45));
}
.hero-media .media-badge{ 
  display: none;
  z-index:10;
  font-size: 13px;
  padding:5px 12px;
  border-radius:18px;
  background:rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow-soft);
}
.feature-strip{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.info-card,.surface-card,.product-card,.cart-card,.panel,.profile-card,.menu-card,.settings-card,.summary-card{
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  border-radius:var(--radius);
  backdrop-filter:blur(16px);
}
.info-card{
  padding:16px;
}
.info-card h4{margin:0 0 8px;font-size:1rem}
.info-card p{margin:0;color:var(--text-soft);font-size:.92rem;line-height:1.55}
.chip-row{
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.chip-row::-webkit-scrollbar {
  display: none;
}
.category-card {
  display: grid;
  place-items: center;
  gap: 8px;
  min-width: 90px;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text);
  outline: none;
}
.category-card i {
  width: 28px;
  height: 28px;
  color: var(--brand);
  transition: color 0.25s ease;
}
.category-card span {
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  border-color: rgba(11,61,42, 0.2);
}
.category-card.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: transparent;
}
.category-card.active i {
  color: #fff;
}
.chip{
  flex:0 0 auto;
  height:42px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  gap:8px; 
  color:var(--text);
  cursor:pointer;
  font-size:.75rem;
  font-weight:700;
  white-space:nowrap;
  box-shadow:var(--shadow-soft);
}
.chip.active{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff;
  border-color:transparent;
}
.filters{
  display:grid;
  grid-template-columns:2fr repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-top:12px;
}
.input,.select,.textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  background:var(--surface-strong);
  color:var(--text);
  outline:none;
}
.textarea{min-height:110px;resize:vertical}
.input::placeholder,.textarea::placeholder{color:var(--text-soft)}
.field_group{
  display: grid;grid-template-columns: 1fr 1fr; gap:12px;
}
.field{
  display:flex;flex-direction:column;gap:8px;
}
.field label{
  font-size:.84rem;font-weight:700;color:var(--text-soft)
}
.range-wrap{
  display:flex;flex-direction:column;gap:8px;
}
.range{
  width:100%;
  accent-color:var(--brand-2);
}
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:2px !important;
}
@media (max-width: 640px) {
  .products-grid{
    grid-template-columns:1fr;
    gap:8px;
  }
}
.product-card{
  overflow:hidden;
  display:flex;
  flex-direction:row;
  align-items:stretch;
  padding:4px;
  gap:4px; /* Decreased internal gap */
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  border-radius: 8px !important;
}
.product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
@media (min-width: 640px) {
  .product-card {
    gap: 16px;
    padding: 14px;
  }
}
@media (min-width: 1024px) {
  .product-card {
    gap: 20px;
    padding: 16px;
  }
}
.cart-layout, .delivery-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.profile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
@media (min-width: 992px) {
  .cart-layout, .delivery-layout {
    grid-template-columns: 1fr 380px;
    gap: 2rem;
  }
  .profile-layout {
    grid-template-columns: 350px 1fr;
    gap: 2rem;
  }
}
@media (max-width: 640px) {
  .cart-card.cart-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1rem !important;
    gap: 1rem !important;
  }
  .cart-card.cart-item .cart-thumb {
    width: 100% !important;
    height: 180px !important;
  }
  .cart-card.cart-item .cart-actions {
    width: 100%;
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center !important;
  }
}
.product-media, .product-media-row{
  position:relative;
  overflow:hidden;
  background:var(--surface-muted);
  border-radius:var(--radius-sm);
}
.product-media-row {
  flex: 0 0 120px;
}
.product-media-row img, .product-media img{
  width:100%;
  height:100%;
  min-height:120px;
  object-fit:cover;
  transition:transform .35s ease;
}
.product-card:hover .product-media-row img, .product-card:hover .product-media img{
  transform:scale(1.04);
}
.product-content-row {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  min-width: 0;
}
.product-card .wishlist.icon-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  box-shadow: var(--shadow-soft);
}
.product-card .badge-stack {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-badge{
  position:absolute;
  top:12px;left:12px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  color:#10202a;
  font-size:.76rem;
  font-weight:800;
  box-shadow:var(--shadow-soft);
}
body[data-theme="dark"] .product-badge{
  background:rgba(7,17,26,.78);
  color:#fff;
}
.product-fav{
  position:absolute;
  top:12px;right:12px;
  z-index:2;
}

.product-fav.active{
  background:rgba(196,168,91,.14);
  color:var(--accent);
  border-color:rgba(196,168,91,.35);
}
body[data-theme="dark"] .product-fav.active{background:rgba(196,168,91,.16)}
.product-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.product-name{
  margin:0;
  font-size:1rem;
  line-height:1.35;
  letter-spacing:-.02em;
}
.product-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  color:var(--text-soft);
  font-size:.84rem;
}
.price-row{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:10px;
}
.price{
  font-size:1.2rem;
  font-weight:900;
  letter-spacing:-.02em;
}
.stock{
  font-size:.78rem;
  font-weight:800;
  padding:7px 10px;
  border-radius:999px;
}
.stock.available{background:rgba(12,143,87,.12);color:var(--success)}
.stock.low{background:rgba(209,139,21,.12);color:var(--warning)}
.stock.out{background:rgba(194,59,59,.12);color:var(--danger)}
.card-actions{
  display:flex;
  gap:10px;
  margin-top:4px;
}
.card-actions .ghost-btn{
  flex:1;
  justify-content:center;
  height:42px;
  padding-inline:10px;
}
.small{
  font-size:.82rem;
  color:var(--text-soft);
}
.empty-state,.loading-state{
  padding:28px;
  text-align:center;
  color:var(--text-soft);
}
.empty-state .empty-emoji{
  font-size:2.3rem;margin-bottom:10px
}
.skeleton{
  position:relative;
  overflow:hidden;
  background:var(--surface);
}
.skeleton::after{
  content:"";
  position:absolute;
  inset:0;
  transform:translateX(-100%);
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
  animation:shimmer 1.3s infinite;
}
@keyframes shimmer{100%{transform:translateX(100%)}}
.cart-layout,.profile-layout,.settings-layout{
  display:grid;
  grid-template-columns:1.35fr .85fr;
  gap:16px;
  align-items:start;
}
.cart-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.cart-item{
  display:grid;
  grid-template-columns:92px 1fr auto;
  gap:14px;
  padding:14px;
  align-items:center;
}
.cart-thumb{
  width:92px;height:92px;border-radius:22px;object-fit:cover;
  border:1px solid var(--line);
}
.cart-title{
  margin:0 0 6px;font-weight:800;letter-spacing:-.02em
}
.cart-info{
  display:flex;flex-wrap:wrap;gap:8px;align-items:center;color:var(--text-soft);font-size:.88rem
}
.qty-control{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px;
  border-radius:16px;
  background:var(--surface-muted);
  border:1px solid var(--line);
}
.qty-control button{
  width:34px;height:34px;border-radius:12px;border:none;background:var(--surface-strong);color:var(--text);cursor:pointer;
  box-shadow:var(--shadow-soft);
}
.qty-control input{
  width:48px;text-align:center;border:none;background:transparent;color:var(--text);outline:none;
}
.muted{color:var(--text-soft)}
.summary-card,.panel,.settings-card,.profile-card,.menu-card{
  padding:16px;
}
.summary-row{
  display:flex;justify-content:space-between;gap:10px;
  padding:10px 0;
  border-bottom:1px dashed var(--line);
}
.summary-row:last-child{border-bottom:none}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
.form-grid .field.full{grid-column:1/-1}
.helper{
  margin-top:8px;
  font-size:.84rem;
  color:var(--text-soft);
  line-height:1.55;
}
.divider{
  height:1px;background:var(--line);margin:14px 0
}
.avatar{
  width:84px;height:84px;border-radius:28px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, var(--brand), var(--accent));
  color:#fff;
  font-size:2rem;
  font-weight:900;
  box-shadow:var(--shadow-soft);
}
.profile-top{
  display:flex;
  gap:14px;
  align-items:center;
}
.profile-top h3{margin:0 0 6px}
.profile-top p{margin:0;color:var(--text-soft)}
.list-vertical{
  display:flex;flex-direction:column;gap:10px;
}
.list-item{
  padding:14px;
  border-radius:20px;
  background:var(--surface-strong);
  border:1px solid var(--line);
  display:flex;justify-content:space-between;gap:12px;align-items:flex-start;
}
.list-item strong{display:block;margin-bottom:4px}
.list-item small{color:var(--text-soft)}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.menu-card h3,.settings-card h3,.profile-card h3,.summary-card h3,.panel h3{
  margin:0 0 10px;font-size:1.05rem
}
.menu-links{
  display:grid;
  gap:10px;
}
.menu-link{
  display:flex;justify-content:space-between;gap:12px;align-items:center;
  padding:14px;
  border-radius:18px;
  background:var(--surface-strong);
  border:1px solid var(--line);
}
.menu-link:hover{border-color:rgba(196,168,91,.28)}
.footer-note{
  text-align:center;
  color:var(--text-soft);
  font-size:.82rem;
  margin:22px 0 0;
}
.switch-row{
  display:flex;justify-content:space-between;gap:12px;align-items:center;padding:12px 0
}
.switch{
  position:relative;width:58px;height:34px;display:inline-block;background:var(--surface-strong);border-radius:999px;cursor:pointer;
}
.switch input{display:none}
.switch span{
  position:absolute;top:3px;left:3px;width:28px;height:28px;border-radius:50%;
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  transition:transform .2s ease;
}
.switch input:checked + span{transform:translateX(24px)}
.bottom-nav{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:8px ;
  border-radius: 16px;
  z-index:60;
  width:min(100% , 760px);
  padding:8px; 
  background:rgba(255,255,255,.74);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  backdrop-filter:blur(24px);
}
body[data-theme="dark"] .bottom-nav{
  background:rgba(8,14,22,.78);
}
.nav-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:8px;
}
.nav-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px; position:relative;
  padding:10px 12px;
  border-radius:18px;
  background:transparent;
  color:var(--text-soft);
  font-weight:800;
  border: none;
}
.nav-btn svg{width:18px;height:18px}
.nav-btn.active{
  background:linear-gradient(135deg, var(--brand), var(--brand-2));
  color:#fff;
  border-color:transparent;
}
.toolbar{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center
}
.breadcrumb{
  display:flex;gap:8px;align-items:center;color:var(--text-soft);font-size:.85rem
}
.badge{
  display:inline-flex;align-items:center;padding:7px 10px;border-radius:999px;background:var(--surface-strong);border:1px solid var(--line);font-size:.8rem;font-weight:800
}
.toast{
  position:fixed;left:50%;bottom:96px;transform:translateX(-50%);
  background:var(--surface-strong);
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:18px;
  padding:12px 14px;
  z-index:100;
  min-width:min(92vw, 360px);
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  animation:pop .18s ease;
}
@keyframes pop{from{transform:translateX(-50%) translateY(10px);opacity:0}to{transform:translateX(-50%) translateY(0);opacity:1}}
.compact-mode .page-main{padding-top:14px;padding-bottom:20px}
.compact-mode .section{margin-top:14px}
.compact-mode .product-body,.compact-mode .summary-card,.compact-mode .panel,.compact-mode .profile-card,.compact-mode .settings-card,.compact-mode .menu-card{padding:14px}
.compact-mode .hero-copy{padding:18px}
.compact-mode .product-media{aspect-ratio:1/1}
@media (max-width: 1080px){
  .hero-grid,.cart-layout,.profile-layout,.settings-layout,.menu-grid,.feature-strip,.filters{
    grid-template-columns:1fr;
  }
  .feature-strip{grid-template-columns:repeat(auto-fit, minmax(150px, 1fr)); gap: 6px;}
}
@media (max-width: 760px){
  body{padding-bottom:calc(var(--nav-h) + 12px)}
  .page-main{padding:0px 6px }
  .header-inner{padding:0px 8px; gap: 5px;}
  .brand-name{font-size:.95rem} 
  .header-actions .ghost-btn span{display:none}
  .hero-title{font-size:clamp(1rem, 8vw, 1.5rem)}
  .hero-metrics{grid-template-columns:1fr 1fr 1fr}
  .form-grid{grid-template-columns:1fr}
  .cart-item{grid-template-columns:76px 1fr}
  .cart-item .cart-actions{grid-column:1/-1;justify-self:stretch}
  .menu-grid{grid-template-columns:1fr}
  .nav-btn{font-size:.72rem;flex-direction:column;gap:4px;padding:8px 6px}
  .nav-btn svg{width:20px;height:20px}
  .bottom-nav{bottom:0px;border-radius:0px}
  .info-card{padding:12px; gap:6px; border-radius:18px}
  .info-card h4{font-size: 13px}
  .info-card p{font-size:11px}
  .products-grid{gap: 6px;}
  .hero-actions{
    justify-content: space-between;
  }
}
@media(max-width: 480px){
  .products-grid{
    grid-template-columns:repeat(auto-fit, minmax(120px, 1fr)); gap: 4px;
  } 
  .hero-actions a{
    font-size: 12px;
    padding: 0px 12px;
    height: 30px;
  }
  .stock{
    padding:5px 8px;
    font-size: 10px;
  }
  .metric span{font-size: 12px;}
}
hr.sep{
  border:none;height:1px;background:var(--line);margin:0;
}








    .cart_btn{
      border:none;
      background:linear-gradient(135deg, var(--primary3), var(--primary4));
      color:#fff;
      padding:11px 16px;
      border-radius:14px;
      font-weight:800;
      font-size:14px;
      cursor:pointer;
      box-shadow:0 10px 18px rgba(249,115,22,.18);
      transition:.25s ease;
    }

    .cart_btn:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 22px rgba(249,115,22,.24);
    }





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

    .card{
      position:relative;
      overflow:hidden;
      background:var(--card);
      border:1px solid rgba(229,231,235,.95);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
      display:grid;
      grid-template-columns: 230px 1fr;
      min-height:260px;
    }

    .card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:#ffd5b0;
    }

    .media{
      position:relative;
      background:
        linear-gradient(145deg, rgba(249,115,22,.13), rgba(255,255,255,0)),
        linear-gradient(180deg, #fff, #fff8f2);
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:0px;
    }

    .media::after{
      content:"";
      position:absolute;
      inset:auto -30% -55% -30%;
      height:160px;
      background:radial-gradient(circle, rgba(249,115,22,.18), transparent 60%);
      transform:rotate(-8deg);
      pointer-events:none;
    }

    .media img{
      width:100%;
      height:100%;
      object-fit:cover;
      max-height:220px;
      position:relative;
      z-index:1;
      filter:drop-shadow(0 14px 18px rgba(0,0,0,.10));
      transform:scale(1);
      transition:.35s ease;
    }

    .card:hover .media img{
      transform:scale(1.04) rotate(-1deg);
    }

    .badge-stack{
      position:absolute;
      top:14px;
      left:14px;
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      z-index:3;
    }

    .badge{
      font-size:12px;
      font-weight:700;
      padding:6px 10px;
      border-radius:999px;
      color:#fff;
      background:var(--red);
      box-shadow:0 8px 16px rgba(239,68,68,.18);
    }

    .badge.green{
      background:var(--green);
      box-shadow:0 8px 16px rgba(22,163,74,.18);
    }

    .wishlist{
      position:absolute;
      top:14px;
      right:14px;
      width:38px;
      height:38px;
      border-radius:50%;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(0,0,0,.06);
      display:grid;
      place-items:center;
      font-size:18px;
      color:#ef4444;
      z-index:3;
      box-shadow:0 8px 18px rgba(0,0,0,.08);
    }

    .content{
      padding:18px 18px 16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }

    .brandline{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }

    .shop{
      display:flex;
      align-items:center;
      gap:8px;
      font-size:13px;
      color:var(--muted);
      min-width:0;
    }

    .shop b{
      color:var(--text);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:150px;
    }

    .title{
      margin:0;
      font-size:18px;
      line-height:1.35;
      letter-spacing:-.2px;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
      min-height:48px;
    }

    .desc{
      margin:0;
      font-size:13px;
      line-height:1.55;
      color:var(--muted);
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
      min-height:40px;
    }

    .price-row{
      display:flex;
      align-items:end;
      gap:10px;
      flex-wrap:wrap;
      margin-top:2px;
    }

    .price{
      font-size:28px;
      font-weight:800;
      line-height:1;
      color:var(--primary);
    }

    .old-price{
      font-size:14px;
      color:var(--muted);
      text-decoration:line-through;
    }

    .save{
      font-size:12px;
      font-weight:700;
      color:#b45309;
      background:#ffedd5;
      padding:5px 9px;
      border-radius:999px;
    }

    .rating-row{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      font-size:13px;
      color:var(--muted);
    }

    .stars{
      color:#f59e0b;
      letter-spacing:1px;
      font-size:14px;
    }

    .meta{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:auto;
      padding-top:4px;
    }

    .delivery{
      font-size:13px;
      color:#0f766e;
      background:#ecfeff;
      padding:7px 10px;
      border-radius:999px;
      font-weight:700;
    }

    .btn{
      border:none;
      background:linear-gradient(135deg, var(--primary), var(--primary2));
      color:#fff;
      padding:11px 16px;
      border-radius:14px;
      font-weight:800;
      font-size:14px;
      cursor:pointer;
      box-shadow:0 10px 18px rgba(249,115,22,.18);
      transition:.25s ease;
    }

    .btn:hover{
      transform:translateY(-2px);
      box-shadow:0 14px 22px rgba(249,115,22,.24);
    }

    .footer-note{
      margin-top:18px;
      font-size:13px;
      color:var(--muted);
    }

    @media (max-width: 900px){
      .grid{
        grid-template-columns:1fr;
      }
      .card{
        grid-template-columns:180px 1fr;
      }
    }

    @media (max-width: 620px){
      .topbar h1{font-size:24px}
      .card{
        grid-template-columns:1fr ;
      }
      .media{
        min-height:220px;
      }
      .content{
        padding:16px;
      }
      .price{font-size:24px}
      .price{font-size:24px}
    }

/* PREMIUM ADDITIONS */
.product-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover img {
  transform: scale(1.05);
}
.info-card {
  transition: transform 0.3s ease;
}
.info-card:hover {
  transform: translateY(-3px);
}
.lucide {
  vertical-align: middle;
}
.primary-btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.primary-btn:hover {
  opacity: 0.95;
  transform: scale(1.02);
}
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.badge.green {
  background: var(--success);
  color: white;
}
.badge.red {
  background: var(--danger);
  color: white;
}

/* Category Chips Premium */
.chip {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  color: var(--brand);
}
.chip.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(11, 61, 42, 0.2);
}
.chip.active i {
  color: white !important;
}

/* Enhancing Product Grid Responsiveness */
@media (max-width: 768px) {
  .hero-grid h1 {
    font-size: 2rem !important;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
  }
  .product-card .media {
    height: 180px !important;
  }
  .product-card .title {
    font-size: 1rem !important;
  }
  .product-card .price {
    font-size: 1.1rem !important;
  }
  .chip {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   PRODUCT DETAILS PAGE (PDP) MODERN RESPONSIVE STYLES
   ========================================================================== */
.product-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .product-details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .product-details-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
  }
}

/* Gallery Column */
.gallery-col {
  position: relative;
}

@media (min-width: 768px) {
  .gallery-col {
    position: sticky;
    top: calc(var(--header-h) + 16px);
  }
}

.main-img-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-fav-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  color: var(--text);
}

body[data-theme="dark"] .pdp-fav-btn {
  background: rgba(13, 23, 34, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.pdp-fav-btn:hover {
  transform: scale(1.1);
}

.pdp-fav-btn.active i,
.pdp-fav-btn.active svg {
  color: tomato !important;
  fill: tomato !important;
}

.img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform 0.4s ease;
}

.main-img-card:hover .img-wrapper img {
  transform: scale(1.04);
}

.thumb-carousel {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.thumb-img {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  border: 2px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.thumb-img.active, .thumb-img:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 61, 42, 0.2);
}

/* Info Column */
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pdp-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
  color: var(--text);
}

.rating-sold-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.stars-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
}

.star-filled {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

.dot-separator {
  color: var(--text-soft);
}

.sold-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-soft);
}

.price-box {
  background: var(--surface-muted);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.current-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
}

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

.discount-pill {
  background: linear-gradient(135deg, var(--danger), #e11d48);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
}

.tax-info {
  font-size: 0.78rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 4px;
}

.description-box p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

@media (max-width: 480px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.perk-item i, .perk-item svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
  flex-shrink: 0;
}

.perk-item div {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
}

.perk-item strong {
  font-size: 0.8rem;
  color: var(--text);
}

.perk-item span {
  color: var(--text-soft);
}

.purchase-action-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.qty-btn-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-strong);
}

.qty-btn {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: var(--bg-soft);
}

.qty-input {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cta-button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .cta-button-group {
    grid-template-columns: 1fr;
  }
}

.pdp-cta-btn {
  padding: 0.85rem 1.25rem;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.pdp-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cart-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 4px 14px rgba(11, 61, 42, 0.2);
}

.buy-cta {
  background: linear-gradient(135deg, var(--accent), #b39243);
  color: #000;
  box-shadow: 0 4px 14px rgba(196, 168, 91, 0.25);
}

/* Specs Section */
.pdp-details-section, .pdp-reviews-section, .pdp-related-section {
  margin-top: 2rem;
}

.details-card, .reviews-wrapper-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--surface-muted);
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
}

.spec-name {
  color: var(--text-soft);
}

.spec-val {
  font-weight: 600;
  color: var(--text);
}

/* Reviews Section */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.overall-rating-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface-muted);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.overall-rating-card .score {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.overall-rating-card .stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin: 4px 0;
}

.overall-rating-card .count {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.review-item-card {
  background: var(--surface-muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.verified-badge {
  font-size: 0.7rem;
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
}

.review-comment {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 2px 0 0;
  line-height: 1.5;
}

.write-review-card {
  background: var(--surface-strong);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

@media (max-width: 580px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
}

.pdp-input, .pdp-select, .pdp-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pdp-input:focus, .pdp-select:focus, .pdp-textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11,61,42,0.12);
}

.submit-review-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 24px;
  background: var(--brand);
  color: white;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.submit-review-btn:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
}

/* ==========================================================================
   CORPORATE FOOTER STYLES
   ========================================================================== */
.site-footer {
  background: var(--surface-strong);
  border-top: 1px solid var(--line);
  padding: 3.5rem 1.25rem 2rem;
  margin-top: 4rem;
  color: var(--text);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.03);
}

.footer-container {
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

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

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: var(--brand);
  color: #fff;
}

.footer-socials svg, .footer-socials i {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
  color: var(--text);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand);
  transform: translateX(4px);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.contact-list svg, .contact-list i {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.newsletter-form {
  display: flex;
  gap: 6px;
}

.newsletter-input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--brand);
}

.newsletter-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.newsletter-btn:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-chip {
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Hero Banner Image Section */
.hero-banner {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  background: var(--surface-muted);
}

.hero-banner img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .hero-banner img {
    max-height: 240px;
  }
}

@media (max-width: 480px) {
  .hero-banner img {
    max-height: 180px;
  }
}

/* ==========================================================================
   Google Authentication & Auth Modal Styles
   ========================================================================== */

/* Header User Profile Badge & Dropdown */
.header-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  border-radius: 24px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.header-user-btn:hover {
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  border-color: var(--brand);
}
.header-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.header-auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.header-auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(66, 133, 244, 0.35);
}

/* Header User Dropdown */
.user-dropdown-container {
  position: relative;
}
.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  padding: 8px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: fadeInDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.user-dropdown-header {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}
.user-dropdown-header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
.user-dropdown-header span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}
.user-dropdown-item:hover {
  background: var(--surface-muted);
}
.user-dropdown-item.danger {
  color: var(--danger);
}
.user-dropdown-item.danger:hover {
  background: rgba(239, 68, 68, 0.08);
}

/* Auth Modal Backdrop & Card */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.auth-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.auth-modal-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.auth-modal-overlay.active .auth-modal-card {
  transform: translateY(0) scale(1);
}
.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}
.auth-modal-close:hover {
  background: var(--surface);
  color: var(--text);
  transform: rotate(90deg);
}

.auth-modal-body {
  padding: 2rem;
}
.auth-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-modal-logo {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}
.auth-modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px 0;
}
.auth-modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0;
}

/* Auth Tabs */
.auth-tabs {
  display: flex;
  background: var(--surface-muted);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}
.auth-tab-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.auth-tab-btn.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

/* Custom Google Button */
.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  margin-bottom: 1rem;
}
.btn-google:hover {
  background: var(--surface-muted);
  border-color: #4285f4;
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.15);
  transform: translateY(-1px);
}
.btn-google svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Divider with text */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.25rem 0;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 500;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Google GIS Button Container */
.g-id-signin-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}