/* ===== CSS Variables ===== */
:root {
  --brown-dark: #1d1d1d;
  --brown: #1d1d1d;
  --brown-mid: #ffffff3d;
  --gold: #ce1415;
  --gold-light: #ce1415;
  --cream: #fffef0;
  --cream-dark: #f7f3e9;
  --white: #ffffff;
  --text-muted: #ababab;
  --text-light: #c1c1c1;
  --bg-glass: rgba(255, 255, 255, 0.08);
  --bg-glass-strong: rgba(255, 255, 255, 0.14);
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-en: "Sora", sans-serif;
  --font-ar: "Zain", sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
#root {
  height: 100%;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  font-family: var(--font-en);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html {
  background-color: #000000;
}

a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  font-family: inherit;
}
img {
  max-width: 100%;
  display: block;
}
input,
textarea {
  font-family: inherit;
}

/* ===== Layout ===== */
.wraper {
  display: flex;
  /* justify-content: center; */
  background: linear-gradient(369deg, var(--brown) 0%, var(--brown-dark) 100%);
  min-height: 100%;
}

.wraper .menu {
  width: 100%;
  max-width: 500px;
  position: relative;
  min-height: 100vh;
}

.wraper .menu .footer {
  font-size: 9px;
  color: var(--cream);
  text-align: center;
  padding: 12px 0 16px;
  opacity: 0.7;
}

.wraper .menu .footer .caviar {
  color: var(--gold);
}

.wraper .main-logo {
  text-align: center;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  width: calc(100% - 500px);
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wraper .main-logo img {
  width: 280px;
  height: 280px;
  opacity: 0.15;
}

@media (max-width: 1280px) {
  .wraper .menu {
    max-width: 100%;
  }
  .wraper .main-logo {
    display: none;
  }
}

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

@keyframes fadeInSimple {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ani-fade-in {
  animation: fadeIn 0.6s ease-out both;
}
.ani-stb {
  animation: scaleIn 0.6s ease-out both;
}
.ani-stb-f {
  animation: scaleIn 0.7s ease-out both;
  animation-delay: 0.1s;
}
.ani-stb-s {
  animation: scaleIn 0.8s ease-out both;
  animation-delay: 0.2s;
}
.ani-btt-s {
  animation: slideUp 0.7s ease-out both;
  animation-delay: 0.15s;
}
.ani-bts {
  animation: slideUp 0.6s ease-out both;
}

/* ===== Intro Page ===== */
.intro {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.black-background {
  position: fixed;
  inset: 0;
  background-color: #000;
  z-index: 0;
}

.backgroundImage {
  width: 100%;
  height: 72vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: 1;
  mask-image: linear-gradient(to bottom, #000 60%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent);
}

@media (min-width: 650px) {
  .backgroundImage {
    width: 64%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 40px 40px;
  }
}

@media (min-width: 1281px) {
  .backgroundImage {
    width: 100% !important;
  }
}

.intro-tittle {
  display: flex;
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
}

.intro-tittle .tittle {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.5px;
  text-align: center;
}

.intro-tittle .tittle:last-child {
  background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.15) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.t-b-intro {
  z-index: 101;
  margin-top: 1.5rem;
  padding-bottom: 2rem;
  width: 100%;
}

.intro .head {
  text-align: center;
  z-index: 10;
  margin-top: -8rem;
}

.intro .head img {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
}

.intro .head h3 {
  margin-bottom: 10px;
  font-size: 26px;
  color: var(--white);
}

.intro .head p {
  color: var(--white);
  font-size: 18px;
}

.intro form {
  margin: 30px auto 0;
  z-index: 10;
  position: relative;
}

.intro-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  position: relative;
}

.intro-btn {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  background: rgb(255 255 255 / 5%);
  border: none;
  width: 280px;
  height: 54px;
  border-radius: var(--radius);
  transition: var(--transition);
  /* box-shadow: var(--shadow-sm); */
  cursor: pointer;
  font-family: var(--font-ar);
  backdrop-filter: blur(22px);
}

.intro-btn:hover {
  background: rgb(255 255 255 / 7%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.intro-btn--primary {
  font-family: "Exo 2", sans-serif;
  font-size: 22px;
}

.intro-btn:active {
  transform: scale(0.97);
}

.intro form button {
  display: block;
  margin: 0 auto 14px;
  font-size: 22px;
  font-weight: 600;
  color: var(--brown-mid);
  background: var(--white);
  border: none;
  width: 280px;
  height: 54px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.intro form button:active {
  transform: scale(0.97);
}

.English-button {
  font-family: "Exo 2", sans-serif;
  font-size: 24px !important;
}

.intro .social {
  text-align: center;
  position: relative;
  margin-top: 3rem;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.intro .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 10px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.intro .social a:hover {
  background-color: rgba(248, 237, 227, 0.35);
  transform: translateY(-2px);
}

.intro .social a i {
  color: #fffef0d6;
  font-size: 25px;
}

.intro .info {
  color: var(--white);
  font-size: 16px;
  padding: 16px;
  width: 260px;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  position: relative;
}

.intro .info div {
  width: 90%;
  margin-bottom: 12px;
}
.intro .info div i {
  margin-right: 12px;
  font-size: 16px;
  color: var(--white);
}
.intro .info .social i {
  font-size: 24px;
}
.intro .info .phone {
  display: flex;
  align-items: center;
}
.intro .info .phone span {
  display: block;
}

.introBackground {
  width: 100%;
  position: absolute;
  right: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.8;
}

.footerIntro {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--cream);
  text-align: center;
  padding-bottom: 24px;
  z-index: 10;
  opacity: 0.7;
}

.caviarIntro {
  color: var(--gold);
}

/* ===== Header (shared) ===== */
.app-header {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 20px 2.5rem;
}

.header-bg {
  width: 100%;
  height: 170px;
  background: linear-gradient(260deg, #0000009e 60%, #0000000a 200%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  border-radius: 0 0 24px 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.header-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header-logo {
  width: 6rem;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  background: #ffffffc5;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  height: 28px;
  min-width: 28px;
  position: relative;
  border: none;
  transition: var(--transition);
  color: #ce1415;
}

.header-btn:active {
  transform: scale(0.93);
}

.header-feedback-btn {
  text-decoration: none;
  color: #ce1415;
  font-size: 13px;
}

.header-feedback-btn svg {
  flex-shrink: 0;
}

.header-cart-btn {
  position: relative;
}

.cart-badge {
  background-color: var(--gold-light);
  position: absolute;
  font-size: 7px;
  font-weight: 700;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  top: -5px;
  left: -5px;
  width: 14px;
  height: 14px;
  justify-content: center;
  align-items: center;
}

.header-lang-btn {
  gap: 3px;
}
.header-lang-btn i {
  font-size: 18px;
}

.header-close-btn {
  font-size: 16px;
}

/* Legacy header support for Feedback page */
.category .head,
.menu-items .head,
.feedback-head {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 20px 24px;
}

.head .head-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.head .head-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.head .head-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  height: 28px;
  min-width: 28px;
  position: relative;
  border: none;
  transition: var(--transition);
  color: var(--brown-mid);
}

.head .head-btn:active {
  transform: scale(0.93);
}

.head .feedback-btn a {
  text-decoration: none;
  color: var(--brown-mid);
  font-size: 13px;
  font-weight: 500;
}

.head .feedback-btn svg {
  margin-right: 4px;
}

.head .order-btn {
  border-radius: var(--radius-xs);
}

.head .language .language-active {
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 38px;
}

.head .language .language-active i:last-child {
  font-size: 11px;
  color: var(--brown-mid);
}

.d-flex {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.head .head-btn .cartQty {
  background-color: var(--gold-light);
  position: absolute;
  font-size: 7px;
  font-weight: 700;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  padding: 1px;
  top: -5px;
  left: -5px;
  width: 12px;
  height: 12px;
  justify-content: center;
  align-items: center;
}

.head-right .logo {
  position: absolute;
  width: 5rem;
  /* height: 48px; */
  z-index: 101;
  right: 50%;
  transform: translateX(50%);
  top: 2.5rem;
}

.background-head-color {
  width: 100%;
  height: 170px;
  background: linear-gradient(260deg, var(--brown) 60%, var(--gold) 200%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Category Page ===== */
.category {
  width: 100%;
}
.category .head {
  text-align: center;
  position: relative;
}

.category .info {
  text-align: center;
  padding: 8px 0;
}

.category .info button {
  margin-top: 12px;
  color: white;
  background-color: rgba(213, 213, 213, 0.25);
  border-radius: 12px;
  border: 1px solid var(--white);
  padding: 4px 16px;
  cursor: pointer;
}

.category .info h3 {
  font-size: 20px;
  font-weight: 500;
  padding: 12px 0;
  color: var(--white);
  letter-spacing: 0.5px;
}

.category .social {
  text-align: center;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.09);
  width: 50%;
  margin: auto;
  padding-top: 10px;
  border-radius: 20px;
}

.category .social a i {
  margin: 0 10px;
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
}

.category .info .social a {
  padding: 4px 10px;
  margin: 2px;
  color: var(--white);
  font-size: 20px;
}

.category .category-list {
  gap: 12px;
  margin: 0 auto;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 20px;
  margin-top: 0.5rem;
}

.category-item-link {
  text-decoration: none;
  display: block;
}

.category .category-item {
  position: relative;
  text-align: center;
  height: 200px;
  width: 100%;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.category .category-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
  z-index: 1;
}

.category .category-item:active {
  transform: scale(0.97);
}

.category .category-item a {
  position: absolute;
  text-decoration: none;
  bottom: 6px;
  width: 93%;
  right: 50%;
  transform: translateX(50%);
}

.category .category-item h2 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

@media (min-width: 800px) and (max-width: 1280px) {
  .category .category-item {
    height: 240px !important;
    margin-bottom: 20px !important;
  }
}

/* ===== Carousel ===== */
.carousel {
  z-index: 5;
}

.carousel .slide img {
  border-radius: var(--radius);
}

@media (max-width: 1280px) {
  .carousel .slide img {
    height: 185px !important;
    object-fit: cover;
  }
}

@media (min-width: 500px) {
  .menu-items .carousel img,
  .category .carousel img {
    height: 220px !important;
  }
}

@media (min-width: 900px) {
  .menu-items .carousel img,
  .category .carousel img {
    height: 260px !important;
  }
}

.menu-items .carousel,
.category .carousel {
  text-align: center;
  margin: auto;
  z-index: 6;
}

.menu-items .carousel img,
.category .carousel img {
  height: 14rem !important;
  width: 92% !important;
  object-fit: cover;
}

/* ===== Menu Page ===== */
.menu-items {
  width: 100%;
}
.menu-items .head {
  text-align: center;
  position: relative;
}

/* Category tabs */
.menu-items .categories {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  margin: 20px 12px 16px;
  padding: 4px;
  border-radius: var(--radius-sm);
  gap: 0.6rem;
  position: relative;
  z-index: 5;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-items .categories::-webkit-scrollbar {
  display: none;
}

.menu-items .categories .categories-item {
  background-color: transparent;
  border-radius: var(--radius-xs);
  text-align: center;
  text-decoration: none;
  flex-shrink: 0;
}

.menu-items .categories .categories-item .categories-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 3rem !important;
  height: 3rem;
  overflow: hidden;
}

.menu-items .categories .categories-item .categories-icon img {
  width: 3rem;
  height: 3rem;
}

.menu-items .categories .categories-item .categories-name {
  font-size: 13px;
  font-weight: 400;
  padding: 12px 20px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  white-space: nowrap;
  transition: var(--transition);
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid #535353;
}

.menu-items .categories .categories-item .active {
  background-color: var(--brown-mid);
  color: var(--white);
  font-weight: 500;
}

.menu-items .categories .sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}

/* Items section */
.menu-items .items {
  width: 92%;
  margin: 0 auto 24px;
  font-family: var(--font-en);
}

.menu-items .items .head-listview {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 16px 0;
}

.menu-items .items .head-listview .category-name {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

.menu-items .items .head-listview .listview {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.menu-items .items .head-listview .listview .active {
  color: var(--gold);
}

.menu-items .items .head-listview .listview i {
  margin: 5px 6px;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
}

.menu-items .items > .listview,
.menu-items .items .listview {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.menu-items .items .listview .custom-svg-listview {
  padding: 5px;
  border-radius: 4px;
  transition: background 0.2s;
}

.menu-items .items .listview .custom-svg-listview:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Subcategory */
.menu-items .subcategories > .item {
  border: 1px solid rgba(75, 17, 3, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px;
  margin-bottom: 16px;
}

.menu-items .subcategories .item-head {
  background-color: var(--bg-glass-strong);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.menu-items .subcategories .item-body {
  padding: 12px;
  border-radius: var(--radius-sm);
}

/* ===== List View ===== */
.menu-items .items .style-list-container {
  display: flex;
  flex-direction: column;
}

.menu-items .items .style-list {
  display: flex;
  margin: 10px 0;
  /* padding: 12px; */
  border-radius: var(--radius);
  background-color: var(--bg-glass);
  transition: var(--transition);
  animation: fadeIn 0.4s ease-out both;
  justify-content: space-between;
  overflow: hidden;
}

.menu-items .items .style-list .side-right {
  text-align: end;
  position: relative;
  width: 9rem;
  min-height: 9rem;
  flex-shrink: 0;
}

.menu-items .items .style-list .side-right .image {
  width: 100%;
  height: 100%;
  position: relative;
}

.menu-items .items .style-list .side-right img {
  max-width: 100%;
  height: 100px;
  border-radius: var(--radius-sm) !important;
  object-fit: cover;
  width: 9rem;
  height: 9rem;
}

.list-add-btn {
  position: relative !important;
  bottom: 4px;
  right: 4px;
  background-color: #b68d434a !important;
  margin-top: auto;
}

.menu-items .items .style-list .side-left {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.menu-items .items .style-list .side-left h5 {
  color: var(--white);
  font-size: 15px;
  margin: 4px 8px 0px;
  font-weight: 600;
}

.menu-items .items .style-list .side-left p {
  color: var(--text-muted);
  font-size: 12px;
  margin: 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.menu-items .items .style-list .side-left .price {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 8px;
}

.menu-items .items .style-list .side-left .price span {
  color: #c07d00;
  font-size: 13px;
  font-weight: 600;
}

.menu-items .items .style-list .side-left .price span span {
  margin-right: 6px;
}

/* ===== Two-column View ===== */
.menu-items .items .style-two {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.menu-items .items .style-two .item {
  padding: 8px;
  border-radius: var(--radius);
  position: relative;
  width: 47%;
  height: 130px;
  overflow: hidden;
}

.menu-items .items .style-two .item img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-items .items .style-two .item h5 {
  color: var(--white);
  font-size: 13px;
  padding: 3px 10px;
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  z-index: 5;
}

.menu-items .items .style-two .item .price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  bottom: 20px;
  right: 16px;
  z-index: 5;
}

.menu-items .items .style-two .price span {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 2px 8px;
}

/* ===== Large Card View ===== */
.style-large {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.style-large .item {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background-color: #ce14153b;
  overflow: hidden;
  /* box-shadow: var(--shadow-sm); */
  transition: var(--transition);
  animation: slideUp 0.4s ease-out both;
}

.style-large .item:nth-child(2) {
  animation-delay: 0.05s;
}
.style-large .item:nth-child(3) {
  animation-delay: 0.1s;
}
.style-large .item:nth-child(4) {
  animation-delay: 0.15s;
}

.style-large .item:active {
  transform: scale(0.98);
}

.style-large .item .image {
  position: relative;
  width: 100%;
  height: 12rem;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.style-large .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-large .item img {
  border-radius: var(--radius) var(--radius) 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.style-large .item h5 {
  font-weight: 600;
  color: white;
  font-size: 14px;
  padding: 4px 10px 0px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-align: center;
  margin-bottom: -3px;
}

.price-addToCart {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px 4px;
}

.style-large .item .price {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

.style-large .item .price span {
  color: #c07d00;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 1px 0;
  font-family: var(--font-en);
}

.price .size-label {
  font-size: 10px !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
}

.price .iqd {
  font-size: 6px !important;
  color: #ffffffab !important;
  padding-bottom: 2px !important;
  padding-left: 2px !important;
}
.style-list .price .iqd {
  color: #ffffffab !important;
  margin-top: 4px;
}

.style-large .item .addToCart {
  z-index: 5;
}

.addToCartButton {
  display: flex;
  background-color: #5a201257;
  width: 30px;
  height: 30px;
  border: none;
  color: var(--white);
  font-size: 15px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: absolute;
  top: 4px;
  right: 4px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.addToCartButton:active {
  transform: scale(0.88);
  background-color: var(--brown);
}

/* ===== Promo ===== */
.promo {
  z-index: 33;
  position: absolute;
  top: 8%;
  text-align: start;
}

.promo .promo-tittle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  width: 60px;
  height: 26px;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  background-color: #487532;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.promo .promo-text {
  margin-top: 8px;
  padding: 2px 12px;
  border-radius: 20px;
  background-color: rgba(16, 27, 11, 0.42);
  backdrop-filter: blur(4px);
  text-shadow: 1px 1px 2px #487532;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.promo .promo-text span {
  text-shadow: 1px 1px 2px var(--gold);
}

@media (min-width: 500px) {
  .promo {
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
  }
}

/* ===== Cart Button (floating) ===== */
.cartButton {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: none;
  position: fixed;
  bottom: 5%;
  z-index: 9;
  background-color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  font-size: 22px;
  transition: var(--transition);
}

.cartButton:active {
  transform: scale(0.9);
}
.cartButton i {
  color: var(--brown);
}

.cartButton .cartQty {
  position: absolute;
  right: -6px;
  top: -8px;
  background-color: #ff2a2a;
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Cart Panel ===== */
/* New overlay-based cart */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
  animation: fadeInSimple 0.2s ease-out;
}

.cart-overlay.visible {
  display: block;
}

.cart {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  position: fixed;
  top: 0;
  right: -500px;
  bottom: 0;
  width: 500px;
  max-width: 100%;
  z-index: 11;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart.cart-open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  flex-shrink: 0;
}

.cart-logo {
  width: 40px;
  height: 40px;
}

.cart-close {
  background: none;
  border: none;
  color: var(--cream-dark);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Legacy cart classes */
.cart-show {
  display: block;
}

@media (max-width: 1280px) {
  .cart {
    max-width: 100%;
  }
}

.cart-head {
  color: var(--cream-dark);
  font-weight: bold;
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
}

.cart-head-close i {
  cursor: pointer;
  color: var(--cream-dark) !important;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: var(--radius-xs);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.cart-head-close i:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cart-background-image {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 0 0 24px 24px;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  object-fit: cover;
  height: 172px;
  z-index: -1;
}

.cart-body {
  padding: 12px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  margin-top: 40%;
  font-size: 15px;
  opacity: 0.7;
}

.cart-body .cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  animation: fadeIn 0.3s ease-out both;
  overflow: hidden;
}

.cart-item-img {
  width: 6rem;
  height: 6rem;
  overflow: hidden;

  flex-shrink: 0;
}

.cart-item-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-info h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0 1rem;
}

.qty-btn {
  background-color: #ffffff00;
  color: #ffffff;
  border: 1px solid #ffffff26;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 12px;
}

.qty-btn:active {
  transform: scale(0.85);
}

.qty-value {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}

.cart-bottom-line {
  border: solid 1px rgba(227, 227, 227, 0.1);
  width: 87%;
  margin: 0 auto 6px;
}

.cart-footer {
  padding: 16px 20px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.cart-summary {
  width: 100%;
}

.cart-summary-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cart-summary-label {
  color: var(--text-muted);
  font-size: 14px;
}

.cart-summary-value {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.summary-of-price {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
  width: 90%;
  margin: 16px 20px;
}

.summary-of-price p {
  margin-bottom: 1.2rem;
}

.info-content-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.6rem;
}

.info-content-container .item-text {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 400;
}

.info-content-container .item-quantity {
  font-size: 16px;
  color: var(--white);
}

.c-f-all {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.c-f-all .info h4 {
  font-size: 15px;
  color: var(--white);
  font-weight: 600;
}

.c-f-all .info span {
  color: var(--text-muted);
  font-size: 12px;
}

.cart-btn {
  background-color: #383227 !important;
  box-shadow: 0 0 3px 0 #383227 !important;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

@media (max-width: 1280px) {
  .cart-footer {
    max-width: 100%;
  }
}

/* ===== Language Modal (new Header) ===== */
.lang-modal-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  z-index: 80;
  display: none;
  animation: fadeInSimple 0.2s ease-out;
}

.lang-modal-overlay.visible {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-modal {
  width: 90%;
  max-width: 340px;
  backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: scaleIn 0.3s ease-out;
  padding: 20px;
  position: relative;
}

.lang-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--cream-dark);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}

.lang-modal-close:hover {
  opacity: 0.7;
}

.lang-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 8px;
  gap: 10px;
}

.lang-option {
  border-radius: 14px;
  width: 65%;
  height: 44px;
  background-color: #4b110359;
  padding: 10px;
  font-size: 17px;
  color: var(--cream-dark);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
/*  */
.lang-option:active {
  transform: scale(0.95);
}
.lang-option.active {
  background-color: #ce141477;
  border-color: #d888384f;
  backdrop-filter: blur(20px);
}
/* ===== Legacy Language Modal ===== */
.langModal {
  position: fixed;
  inset: 0;
  background-color: #ce14155c;
  backdrop-filter: blur(4px);
  z-index: 80;
  display: none;
  animation: fadeInSimple 0.2s ease-out;
}

.langModalShow {
  display: block;
}

.langModalContainer {
  width: 90%;
  max-width: 340px;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 81;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: scaleIn 0.3s ease-out;
  padding-bottom: 20px;
}

.langModalContainer .langModalHead {
  padding: 16px 20px 0;
  display: flex;
  justify-content: flex-end;
}

.langModalContainer .langModalHead i {
  font-size: 24px;
  color: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
}

.langModalContainer .langModalHead i:hover {
  opacity: 0.7;
}

.langModalContainer .langModalBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 10px;
}

.langModalContainer .langModalBody button {
  border-radius: 14px;
  width: 60%;
  height: 44px;
  background-color: var(--brown);
  padding: 10px;
  font-size: 17px;
  color: var(--cream-dark);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.langModalContainer .langModalBody button:active {
  transform: scale(0.95);
}

@media (max-width: 500px) and (max-height: 675px) {
  .langModalContainer {
    top: 60%;
  }
  .langModalContainer .langModalBody {
    justify-content: center !important;
    align-items: center !important;
  }
}

/* ===== Feedback Page ===== */
.lang {
  position: absolute;
  background-color: var(--cream-dark);
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--brown-mid);
  width: 90%;
  font-size: 14px;
  font-weight: 600;
  flex-direction: row-reverse;
}

.lang .active {
  color: var(--cream);
  margin: 4px;
  width: 100px;
  background-color: var(--brown-mid);
  height: 85%;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.1);
  transition: var(--transition);
}

.lang .button {
  margin: 4px;
  width: 100px;
  height: 85%;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.feedback {
  margin-top: 5rem;
  padding: 1rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
  animation: fadeIn 0.5s ease-out both;
}

.feedback-heading {
  text-align: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
}

.feedback-card {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 0 5% 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeIn 0.5s ease-out both;
}

.feedback-card:nth-child(2) {
  animation-delay: 0.05s;
}
.feedback-card:nth-child(3) {
  animation-delay: 0.1s;
}
.feedback-card:nth-child(4) {
  animation-delay: 0.15s;
}

.feedback-card-label {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.feedback-card-icon {
  font-size: 20px;
  line-height: 1;
}

.feedback-stars {
  display: flex;
  align-items: center;
}

.feedback-stars > span {
  display: flex !important;
  align-items: center;
}

.feedback-error {
  text-align: center;
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 500;
  margin: 4px 5% 8px;
  padding: 8px 12px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.25);
  border-radius: 10px;
  animation: fadeIn 0.3s ease-out both;
}

.feedback .feedback-item {
  margin: 8px 5% 0.6rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.feedback .feedback-item .title {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 15px;
  opacity: 0.9;
}

.feedback .feedback-item textarea,
.feedback .feedback-item input {
  font-weight: 400;
  background-color: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  outline: none;
  width: 100%;
  color: var(--cream);
  padding: 12px 14px;
  font-size: 13px;
  border-radius: 12px;
  transition: var(--transition);
}

.feedback .feedback-item textarea::placeholder,
.feedback .feedback-item input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.feedback .feedback-item textarea:focus,
.feedback .feedback-item input:focus {
  border-color: #b68d43;
  background-color: rgba(255, 255, 255, 0.12);
}

.Comment,
.field {
  min-width: 260px !important;
  margin: auto;
  width: 100%;
}

.feedback .feedback-item textarea {
  height: 100px;
  resize: vertical;
}
.feedback .feedback-item input {
  height: 44px;
}

.feedback .feedback-item button {
  background: linear-gradient(135deg, #ce14152b 0%, #ce14152e 100%);
  border: none;
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  color: var(--white);
  padding: 14px;
  height: 50px;
  font-weight: 600;
  margin: 12px auto 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.feedback .feedback-item button:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(182, 141, 67, 0.25);
}

.feedback-success-message {
  margin: 80px auto;
  padding: 30px 20px;
  text-align: center;
  color: var(--white);
  font-size: 17px;
  line-height: 1.7;
  animation: fadeIn 0.6s ease-out both;
  max-width: 320px;
}

.feedback-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b68d43 0%, #d4a84b 100%);
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(182, 141, 67, 0.4);
  animation: scaleIn 0.5s ease-out both;
}

@media (min-width: 650px) {
  .lang {
    width: 50%;
    height: 50px;
    border-radius: 14px;
    font-size: 16px;
    margin-top: 4rem;
  }
  .cart-background-image {
    height: 275px;
  }
  .feedback {
    margin-top: 10rem;
  }
  .feedback-card {
    margin: 0 10% 12px;
  }
  .feedback .feedback-item {
    margin: 8px 10% 0.6rem;
  }
}

/* ===== Not Found ===== */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.not-found h1 {
  font-size: 72px;
  font-weight: 700;
  opacity: 0.3;
  margin-bottom: 8px;
}

.not-found h2 {
  font-size: 72px;
  font-weight: 700;
  opacity: 0.3;
  margin-bottom: 8px;
}

.not-found p {
  opacity: 0.6;
  margin-bottom: 24px;
  font-size: 16px;
}

.not-found a,
.not-found-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--gold);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.not-found a:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

/* ===== Loader ===== */
.loader-container {
  margin: auto;
  width: 100%;
  text-align: center;
  margin-top: 80px;
}

.loader {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--white);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
}

/* ===== Skeleton ===== */
.flex-1 {
  width: 100%;
}

/* ===== SweetAlert ===== */
.swal2-container.swal2-center > .swal2-popup {
  background-color: var(--brown);
  border-radius: var(--radius);
}

.swal2-styled.swal2-confirm {
  background-color: var(--white) !important;
  color: var(--brown) !important;
  border-radius: var(--radius-sm) !important;
}

.swal2-show {
  animation: swal2-show 0.4s !important;
}

/* ===== Photo View — Enhanced Bottom Sheet ===== */
.PhotoView-Slider__ArrowLeft svg,
.PhotoView-Slider__ArrowRight svg {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15) !important;
  fill: var(--cream) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.PhotoView__PhotoWrap {
  backdrop-filter: blur(4px);
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgb(35 8 1 / 7%) 0%,
    rgb(20 5 1 / 13%) 100%
  );
}

.PhotoView-Slider__ArrowLeft,
.PhotoView-Slider__ArrowRight {
  position: fixed !important;
  z-index: 550 !important;
  top: 36% !important;
  transform: translateY(-50%);
}

.PhotoView__PhotoBox {
  max-width: 360px;
  width: 85vw;
  position: fixed !important;
  top: 45% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  padding: 0;
}

.PhotoView__Photo {
  border-radius: 20px;
  min-width: 280px;
  min-height: 220px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.photoProviderImg {
  width: 100% !important;
  height: auto !important;
  max-height: 48vh !important;
  object-fit: cover;
}

/* --- Image zoom hint badge on cards --- */
.img-zoom-hint {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.img-zoom-hint i {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
}

/* --- Bottom sheet overlay --- */
.ipv-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: #f7f3e93d;
  border-radius: 24px 24px 0 0;
  padding: 10px 20px 28px;
  animation: ipvSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -6px 32px rgba(0, 0, 0, 0.18);
}

@keyframes ipvSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.ipv-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: #d0c9bd;
  margin: 0 auto 14px;
}

.ipv-sheet h4 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
}

.ipv-desc {
  color: #8c8478;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ipv-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ipv-prices {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ipv-price-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 5px 12px;
  min-width: 52px;
}

.ipv-price-chip--main {
  background: var(--brown);
  border-color: var(--brown);
}

.ipv-chip-label {
  font-size: 10px;
  font-weight: 600;
  color: #8c8478;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ipv-price-chip--main .ipv-chip-label {
  color: var(--gold-light);
}

.ipv-chip-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--brown-mid);
  margin-top: 1px;
}

.ipv-price-chip--main .ipv-chip-value {
  color: var(--cream);
}

.ipv-iqd {
  font-size: 11px;
  font-weight: 600;
  color: #cb8d19;
  margin-inline-start: 2px;
  align-self: flex-end;
  padding-bottom: 4px;
}

.ipv-single-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ipv-amount {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.ipv-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ce141545;
  color: var(--brown-dark);
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  /* box-shadow: 0 4px 14px rgba(216, 136, 56, 0.30); */
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  flex-shrink: 0;
  backdrop-filter: blur(13px);
}

.ipv-cart-btn:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(216, 136, 56, 0.18);
}

.ipv-cart-btn i {
  font-size: 15px;
}

/* --- Photo View responsive --- */
@media (max-width: 400px) {
  .PhotoView__PhotoBox {
    max-width: 92vw;
  }
  .PhotoView__Photo {
    min-width: 100% !important;
  }
  .ipv-sheet {
    padding: 8px 16px 24px;
  }
  .ipv-price-chip {
    min-width: 46px;
    padding: 4px 8px;
  }
  .ipv-cart-btn {
    padding: 11px 14px;
    font-size: 13px;
  }
}

@media (min-width: 750px) {
  .PhotoView__PhotoBox {
    max-width: 420px;
  }
  .ipv-sheet {
    max-width: 440px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 950px) {
  .PhotoView__PhotoBox {
    max-width: 480px;
  }
  .ipv-sheet {
    max-width: 500px;
  }
}

/* ===== Tablet adjustments ===== */
@media (min-width: 800px) and (max-width: 1280px) {
  .menu-items .items {
    width: 70% !important;
  }
  .carousel .slide img {
    height: 500px !important;
    object-fit: cover;
  }
  .category .head,
  .menu-items .head,
  .feedback-head {
    padding: 3rem 50px 30px !important;
  }
  .menuItem {
    font-size: 18px;
  }
}

/* ===== Misc helpers ===== */
.item-order {
  position: absolute;
  background-color: #9d670a;
  color: white !important;
  border-radius: 5px;
  width: 25px;
  text-align: center;
  font-size: 14px !important;
  height: 15px;
}

.send-feedback {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
}

.send-feedback a {
  font-size: 16px;
  margin: 8px;
  color: #65370b;
  text-decoration: none;
  display: flex;
  align-items: center;
  background-color: rgba(222, 203, 171, 0.18);
  padding: 3px 6px;
  border-radius: var(--radius-sm);
}

.send-feedback svg {
  font-size: 26px;
  margin-right: 4px;
}

/* ===== Subcategory ===== */
.subcategory-item {
  border: 1px solid rgba(75, 17, 3, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px;
  margin-bottom: 16px;
}

.subcategory-head {
  background-color: var(--bg-glass-strong);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.subcategory-head:active {
  opacity: 0.8;
}

.subcategory-body {
  padding: 12px 0;
}
