/* ========================================
   🎨 SHINDOKHA DESIGN SYSTEM
   Premium Restaurant Menu Styles
   ======================================== */

/* === CSS Custom Properties (Design Tokens) === */
:root {
  /* Brand Colors */
  --color-primary: #706135;
  --color-primary-light: #8a7a4a;
  --color-primary-dark: #5a4e2a;
  --color-primary-alpha: rgba(112, 97, 53, 0.7);

  /* Background Colors */
  --color-bg-deep: #121212;
  --color-bg-surface: #1e1e1e;
  --color-bg-elevated: #2a2a2a;
  --color-bg-overlay: rgba(0, 0, 0, 0.7);

  /* Text Colors */
  --color-text-primary: #f0ddbe;
  --color-text-secondary: #fae7c8;
  --color-text-muted: #a39573;
  --color-text-dark: #1e1e1e;

  /* Accent Colors */
  --color-accent-gold: #ccac52;
  --color-success: #4caf50;
  --color-error: #e74c3c;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #706135 0%, #8a7a4a 100%);
  --gradient-overlay: linear-gradient(
    180deg,
    rgba(112, 97, 53, 0.1) 0%,
    rgba(30, 30, 30, 0.95) 100%
  );
  --gradient-glass: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(112, 97, 53, 0.3);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", "Urbanist", sans-serif;
  --font-arabic: "Noto Naskh Arabic", "UniSIRWAN Somar", sans-serif;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 1000;
  --z-tooltip: 1100;
}

/* === Font Faces === */
@font-face {
  font-family: "UniSIRWAN Somar";
  src: url("../assets/UniSIRWANSomarRegular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display", serif;
  src: url("../assets/nave-regular.ttf") format("truetype");
  font-display: swap;
}

/* === Global Reset & Base Styles === */
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* Improve text rendering */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

html,
body,
#root {
  height: 100%;
  background-color: var(--color-bg-surface);
}

html .english,
body .english,
#root .english {
  font-family: var(--font-display);
}

html .not-english,
body .not-english,
#root .not-english {
  font-family: var(--font-arabic);
}
/* ------- main start ------- */
.backgroundImg {
  position: fixed;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  height: 100%;
  width: 100%;
}
.backgroundImgIntro {
  position: fixed;
  inset: 0;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.6;
  height: 100%;
  width: 100%;
  animation: backgroundImgIntro 20s ease;
}
@media (min-width: 1280px) {
  .backgroundImgIntro {
    max-width: 500px;
  }
}
.backgroundLayoutIntro {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(214, 185, 99, 0.1) 0%, #706134 100%);
}

@keyframes backgroundImgIntro {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }

  100% {
    scale: 1;
  }
}
.wraper {
  display: flex;
  justify-content: space-between;
  background-color: #1e1e1e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}
.wraper::-webkit-scrollbar {
  display: none;
}
.wraper .menu {
  width: 100%;
  max-width: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.wraper .menu .footer {
  font-weight: 400;
  font-size: 14px;
  color: #00000099;
  text-align: center;
  padding-bottom: 1.5rem;
  margin-top: 3rem;
  font-family: "UniSIRWAN Somar";
  z-index: 100;
}

.wraper .menu .footer .caviar {
  color: #00000099;
  text-decoration: underline;
}

.wraper .main-logo {
  text-align: center;
  background-color: #f0ddbe;
  border-left: 1px solid #7d6530;

  width: calc(100% - 500px);
  position: fixed;
  overflow: hidden;
  height: 100%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1001;
}

.wraper .main-logo img {
  width: 10rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1280px) {
  .wraper .menu {
    max-width: 100%;
  }

  .wraper .main-logo {
    display: none;
  }

  .carousel .slide img {
    height: 185px !important;
    object-fit: cover;
  }
}

@media (min-device-width: 800px) and (max-device-width: 1280px) {
  .menu-items .items {
    width: 70% !important;
  }

  .carousel .slide img {
    height: 500px !important;
    object-fit: cover;
  }

  .intro .footer {
    left: 45% !important;
  }

  .category .category-item {
    height: 200px !important;
    margin-bottom: 50px !important;
  }
}

/* ------- main end ------- */

/* ------- intro start ------- */

.intro {
  /* background-image: url('../assets/intro-cover.png');
    background-size: cover; */
  position: relative;
}

.intro .head {
  text-align: center;
  margin-top: 5rem;
  position: relative;
}

.intro .head img {
  width: 10rem;
}

.intro .head h3 {
  margin-bottom: 10px;
  font-size: 28px;
  color: #fff;
}

.intro .head p {
  color: #fff;
  font-size: 20px;
}

.intro form {
  margin: auto;
}

.intro form button {
  display: block;
  margin: auto;
  /* border-radius: 15px; */
  width: 169px;
  height: 46px;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #f0ddbe;
  background-color: #706135;
  cursor: pointer;
  font-family: "UniSIRWAN Somar";

  border: 0.5px solid #706134;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro form button.introEnglishBtn {
  font-family: "Playfair Display", serif;
}
.intro .social {
  text-align: center;
  font-size: 20px;
}

.intro .social a i {
  margin: 0px 5px;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
}

.intro .info {
  color: #fff;
  font-size: 20px;
  border-radius: 9px;
  margin: auto;
  margin-top: 7.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro .info div i {
  margin-right: 15px;
  font-size: 18px;
  color: #fff;
}

.intro .info .social i {
  font-size: 28px;
}

.intro .info .phone {
  display: flex;
  align-content: center;
}
.intro .info .phone span {
  display: block;

  text-align: center;
}
.intro {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.intro .intro-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  margin-top: 2.6rem;
  margin-bottom: 3.8rem;
}
.intro .intro-title h3 {
  color: #f0ddbe;
  font-size: 1.7rem;
  font-weight: 700;
}
.intro .intro-title h2 {
  color: #f0ddbe;
  font-size: 1.5rem;
  font-weight: 600;
}
.intro-bottom {
  margin-bottom: auto;
  margin: 4rem 0 1rem;
}
.intro-bottom .social {
  display: flex;
  gap: 0.075rem;
  justify-content: center;
  align-items: center;
}
.intro-bottom .social a {
  width: 2.72rem;
  height: 2.72rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.intro-bottom .social a img {
  width: 55%;
  height: 55%;
  object-fit: contain;
}
/* ------- intro end ------- */

/* ========================================
   🌟 PREMIUM INTRO PAGE STYLES
   Enhanced Restaurant Landing Experience
   ======================================== */

/* Main Intro Container */
.intro-premium {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-lg);
}

/* Background Image - Enhanced */
.intro-bg-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: blur(2px);
  transform-origin: center;
}

@media (min-width: 1280px) {
  .intro-bg-image {
    max-width: 500px;
  }
}

/* Multi-Layer Gradient Overlays */
.intro-gradient-overlay {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;

  pointer-events: none;
  z-index: 1;
}

/* .intro-gradient-overlay-secondary {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(ellipse at center top, transparent 0%, rgb(30 30 30 / 25%) 70%);
  pointer-events: none;
  z-index: 2;
} */

/* Ambient Glow Effect */
.intro-ambient-glow {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(240, 221, 190, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 3;
  animation: ambientPulse 4s ease-in-out infinite;
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

/* Floating Particles Container */
.intro-particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
}

.intro-particle {
  position: absolute;
  bottom: -10px;
  background: radial-gradient(
    circle,
    rgba(240, 221, 190, 0.9) 0%,
    rgba(240, 221, 190, 0.4) 50%,
    transparent 100%
  );
  border-radius: 50%;
  filter: blur(1px);
}

/* Glassmorphic Card Container */
.intro-glass-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-2xl) var(--space-xl);
  width: 100%;
  max-width: 380px;
}

/* Logo Section */
.intro-logo-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
}

.intro-logo-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    circle,
    rgba(240, 221, 190, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(30px);
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.intro-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

/* Decorative Line */
.intro-decorative-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20px;
  margin: var(--space-sm) 0 var(--space-md);
  position: relative;
}

.intro-decorative-line::before,
.intro-decorative-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #716134 50%,
    transparent 100%
  );
}

.intro-decorative-line .line-diamond {
  width: 8px;
  height: 8px;
  background: #716134;
  transform: rotate(45deg);
  margin: 0 var(--space-sm);
  box-shadow: 0 0 10px rgba(113, 97, 52, 0.5);
}

/* Title Section */
.intro-title-section {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.intro-subtitle {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #716134;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.intro-main-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: #716134;
  line-height: 1.1;
  margin: 0;
}

.intro-tagline {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #716134;
  margin-top: var(--space-xs);
  font-style: italic;
}

/* Language Selection Form */
.intro-language-form {
  width: 100%;
  margin-bottom: var(--space-xl);
}

.intro-select-language {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: rgba(240, 221, 190, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: var(--space-md);
}

.intro-buttons-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
}

/* Premium Language Buttons */
.intro-lang-btn {
    position: relative;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(240, 221, 190, 0.08);
    background: linear-gradient(135deg, #706135b5 0%, #8a7a4ac9 100%) !important;
}

.intro-lang-btn-kurdish,
.intro-lang-btn-arabic {
  font-family: var(--font-arabic);
}

.intro-lang-btn-english {
  font-family: var(--font-display);
}

.intro-lang-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(240, 221, 190, 0.2) 0%,
    rgba(240, 221, 190, 0.12) 100%
  );
  border-color: rgba(240, 221, 190, 0.4);
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(240, 221, 190, 0.15),
    inset 0 1px 0 rgba(240, 221, 190, 0.15);
}

.intro-lang-btn .btn-text {
  position: relative;
  z-index: 2;
}

/* Button Shimmer Effect */
.intro-lang-btn .btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240, 221, 190, 0.2) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: left 0.5s ease;
}

.intro-lang-btn:hover .btn-shimmer {
  left: 100%;
}

/* Social Section */
.intro-social-section {
  width: 100%;
  margin-top: var(--space-md);
}

.intro-social-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.intro-social-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240, 221, 190, 0.3) 100%
  );
}

.intro-social-divider .divider-line:last-child {
  background: linear-gradient(
    90deg,
    rgba(240, 221, 190, 0.3) 0%,
    transparent 100%
  );
}

.intro-social-divider .divider-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: #716134;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-weight: bold;
}

/* Social Icons */
.intro-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.intro-social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(240, 221, 190, 0.2);
    border-radius: 50%;
    color: #716134;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: all var(--transition-base);
}

.intro-social-link:hover {
  background: rgba(240, 221, 190, 0.2);
  border-color: rgba(240, 221, 190, 0.4);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(240, 221, 190, 0.2);
}

.intro-social-link svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
}

.intro-social-link:hover svg {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 380px) {
  .intro-glass-card {
    padding: var(--space-xl) var(--space-md);
  }

  .intro-main-title {
    font-size: 2.2rem;
  }

  .intro-logo {
    width: 120px;
  }
}

@media (min-width: 1280px) {
  .intro-premium {
    max-width: 500px;
  }
}

/* ------- Category Start ------- */

.category {
  width: 100%;
}

.category .head {
  text-align: center;
  position: relative;
  z-index: 11;
}

.category .head img {
  width: 260px;
  height: 150px;
  padding-top: 25px;
}

.category .head .backward {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 2px 3px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.category .head .language {
  position: absolute;
  top: 10px;
  right: 10px;
}

.category .head .language button {
  display: block;
  width: 60px;
  height: 25px;
  background-color: #8a4628;
  border: 1px solid #fff;
  margin-bottom: 5px;
  border-radius: 15px;
  color: #fff;
  font-size: 12px;
}

.category .head .language .activ {
  background-color: #fff;
  color: #8a4628;
}

.category .info {
  text-align: center;
  padding: 10px 0px;
}

.category .info button {
  margin-top: 15px;
  color: white;
  background-color: #d5d5d540;
  border-radius: 12px;
  border: 1px solid #fff;
  padding: 3px 15px;
}

.category .info h3 {
  display: block;
  font-size: 21px;
  font-weight: 400;
  text-align: center;
  padding: 15px 0px;
  color: white;
  letter-spacing: 1px;
}

.category .social {
  text-align: center;
  font-size: 20px;
  background-color: #ffffff17;
  width: 50%;
  margin: auto;
  padding-top: 10px;
  border-radius: 20px;
}

.category .social a i {
  margin: 0px 10px;
  color: #fff;
  cursor: pointer;
  font-size: 32px;
}

.category .info .social a {
  padding: 4px 10px;
  margin: 2px;
  color: #fff;
  font-size: 20px;
}

.category .category-list {
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.category .category-item {
  background: white;
  margin: 10px 0px;
  padding: 15px;
  text-align: center;
  height: 125px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 2px 5px 2px #0a0a0aa6;
  width: 100%;
  z-index: 2;
}

.category .category-item a {
  text-decoration: none;
}

.category .category-item h2 {
  color: #fff;
  font-size: 24px;
  letter-spacing: 1px;
  background-color: #0000007d;
  padding: 0px 5px;
  border-radius: 15px;
}

/* ------- Category end ------- */

/* ------- Menu start ------- */

.menu-items {
  width: 100%;
}

.language {
  display: flex;
}
.language button {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  font-family: "Playfair Display", serif;
}
.language .englishBtn {
  font-family: "Playfair Display", serif;
}
.language .lanLine {
  background-color: white;
  width: 2px;
  height: 1rem;
  margin: 0 0.2rem;
}

.language .activ {
  color: #362106;
  font-weight: 600;
}

.menu-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 10;
  padding: 0 1rem;
  max-width: 40rem;
  margin: auto;
}
.menuItem {
  width: 100%;
  height: 48px;
  font-size: 13px;
  font-weight: 700;
  color: rgb(114 97 53);
  border: none;
  cursor: pointer;
  background: rgb(240 221 190 / 33%);
  margin: 0.8rem 0 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(240, 221, 190, 0.1);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}
.menuItemActive {
  background-color: #7d6530 !important;
  color: #f0ddbe !important;
  border: 1px solid #fae7c8 !important;
}

.menu-items .carousel {
  text-align: center;
  margin: auto;
  position: relative;
  z-index: 11;
}

.menu-items .carousel img {
  height: 150px;
  max-width: 90%;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.75);
  object-fit: cover;
}

.menu-items .categories {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  padding: var(--space-md) var(--space-sm);
  position: relative;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  white-space: nowrap;
  gap: var(--space-sm);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu-items .categories::-webkit-scrollbar {
  display: none;
}

/* Category Item - Pill Style */
.menu-items .categories .categories-item {
  text-align: center;
  text-decoration: none;
  padding: var(--space-sm) var(--space-lg);
  min-width: max-content;
  height: 2.9rem;
  align-content: center;
  color: var(--color-text-dark);
  border-radius: var(--radius-full);
  background: var(--color-primary-alpha);
  border: 1px solid transparent;
  transition: all var(--transition-base);
  scroll-snap-align: start;
  cursor: pointer;
}

.menu-items .categories .categories-item:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Category Item 2 - Icon Style */
.menu-items .categories .categories-item2 {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: var(--space-sm);
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.menu-items .categories .categories-item2:hover {
  transform: translateY(-3px);
}

.menu-items .categories .categories-item2 .cat-icon {
  width: 5.56rem;
  height: 5.56rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  color: var(--color-text-secondary);
  background: rgb(240 221 190 / 38%);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

/* Glow effect on hover */
.menu-items .categories .categories-item2 .cat-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
}

.menu-items .categories .categories-item2:hover .cat-icon::after {
  opacity: 1;
}

/* Active State */
.menu-items .categories .categories-item2.active .cat-icon {
  background: var(--color-primary) !important;
  border: 2px solid var(--color-text-secondary) !important;
  box-shadow: var(--shadow-glow);
}

.menu-items .categories .categories-item2.active .categories-name {
  color: var(--color-primary-dark) !important;
  font-weight: 700;
}

.menu-items .categories .categories-item2 .cat-icon img {
  fill: var(--color-primary);
  filter: invert(0.35) sepia(0.4) saturate(3) hue-rotate(0deg) brightness(0.4);
}

.menu-items .categories .categories-item2.active .cat-icon img {
  filter: invert(0.35) sepia(0.4) saturate(3) hue-rotate(0deg) brightness(3.4);
}

.menu-items .categories .categories-item2.active .categories-name {
  color: var(--color-primary);
}

.menu-items .categories .categories-item2 .categories-name {
  padding: 0 4px;
  font-size: 12px;
  color: #706135;

  text-align: center;
  width: 100%;
  white-space: pre-line;
  font-weight: 700;
  transition: all 0.5s ease-in;
  height: 2rem;
}

.menu-items .categories .categories-item .categories-icon {
  border-radius: 10%;
  margin: 2px auto;
  width: 40px;
  height: 35px;
  overflow: hidden;
}

.menu-items .categories .categories-item .categories-icon img {
  width: 32px;
  height: 32px;
  margin: auto;
}

.menu-items .categories .categories-item .categories-name {
  font-weight: 600;
  font-size: 0.875rem;
  display: block;
}

.menu-items .categories .categories-item.active {
  color: #1e1e1e;
  background-color: #706135;
}

.menu-items .categories .sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}

.menu-items .subcategories > .item {
  border: 1px solid #8a4628;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 15px;
}

.menu-items .subcategories .item-head {
  background-color: #ffffff17;
  padding: 10px 15px;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
}

.menu-items .subcategories .item-body {
  padding: 10px 15px;
  background-color: #313131;
  border-radius: 5px;
}

.menu-items .items {
  width: 90%;
  margin: auto;
  margin-bottom: 20px;
}

.menu-items .items .head-listview {
  display: flex;
  align-items: baseline;
  justify-content: end;
  margin: 15px 0px;
  width: max-content;
  margin-right: auto;
  position: relative;
  z-index: 10;
}

.menu-items .items .head-listview .category-name {
  color: rgb(252 252 252);
  font-size: 24px;
}

.menu-items .items .head-listview .listview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.menu-items .items .head-listview .listview .active {
  color: #d77e07;
}

.menu-items .items .head-listview .listview i {
  margin: 4px 5px;
  color: #fff;
  cursor: pointer;
}

.item-order {
  position: absolute;
  background-color: #9d670a;
  color: white !important;
  border-radius: 5px;
  width: 25px;
  text-align: center;
  font-size: 14px !important;
  height: 15px;
}

.menu-items .items .style-list {
  display: flex;
  margin: var(--space-lg) 0;
  position: relative;
  flex-direction: row-reverse;
  background: var(--gradient-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.menu-items .items .style-list:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.menu-items .items .style-list > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9.75rem;
  pointer-events: none;
  opacity: 0.15;
}

.menu-items .items .style-list .side-right {
  text-align: end;
  height: 7rem;
  width: 7rem;
  overflow: hidden;
  margin-inline-start: -0.2rem;
  position: relative;
}

.menu-items .items .style-list .side-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    transparent 60%,
    var(--color-primary) 100%
  );
  pointer-events: none;
}

@media (min-width: 700px) and (max-width: 1280px) {
  .menu-items .items .style-list .side-right {
    width: 20rem !important;
  }
}

.menu-items .items .style-list .side-right img {
  object-fit: cover;
  width: 7rem;
  height: 7rem;
  transition: transform var(--transition-slow);
}

.menu-items .items .style-list:hover .side-right img {
  transform: scale(1.05);
}

.menu-items .items .style-list .side-left {
  position: relative;
  border-radius: 13px;
  flex: 1;
  height: 6.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-items .items .style-list .side-left .top {
  display: flex;
  justify-content: space-between;
  align-self: center;
  margin: 0.4rem;
  flex-direction: column-reverse;
  width: calc(100% - 2rem);
}

.menu-items .items .style-list .side-left h5 {
  color: #f0ddbe;
  font-size: 11px;
}

.menu-items .items .style-list .side-left p {
  color: #f0ddbe;
  font-size: 10px;
  font-weight: 500;
}

.menu-items .items .style-list .side-left .price {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  flex-direction: column;
  margin: auto 0.875rem 0;

  padding: 0.2rem 0;
}

.menu-items .items .style-list .side-left .price span {
  color: #f0ddbe;
  font-size: 11px;
  text-align: start;
}

.menu-items .items .style-list .side-left .price span span {
  margin: 10px;
}

.menu-items .items .style-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.menu-items .items .style-two .item {
  height: auto;
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1 !important;
  overflow: hidden;
  box-sizing: border-box;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.menu-items .items .style-two .item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.menu-items .items .style-two .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 30, 30, 0.8) 0%,
    transparent 50%
  );
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.menu-items .items .style-two .item:hover::before {
  opacity: 1;
}

.two-cart-image-container {
  position: relative;
  /* height: 10.5rem; */
  width: 100%;
  overflow: hidden;
  overflow: hidden;
}
.two-cart-image-container .image {
  aspect-ratio: 9 / 7.8;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}
@media (min-width: 423px) {
  .two-cart-image-container .image {
    aspect-ratio: 9 / 8;
  }
}
@media (min-width: 557px) {
  .two-cart-image-container .image {
    aspect-ratio: 9 / 8.2;
  }
}
@media (min-width: 657px) {
  .two-cart-image-container .image {
    aspect-ratio: 9 / 8.4;
  }
}
@media (min-width: 1068px) {
  .two-cart-image-container .image {
    aspect-ratio: 9 / 8.5;
  }
}
@media (min-width: 1280px) {
  .two-cart-image-container .image {
    aspect-ratio: 9 / 8.1;
  }
}

.menu-items .items .style-two .item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: relative;
  z-index: 5;
  aspect-ratio: 1/1;
}

.menu-items .items .style-two .item h5 {
  color: #f0ddbe;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .menu-items .items .style-two .item .price {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: absolute;
  bottom: 25px;
  right: 15px;
  z-index: 5;
  height: 20x;
  gap: 5px;
  flex-direction: column;
} */

.menu-items .items .style-two .price span {
  color: #f0ddbe;
  font-size: 11px;
}

.style-large .item {
  width: 90%;
  height: auto;
  margin: auto;
  /* background-color: #44444461; */
  padding: 0.875rem 1rem;
  position: relative;
  margin-bottom: 15px;
  height: 19rem;

  overflow: hidden;
  background-color: #faf1e6;
  box-shadow: 5px 8px 4.8px 0px #00000040;
}
.large-cart-image-container {
  height: 15rem;
  box-shadow: 0px 2px 5px 2px #0a0a0aa6;
  overflow: hidden;
  position: relative;
}

.style-large .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 5;
}

.style-large .item h5 {
  color: #cf760e;
  font-size: 1.25rem;
}

/* .style-large .item .price {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: absolute;
  bottom: 25px;
  right: 15px;
  z-index: 5;
  height: 20x;
  gap: 5px;
  flex-direction: column;
} */

.style-large .item .price span {
  color: #522f05;
  font-size: 1.25rem;
  font-weight: 600;
}
.item .info-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0.1rem 0.8rem;
  gap: 5px;
  z-index: 100;
  position: relative;
}

.item .addToCart {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 10;
}

.two-cart .addToCart {
  top: 6px;
  right: 6px;
}

.item .addToCart .addToCartButton {
  border: none;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.item .addToCart .addToCartButton:hover {
  transform: scale(1.1);
}

.item .addToCart .addToCartButton:active {
  transform: scale(0.95);
}

.item .addToCart .addToCartButton svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all var(--transition-base);
}

.item .addToCart .addToCartButton:hover svg rect:first-child {
  fill: var(--color-primary-light);
}

/* Pulse animation when item is added */
@keyframes addToCartPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.item .addToCart .addToCartButton.pulse {
  animation: addToCartPulse 0.3s ease-out;
}

.two-cart .addToCart .addToCartButton {
  width: 24px !important;
  height: 24px !important;
  font-size: 14px;
}
.item .addToCart .action::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: white;
  transform: rotate(45deg);
  position: absolute;
  top: -4px;
  right: 6px;
  z-index: -1;
  border-radius: 2px;
}
.item .addToCart .action {
  width: 110px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: white;
  padding: 2px 5px;
  border-radius: 7px;
  position: relative;
  top: 8px;
  color: #797979;
  display: none;
}
.item .addToCart .action i {
  /* background-color: #f0f0f0; */
  color: #797979;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 3px;
  padding: 5px;
  border-radius: 16px;
}

.menu-items .head,
.feedback-head {
  position: relative;
  z-index: var(--z-sticky);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: var(--space-xl) 24px var(--space-md);
}

/* Glassmorphism Header (sticky version) */
.menu-items .head.sticky-header {
  position: sticky;
  top: 0;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(112, 97, 53, 0.2);
  padding: var(--space-md) 24px;
  margin: 0;
  box-shadow: var(--shadow-md);
}

.headLogo {
  width: 8.125rem;
  margin: 2rem auto 2.9rem;
  transition: transform var(--transition-base);
}

.headLogo:hover {
  transform: scale(1.02);
}

.head .head-left {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
}

.head .head-right {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  align-items: center;
}

.headLogo img {
  width: 100%;
  position: relative;
  z-index: 10;
}
.feedback-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 2px;
  text-decoration: none;
  margin-bottom: 0.1rem;
}
.feedback-btn a p {
  color: #706135;
  font-size: 13px;
}
.head .order-btn {
  position: relative;
}
.head .order-btn .cartQty {
  background-color: #706135;
  position: absolute;
  font-size: 8px;
  font-weight: 700;
  color: #f0ddbe;
  border-radius: 32px;
  display: flex;
  padding: 0.5px;
  top: -5px;
  right: -5px;
  width: 12px;
  height: 12px;
  padding-bottom: 0.2rem;
  justify-content: center;
  align-items: center;
}

.langModal {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: #000000be;
  z-index: 80;
  display: none;
  backdrop-filter: blur(1px);
}
@media (min-width: 1280px) {
  .langModal {
    width: 500px !important;
  }
}
/* ------- Menu end ------- */

/* ========================================
   🍽️ PREMIUM MENU PAGE ENHANCEMENTS
   Elevated Restaurant Menu Experience
   ======================================== */

/* === Premium Header Buttons === */
.head-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  background: rgba(240, 221, 190, 0.08);
  border: 1px solid rgba(240, 221, 190, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
}

.head-btn:hover {
  background: transparent !important;
  border-color: rgba(240, 221, 190, 0.25);
  transform: translateY(-1px);
}

.head-btn p {
  color: #706135;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
}

/* === Enhanced Menu Tabs (Food, Desserts, etc.) === */
.menu-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 10;
  padding: 0 1rem;
  max-width: 40rem;
  margin: auto;
}

.menuItem {
  width: 100%;
  height: 48px;
  font-size: 13px;
  font-weight: 700;
  color: rgb(113 97 52);
  border: none;
  cursor: pointer;
  background: rgb(240 221 190 / 38%);
  margin: 0.8rem 0 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(240, 221, 190, 0.1);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.menuItem::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(240, 221, 190, 0.1) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}

.menuItem:hover::before {
  left: 100%;
}

.menuItem:hover {
  background: rgba(240, 221, 190, 0.12);
  border-color: rgba(240, 221, 190, 0.2);
  color: #f0ddbe;
}

.menuItemActive {
  background: linear-gradient(135deg, #706135 0%, #8a7a4a 100%) !important;
  color: #f0ddbe !important;
  border: 1px solid rgba(240, 221, 190, 0.3) !important;
  box-shadow:
    0 4px 15px rgba(112, 97, 53, 0.3),
    inset 0 1px 0 rgba(240, 221, 190, 0.1);
}

/* === Premium Category Icons === */
.menu-items .categories .categories-item2 .cat-icon {
  width: 5.56rem;
  height: 5.56rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  color: var(--color-text-secondary);
  background: rgba(240, 221, 190, 0.38);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.menu-items .categories .categories-item2 .cat-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(240, 221, 190, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.menu-items .categories .categories-item2:hover .cat-icon::before {
  opacity: 1;
}

.menu-items .categories .categories-item2.active .cat-icon {
  background: linear-gradient(135deg, #706135 0%, #8a7a4a 100%) !important;
  border: 2px solid rgba(240, 221, 190, 0.4) !important;
  box-shadow:
    0 4px 20px rgba(112, 97, 53, 0.4),
    0 0 20px rgba(240, 221, 190, 0.15);
}

/* Category Name Styling */
.menu-items .categories .categories-item2 .categories-name {
  padding: 0 4px;
  font-size: 11px;
  color: rgba(112, 97, 53, 0.8);
  text-align: center;
  width: 100%;
  white-space: pre-line;
  font-weight: 600;
  transition: all 0.3s ease;
  height: 2rem;
}

.menu-items .categories .categories-item2.active .categories-name {
  color: #706135;
  font-weight: 700;
}

/* === Enhanced List View Toggle === */
.menu-items .items .head-listview .listview {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 221, 190, 0.06);
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(240, 221, 190, 0.1);
}

.menu-items .items .head-listview .listview span {
  padding: 0.4rem;
  border-radius: 4px;
  transition: all var(--transition-base);
}

.menu-items .items .head-listview .listview span:hover {
  background: rgba(240, 221, 190, 0.1);
}

.menu-items .items .head-listview .listview span.active {
  background: rgba(112, 97, 53, 0.2);
}

/* === Premium Item Cards (Grid View) === */
.menu-items .items .style-two .item {
  height: auto;
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 1/1 !important;
  overflow: hidden;
  box-sizing: border-box;
  background: linear-gradient(135deg, #706135 0%, #5a4e2a 100%);
  border-radius: var(--radius-md);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(240, 221, 190, 0.08);
}

.menu-items .items .style-two .item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(112, 97, 53, 0.2);
  border-color: rgba(240, 221, 190, 0.2);
}

/* Image Overlay on Hover */
.menu-items .items .style-two .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 30, 30, 0.85) 0%,
    rgba(30, 30, 30, 0.3) 40%,
    transparent 100%
  );
  z-index: 6;
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition-base);
}

/* Item Info Container */
.two-cart .info-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  z-index: 10;
  background: linear-gradient(
    to top,
    rgba(30, 30, 30, 0.9) 0%,
    transparent 100%
  );
}

.menu-items .items .style-two .item h5 {
  color: #f0ddbe;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.menu-items .items .style-two .price span {
  color: rgba(240, 221, 190, 0.9);
  font-size: 11px;
  font-weight: 700;
}

/* === Premium Add to Cart Button === */
.item .addToCart .addToCartButton {
  border: none;
  background: rgba(240, 221, 190, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(240, 221, 190, 0.2);
}

.item .addToCart .addToCartButton:hover {
  transform: scale(1.15);
  background: rgba(240, 221, 190, 0.25);
  border-color: rgba(240, 221, 190, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.item .addToCart .addToCartButton:active {
  transform: scale(0.95);
}

/* === Premium List View Items === */
.menu-items .items .style-list {
  display: flex;
  margin: var(--space-md) 0;
  position: relative;
  flex-direction: row-reverse;
  background: linear-gradient(135deg, #706135 0%, #5a4e2a 100%);
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(240, 221, 190, 0.08);
}

.menu-items .items .style-list:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(112, 97, 53, 0.2);
  border-color: rgba(240, 221, 190, 0.2);
}

/* === Language Modal Enhancement === */
.langModalContainer {
  background: linear-gradient(
    135deg,
    rgb(69 60 35 / 18%) 0%,
    rgb(50 45 35 / 1%) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(240, 221, 190, 0.15);
  padding: var(--space-xl);
  max-width: 320px;
  /* margin: auto; */
  /* margin-top: 25vh; */
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(240, 221, 190, 0.3);
}

.langModalHead {
  text-align: right;
  margin-bottom: var(--space-md);
}

.langModalHead i {
  color: rgba(240, 221, 190, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0.5rem;
}

.langModalHead i:hover {
  color: #f0ddbe;
  transform: rotate(90deg);
}

.langModalBody {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.langModalBody button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(240, 221, 190, 0.8);
  background: rgba(240, 221, 190, 0.08);
  border: 1px solid rgba(240, 221, 190, 0.15);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-arabic);
}

.langModalBody button:last-child {
  font-family: var(--font-display);
}

.langModalBody button:hover {
  background: rgba(240, 221, 190, 0.15);
  border-color: rgba(240, 221, 190, 0.3);
  color: #f0ddbe;
}

.langModalBody button.language-select-active {
  background: linear-gradient(135deg, #706135 0%, #8a7a4a 100%);
  border-color: rgba(240, 221, 190, 0.3);
  color: #f0ddbe !important;
  box-shadow: 0 4px 15px rgba(112, 97, 53, 0.3);
}

.langModalShow {
  display: block !important;
}

/* ========================================
   🍽️ PREMIUM MENU CARDS
   Unified Card Design System
   ======================================== */

/* === Base Menu Card === */
.menu-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5a4e2a9e 0%, #706135c7 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 221, 190, 0.1);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25),
    0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(112, 97, 53, 0.2);
  border-color: rgba(240, 221, 190, 0.2);
}

/* === List View Card === */
.menu-card-list {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  margin-bottom: var(--space-md);
  min-height: 7.5rem;
}

.menu-card-list .menu-card-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  gap: var(--space-sm);
}

.menu-card-list .menu-card-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.menu-card-list .menu-card-image {
  width: 7.5rem;
  min-width: 7.5rem;
  position: relative;
  overflow: hidden;
}

.menu-card-list .menu-card-image .image-wrapper {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.menu-card-list .menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.menu-card-list:hover .menu-card-image img {
  transform: scale(1.08);
}

/* Image Loading Placeholder for List View */
.menu-card-list .image-loading-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3d3524 0%, #2a2518 100%);
}

/* Image Gradient Overlay */
.menu-card-list .menu-card-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    transparent 50%,
    rgba(90, 78, 42, 0.8) 100%
  );
  pointer-events: none;
}

/* === Grid View Card === */
.menu-card-grid {
  display: flex;
  flex-direction: column;
  aspect-ratio: 1/1.15;
}

.menu-card-grid .menu-card-image {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.menu-card-grid .menu-card-image .image-wrapper {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.menu-card-grid .menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.menu-card-grid:hover .menu-card-image img {
  transform: scale(1.08);
}

/* Image Loading Placeholder */
.image-loading-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3d3524 0%, #2a2518 100%);
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(240, 221, 190, 0.15);
  border-top-color: rgba(240, 221, 190, 0.6);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Image Gradient Overlay */
.menu-card-grid .menu-card-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 30, 30, 0.7) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.menu-card-grid .menu-card-footer {
  position: absolute;
  padding: 0.75rem;
  background: linear-gradient(0deg, #514526, transparent);
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}

/* === Card Title === */
.menu-card-title {
  color: #f0ddbe;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-grid .menu-card-title {
  font-size: 0.8rem;
  -webkit-line-clamp: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* === Card Description === */
.menu-card-description {
  color: rgba(240, 221, 190, 0.6);
  font-size: 0.7rem;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === Price Section === */
.menu-card-price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: start;
}

.menu-card-price .price-item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.7rem;
}

.menu-card-price .size-label {
  color: rgba(240, 221, 190, 0.5);
  font-weight: 500;
  font-size: 0.65rem;
}

.menu-card-price .price-value {
  color: #f0ddbe;
  font-weight: 700;
}

.menu-card-price .price-single {
  color: #f0ddbe;
  font-weight: 700;
  font-size: 0.85rem;
}

/* === Add to Cart Button === */
.menu-card-action {
  position: relative;
  z-index: 10;
}

.menu-card-grid .menu-card-action {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(112, 97, 53, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 221, 190, 0.3);
  border-radius: 50%;
  color: #f0ddbe;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.add-to-cart-btn:hover {
  transform: scale(1.15);
  background: rgba(138, 122, 74, 0.95);
  border-color: rgba(240, 221, 190, 0.5);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(240, 221, 190, 0.2);
}

.add-to-cart-btn:active {
  transform: scale(0.95);
}

.menu-card-grid .add-to-cart-btn {
  width: 32px;
  height: 32px;
}

/* === Grid Layout for Two Cards === */
.menu-items .items .style-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* ========================================
   📸 PHOTO VIEW OVERLAY ENHANCEMENT
   Premium Image Viewer Styling
   ======================================== */

/* PhotoProvider Image */
.photoProviderImg {
  border-radius: var(--radius-md);
}

/* Item Photo View Overlay */
.item-photo-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  background: linear-gradient(
    to top,
    rgba(30, 30, 30, 0.98) 0%,
    rgba(30, 30, 30, 0.9) 50%,
    transparent 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.item-photo-view h5 {
  color: #f0ddbe;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.item-photo-view p {
  color: rgba(240, 221, 190, 0.7);
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  line-height: 1.5;
  max-height: 4.5rem;
  overflow: hidden;
}

.item-photo-view .price {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #706135 0%, #8a7a4a 100%);
  border-radius: var(--radius-full);
  border: 1px solid rgba(240, 221, 190, 0.3);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(112, 97, 53, 0.3);
}

.item-photo-view .price span {
  color: #f0ddbe;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.item-photo-view .price span::before {
  content: "IQD ";
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.7;
}

/* PhotoView Animation Enhancement */
.PhotoView-Portal {
  --photo-view-index: 10000;
}

.PhotoView__PhotoBox {
  animation: photoFadeIn 0.3s ease-out;
}

@keyframes photoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Grid Adjustments */
@media (min-width: 500px) {
  .menu-items .items .style-two {
    gap: var(--space-lg);
  }

  .menu-card-grid .menu-card-footer {
    padding: 1rem;
  }

  .menu-card-grid .menu-card-title {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .menu-card-list {
    min-height: 8rem;
  }

  .menu-card-list .menu-card-image {
    width: 8rem;
    min-width: 8rem;
  }

  .menu-card-title {
    font-size: 1rem;
  }
}

/* === Image View Icon === */
.image-view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(112, 97, 53, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 221, 190, 0.3);
  border-radius: 50%;
  color: #f0ddbe;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
}

.menu-card:hover .image-view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.menu-card-grid .image-view-icon {
  width: 40px;
  height: 40px;
}

.menu-card-grid .image-view-icon svg {
  width: 18px;
  height: 18px;
}

/* ========================================
   🎭 NO-IMAGE CARD - Modern Clean Design
   Minimal Text-First Cards
   ======================================== */

/* === No Image Card (List Only) === */
.no-image-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, rgb(90 78 42 / 81%) 0%, rgb(112 97 53 / 67%) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 221, 190, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.no-image-card {
  border-color: rgba(240, 221, 190, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.137);
}

/* Content Area */
.no-image-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* Title */
.no-image-card-title {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Description */
.no-image-card-desc {
  color: var(--color-text-primary);
  font-size: 0.72rem;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.8;
}

/* Price Section */
.no-image-card-price {
  margin-top: 0.25rem;
}

.no-image-card-price .price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.no-image-card-price .price-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.no-image-card-price .size-label {
  color: var(--color-text-tertiary);
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.7;
}

.no-image-card-price .price-value {
  color: var(--color-text-primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.no-image-card-price .price-dot {
  color: rgba(240, 221, 190, 0.25);
  font-size: 0.5rem;
}

.no-image-card-price .price-single {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.no-image-card-price .price-single .price-value {
  font-size: 0.95rem;
}

.no-image-card-price .price-currency {
  color: var(--color-text-tertiary);
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0.6;
}

/* Add Button */
.no-image-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(112, 97, 53, 0.4);
  border: 1px solid rgba(240, 221, 190, 0.12);
  border-radius: 50%;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.no-image-card-btn:hover {
  background: rgba(112, 97, 53, 0.7);
  border-color: rgba(240, 221, 190, 0.25);
  transform: scale(1.08);
}

.no-image-card-btn:active {
  transform: scale(0.95);
}

.no-image-card-btn svg {
  transition: transform 0.25s ease;
}

.no-image-card-btn:hover svg {
  transform: rotate(90deg);
}

/* RTL Support */
[dir="rtl"] .no-image-card:hover {
  transform: translateX(-4px);
}

/* Responsive */
@media (min-width: 500px) {
  .no-image-card {
    padding: 1.1rem 1.4rem;
  }
  
  .no-image-card-title {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .no-image-card {
    padding: 1.2rem 1.5rem;
  }
  
  .no-image-card-title {
    font-size: 1.05rem;
  }
  
  .no-image-card-btn {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   🖼️ PREMIUM IMAGE MODAL
   Luxurious Fullscreen Image Viewer
   ======================================== */

/* Modal Overlay */
.image-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  /* background: rgba(15, 15, 15, 0.95); */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(20px);
}

/* Close Button */
.image-modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 221, 190, 0.1);
  border: 1px solid rgba(240, 221, 190, 0.2);
  border-radius: 50%;
  color: #f0ddbe;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.image-modal-close:hover {
  background: rgba(240, 221, 190, 0.2);
  border-color: rgba(240, 221, 190, 0.4);
}

/* Modal Container */
.image-modal-container {
  position: relative;
  width: 95%;
  max-width: 480px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #2a2518c4 0%, #1e1a14c2 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(240, 221, 190, 0.15);
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(240, 221, 190, 0.3),
    inset 0 1px 0 rgba(240, 221, 190, 0.05);
  border-radius: 1rem !important;
}

/* Image Wrapper */
.image-modal-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.85;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.image-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-modal-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(30, 26, 20, 0.5) 70%,
    rgba(30, 26, 20, 0.9) 100%
  );
  pointer-events: none;
}

/* Loader */
.image-modal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 26, 20, 0.8);
}

/* Info Section */
.image-modal-info {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.image-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
}

.image-modal-title {
  flex: 1;
  color: #f0ddbe;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Price Badge */
.image-modal-price {
  gap: 0.3rem;
  display: flex;
  /* flex-direction: column; */
  align-items: self-end;
  padding: 0.6rem 1rem;
  /* background: linear-gradient(135deg, #706135 0%, #8a7a4a 100%); */
  border-radius: var(--radius-md);
  /* border: 1px solid rgba(240, 221, 190, 0.3); */
}

.image-modal-price .price-currency {
  font-size: 0.65rem;
  color: rgba(240, 221, 190, 0.7);
  font-weight: 500;
}

.image-modal-price .price-value {
  font-size: 1.1rem;
  color: #f0ddbe;
  font-weight: 700;
}

/* Description */
.image-modal-description {
  color: rgba(240, 221, 190, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Multi-price Options */
.image-modal-prices {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.image-modal-prices .price-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(240, 221, 190, 0.08);
  border: 1px solid rgba(240, 221, 190, 0.15);
  border-radius: var(--radius-sm);
  min-width: 70px;
}

.image-modal-prices .size-name {
  font-size: 0.7rem;
  color: rgba(240, 221, 190, 0.6);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.image-modal-prices .size-price {
  font-size: 0.9rem;
  color: #f0ddbe;
  font-weight: 700;
}

/* Add to Cart Button */
.image-modal-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #70613573 0%, #8a7a4a7d 100%);
  border: 1px solid rgba(240, 221, 190, 0.3);
  border-radius: var(--radius-md);
  color: #f0ddbe;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
}

.image-modal-add-btn:hover {
  background: linear-gradient(135deg, #8a7a4a 0%, #9a8a5a 100%);
  border-color: rgba(240, 221, 190, 0.5);
  box-shadow:
    0 6px 20px rgba(112, 97, 53, 0.4),
    0 0 20px rgba(240, 221, 190, 0.15);
}

/* Decorative Elements */
.image-modal-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.decoration-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 221, 190, 0.05);
}

.decoration-ring.ring-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -150px;
}

.decoration-ring.ring-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
}

/* === Modal Navigation Arrows === */
.image-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 221, 190, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 221, 190, 0.2);
  border-radius: 50%;
  color: #f0ddbe;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.image-modal-nav:hover {
  background: rgba(240, 221, 190, 0.2);
  border-color: rgba(240, 221, 190, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.image-modal-nav-prev {
  left: var(--space-xl);
}

.image-modal-nav-next {
  right: var(--space-xl);
}

/* === Modal Counter === */
.image-modal-counter {
  position: absolute;
  top: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(240, 221, 190, 0.1);
  color: #f0ddbe;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
}

.image-modal-counter .divider {
  opacity: 0.5;
  font-weight: 400;
}

/* === Swipe Hint === */
.swipe-hint {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 0.8rem;
  background: rgba(112, 97, 53, 0.8);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-sm);
  color: #f0ddbe;
  font-size: 0.65rem;
  font-weight: 500;
  z-index: 20;
  opacity: 0.8;
  pointer-events: none;
  animation: hintFade 3s forwards;
}

@keyframes hintFade {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  20% {
    opacity: 0.8;
    transform: translate(-50%, 0);
  }
  80% {
    opacity: 0.8;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
}

/* === Pagination Dots === */
.image-modal-dots {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}

.image-modal-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 221, 190, 0.2);
  border: 1px solid rgba(240, 221, 190, 0.1);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-modal-dots .dot.active {
  background: #f0ddbe;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(240, 221, 190, 0.4);
}

/* Modal Responsive navigation */
@media (max-width: 1024px) {
  .image-modal-nav {
    display: none; /* Hide arrows on mobile/tablet, use swipe */
  }
}

/* Modal Responsive */
@media (max-width: 480px) {
  .image-modal-overlay {
    padding: 0;
  }

  .image-modal-container {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .image-modal-close {
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
  }

  .image-modal-title {
    font-size: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .image-modal-overlay {
    padding: var(--space-xl);
  }
}

/* ------- Loader start ------- */

.loader-container {
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-md);
}

/* Premium Dual Ring Loader */
.loader {
  width: 48px;
  height: 48px;
  border: 3px solid var(--color-primary);
  border-bottom-color: transparent;
  border-radius: var(--radius-full);
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: relative;
}

.loader::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 3px solid var(--color-text-primary);
  border-top-color: transparent;
  border-radius: var(--radius-full);
  animation: rotation 0.8s linear infinite reverse;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ------- Loader end ------- */

/* .swal2-container.swal2-center > .swal2-popup {
  background-color: #faf1e6;
  box-shadow: 5px 8px 4.8px 0px #00000040;
  padding: 1.125rem;
} */

.swal2-styled.swal2-confirm {
  background-color: #ffffff !important;
  color: #8a4628 !important;
}
body.swal2-no-backdrop .swal2-container .swal2-modal {
  padding: 0 !important;
}
.swal2-show {
  animation: swal2-show 1s !important;
}
.swal2-image {
  width: 100%;
  height: 20rem;
  margin: auto !important;
  object-fit: cover;
}

/* .cartButton {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100rem;
  border: none;
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9;
  background-color: #faf1e6;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.feedback-btn {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 100rem;
  border: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9;
  background-color: #faf1e6;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 4px 0px #00000040;
} */

.cartButton i {
  color: var(--color-accent-gold);
}

.cartButton .cartQty {
  position: absolute;
  right: 6%;
  top: -5px;
  background: var(--gradient-primary);
  color: var(--color-text-primary);
  border-radius: var(--radius-full);
  width: 18px;
  height: 18px;
  font-size: 12px;
  font-family: var(--font-arabic);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Cart quantity badge pulse */
@keyframes cartBadgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.cartButton .cartQty.pulse {
  animation: cartBadgePulse 0.4s ease-out;
}

/* Cart Panel */
.cart {
  background: linear-gradient(
    180deg,
    var(--color-bg-surface) 0%,
    var(--color-bg-deep) 100%
  );
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 500px;
  z-index: var(--z-modal);
  display: none;
  overflow-y: auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-right: 1px solid rgba(112, 97, 53, 0.3);
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 1280px) {
  .cart {
    max-width: 100%;
    border-right: none;
  }
}

.cart-show {
  display: flex;
  flex-direction: column;
}

.cart-show::-webkit-scrollbar {
  display: none;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin: 1.2rem 1.5rem;
}
.cart-head > * {
  flex: 1;
  text-align: center;
}

.cart-head .cart-head-close i {
  cursor: pointer;
  /* background-color: #8a4628; */
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2f2f2f;
}
.cart-head-title-container {
  margin: 2rem auto 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.cart-head-title {
  text-align: center;
  color: #706135;
  font-size: 1.5rem;
  font-weight: 400;
  position: relative;
  z-index: 10;
}

.cart-body {
  padding: 0 1rem;
  width: 100%;
  height: 100%;
  overflow-y: scroll !important;
}
.cart-body-container {
  min-height: 13rem;
  margin-bottom: 4rem;
  margin: 2rem 1rem;
  overflow: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
.cart-body-container::-webkit-scrollbar {
  display: none;
}
.cart-body .cart-svg-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.cart-body p {
  text-align: center;
  color: #706135;

  font-size: 1.2rem;
}

.cart-body .cart-item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
  padding: 12px;
  border-bottom: 1px solid #706135;
  flex-direction: row-reverse;
}
.cart-body .cart-item .info h3 {
  font-size: 11px;
  color: #706135;
  margin-bottom: 4px;
  text-align: start;
  font-weight: 400;
}
.cart-body .cart-item .info span {
  color: #706135;
  font-size: 11px;
  text-align: end;
  font-weight: 400;
}
.cart-body .cart-item .img {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 0px 1px 1px #bdbdbd;
}

.cart-body .cart-item .info {
  flex: 1;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.cart-body .cart-item .action {
  width: 24%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0.5px solid #706135;
  border-radius: 50px;
  padding: 0px 7px;
  height: 22px;
}
.cart-body .cart-item .action p {
  font-size: 11px;
  color: #706135;
  font-family: "Playfair Display", serif;
}

.cart-body .cart-item .action i {
  color: #706135;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-body .cart-item .img img {
  width: 100%;
}
.cart-logo {
  width: 19.5rem;
  height: 10.4375rem;
  margin: auto auto 2rem;
}
.cart-logo img {
  width: 100%;
}
.cart-footer {
  padding: 1.5rem 0rem;
  margin: 2rem;
  margin-bottom: 0;
  bottom: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.cart-footer .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
.cart-footer .info div {
  display: flex;
  align-items: center;
  color: #706135;
  font-size: 1rem;
  gap: 0.3rem;
  width: max-content;
  font-weight: 400;

  justify-content: space-between;
  width: 100%;
}

.cart-footer .btn {
  background-color: #706135;
  border: none;
  border-radius: 8px;
  color: #f0ddbe;
  cursor: pointer;
  font-size: 1.25rem;
  border: none;
  width: 119px;
  height: 38px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.1rem;
}

.cart-footer .btn i {
  margin: 0px 8px;
}

.shadow-tree {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  z-index: 444;
  pointer-events: none;
}
.shadow-tree img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
}
@media (min-width: 1280px) {
  .feedback-btn {
    right: auto !important;
    left: 25.1rem !important;
  }
}
@media only screen and (max-width: 1280px) {
  .cart-footer {
    max-width: 100%;
  }
}

.flex-1 {
  /* flex: 1; */
  width: 100%;
}

/* feedback */
.logo-feedback {
  position: relative;
  z-index: 10;
  width: 8.125rem;
  margin: 0rem auto 0;
  display: flex;
}
.feedback-page {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feedback-container {
  min-width: 20rem;
}
.feedback-container .stars-container {
  border: 1px solid #706135;
  border-radius: 17px;
  padding: 0.5rem 1rem 1.5rem;
}
@media (max-width: 366px) {
  .feedback .feedback-item .title {
    font-size: 1rem !important;
    width: 12rem !important;
  }
}
.feedback {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 11;
  gap: 0.9rem;
}

.feedback h1 {
  text-align: center;
  margin: 2rem auto 10px;
  color: #706135;
  font-size: 1.5rem;
  font-weight: 400;
}

.feedback .feedback-item {
  margin: 0.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 21rem;
}

.feedback .feedback-item .title {
  color: #706135;
  font-size: 1rem;
  font-weight: 400;
  width: 16rem;
}
.feedback .feedback-item .rating {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
}

.feedback .feedback-item textarea,
input {
  background-color: #fffcfc00;
  border: none;
  outline: none;
  color: #706135;
  font-size: 15px;
  text-align: start;
  font-weight: 600;
  border: 1px solid #706135;

  font-weight: 400;
}
.feedback .feedback-item textarea {
  min-width: 19rem;
  border-radius: 17px;
  padding: 12px;
}
input {
  border-radius: 8px;
}
.feedback .feedback-item textarea,
input::placeholder,
.feedback .feedback-item textarea::placeholder {
  color: #706135;
}

.feedback .feedback-item textarea {
  height: 100px;
}

.feedback .feedback-item input {
  width: -webkit-fill-available;
  height: 38px;
  padding: 0 10px;
}
.feedback-item .field {
  width: 100%;
}

.feedback .feedback-item button {
  background-color: #706135;
  border: none;
  border-radius: 8px;
  color: #f0ddbe;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  border: none;
  width: 119px;
  height: 38px;
}

.feedback-success-message {
  margin: 50px auto;
  padding: 15px;
  text-align: center;
  color: white;
  font-size: 20px;
}
.head-feedback a,
.head-feedback > div,
.cart-head .cart-head-close,
.cart-head .language {
  margin-top: 1rem;
}
.head-feedback a,
.cart-head .cart-head-close {
  text-align: start;
}
.head-feedback {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin: 1.2rem 1.5rem;
  position: relative;
  z-index: 10;
}
.head-feedback > * {
  flex: 1;
  text-align: center;
}
.head-feedback img,
.cart-head img {
  width: 154px;
}
.head-btn {
  padding: 4px 10px;
  height: 1.75rem;
  min-height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.head-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.head-btn:hover::before {
  opacity: 1;
}

.head-btn:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.head-btn:hover p,
.head-btn:hover svg path {
}

.head-btn:active {
  transform: translateY(0) scale(0.98);
}

.head-btn p {
  font-size: 13px;
  color: var(--color-primary);
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 0.1rem;
  transition: color var(--transition-fast);
}
.head-feedback .head-btn .head-feedback .backward {
  padding: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.head-feedback .lang {
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: center;
  margin-right: 35px;
}

.head-feedback .lang div {
  color: #706135;
  cursor: pointer;
  font-size: 18px;
}

.head-feedback .lang div:nth-child(2n) {
  border-left: 1px solid #ac9874;
  border-right: 1px solid #ac9874;
  padding: 0 15px;
  margin: auto 15px;
}

.head-feedback .lang .active {
  color: #fefefe;
}

.send-feedback {
  text-align: center;
  margin: 25px auto;
  border: 1px solid #ffffff59;
  padding: 6px 18px;
  border-radius: 6px;
}

.send-feedback a {
  font-size: 14px;
  line-height: 20px;
  margin: 8px;
  color: #ffffffc2;
  text-decoration: none;
}

.send-feedback i {
  font-size: 12px;
  margin-right: 4px;
}

/* animation */
.ani-gttb {
  animation: gttb 3s ease-in-out 1s;
  overflow: hidden;
}
@keyframes gttb {
  0% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(7rem);
  }
  100% {
    transform: translateY(0);
  }
}

.swal2-actions {
  display: none !important;
}

/*  */
@media (min-width: 668px) and (max-width: 1280px) {
  .large-cart-image-container {
    height: 27rem;
  }
  .two-cart-image-container {
    position: relative;
    /* height: 12rem; */
  }
  .style-large .item {
    height: 30rem;
  }
}

.swal2-container {
  position: relative;
  z-index: 1001;
  pointer-events: auto !important;
}

/* language */

.langModalShow {
  display: block;
}
.langModal {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: #0000006e;
  z-index: 80;
  display: none;
}

.langModalShow {
  display: block;
}

.langModalContainer .langModalHead {
  padding: 13px 19px 0px;
  display: flex;
  justify-content: end;
}

.langModalContainer .langModalHead i {
  cursor: pointer;
}

.langModalContainer .langModalBody {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.langModalContainer .langModalBody button {
  width: 100%;
  height: 46px;
  background-color: #706134;

  padding: 9px;
  font-size: 20px;
  font-weight: 500;
  color: #706134;
  cursor: pointer;
  border: none;
  width: 60%;
  margin-bottom: 0.5rem;
  display: flex;

  justify-content: center;
  align-items: center;
}
.langModalContainer {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10181;
  max-width: 364px;
  position: relative;
  border: 1px solid #f0ddbe;
}

@media (max-width: 500px) and (max-height: 675px) {
}

.langModalContainer .langModalHead {
  padding: 13px 19px 0px;
  display: flex;
  justify-content: end;
}

.langModalContainer .langModalHead i {
  cursor: pointer;
}

.langModalContainer .langModalBody {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem 0 3rem;
}

.langModalContainer .langModalBody button {
  width: 100%;
  padding: 22px 9px;
  font-size: 18px;
  cursor: pointer;
  border: none;
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "UniSIRWAN Somar";
  background-color: #f0ddbe;
  border: 0.5px solid #f0ddbe;
}
.langModalContainer .langModalHead {
  padding: 13px 19px 0px;
  display: flex;
  justify-content: end;
}

.langModalContainer .langModalHead i {
  font-size: 26px;
  background-color: #f0ddbe;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

/* animations */

/*animation*/
.ani-btt {
  animation: ani-btt 2s ease-in-out;
  position: relative;
}
.ani-btt-s {
  animation: ani-btt-s 2.3s ease-in-out;
}
.ani-fade-in-s {
  animation: ani-fade-in 2s ease-in;
}
.ani-fade-in-f {
  animation: ani-fade-in 0.5s ease-in;
}
.ani-fade-out-f {
  animation: ani-fade-out 0.5s ease-in;
}
.ani-fade-out {
  animation: ani-fade-out 1s ease-out;
}
.ani-btt-e {
  animation: ani-btt 2s ease-in-out;
}
.ani-rtl {
  animation: ani-rtl 2s ease-in-out;
}
.ani-ltr {
  animation: ani-ltr 2s ease-in-out;
}
.ani-ttb {
  animation: ani-ttb 2s ease-in-out;
}
.ani-stb {
  animation: ani-stb 0.5s ease-in-out;
}
.ani-stb-out {
  animation: ani-stb-out 0.5s ease-in-out;
}
.ani-bts {
  animation: ani-bts 2s ease-in-out;
}
.ani-fadeIn {
  animation: ani-fadeIn 2s ease-in;
}
@keyframes ani-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes ani-stb {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes ani-stb-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes ani-bts {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ani-btt {
  0% {
    transform: translateY(5vh);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes ani-rtl {
  0% {
    opacity: 0;
    transform: translatex(5vh);
  }

  100% {
    opacity: 1;
    transform: translatex(0);
  }
}
@keyframes ani-ltr {
  0% {
    opacity: 0;
    transform: translatex(-5vh);
  }

  100% {
    opacity: 1;
    transform: translatex(0);
  }
}
@keyframes ani-ttb {
  0% {
    transform: translateY(-3vh);
  }

  100% {
    transform: translateY(0);
  }
}
@keyframes ani-ttb-ll {
  0% {
    transform: translate(-50%, -10vh);
    left: 50%;
  }

  100% {
    left: 50%;
  }
}
@keyframes ani-ttb-ll0 {
  0% {
    transform: translate(-50%, -10vh);
  }

  100% {
  }
}
/**/

.ani-rtl-s {
  animation: ani-rtl-s 2s ease-in-out;
  animation-delay: 2.3s;
}
.ani-ltr-s {
  animation-delay: 2.3s;
  animation: ani-ltr-s 2s ease-in-out;
}
.ani-ttb-s {
  animation: ani-ttb-s 2s ease-in; /* Delay is included in shorthand */
}
.ani-stb-s {
  animation: ani-stb-s 2s ease-in;
  animation-delay: 2.3s;
}
.ani-fadeIn-s {
  animation-delay: 2.3s;
  animation: ani-fadeIn-s 2s ease-in;
}
@keyframes ani-fadeIn-s {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes ani-stb-s {
  0% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}
@keyframes ani-btt-s {
  0% {
    opacity: 0;
    transform: translateY(8vh);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ani-rtl-s {
  0% {
    transform: translatex(20vh);
  }

  100% {
    transform: translatex(0);
  }
}
@keyframes ani-ltr-s {
  0% {
    transform: translatex(-20vh);
  }

  100% {
    transform: translatex(0);
  }
}
@keyframes ani-ttb-s {
  0% {
    opacity: 0;
    transform: translateY(-3vh);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*fast ani*/

.ani-btt-f {
  animation: ani-btt-f 1.5s ease-in-out;
}
.ani-rtl-f {
  animation: ani-rtl-f 1.5s ease-in-out;
}
.ani-ltr-f {
  animation: ani-ltr-f 1.5s ease-in-out;
}
.ani-ttb-f {
  animation: ani-ttb-f 1.5s ease-in-out;
}
.ani-fade-in {
  animation: ani-fade-in 1.5s ease-in;
}
.ani-stb-f {
  animation: ani-stb-f 1.5s ease-in;
}
@keyframes ani-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ani-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ani-stb-f {
  0% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ani-btt-f {
  0% {
    transform: translateY(5vh);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes ani-rtl-f {
  0% {
    transform: translatex(5vh);
  }
  100% {
    transform: translatex(0);
  }
}
@keyframes ani-ltr-f {
  0% {
    transform: translatex(-5vh);
  }
  100% {
    transform: translatex(0);
  }
}
@keyframes ani-ttb-f {
  0% {
    transform: translateY(-5vh);
  }
  100% {
    transform: translateY(0);
  }
}

/* item view */

/**/
.PhotoView-Slider__ArrowLeft svg,
.PhotoView-Slider__ArrowRight svg {
  border-radius: 200px;
  background: #f0f2f2 !important;
  fill: #e9491d !important;
}

.PhotoView__PhotoWrap {
  background: linear-gradient(90deg, #0000003b -2.43%, #0000008c 161.8%);
  backdrop-filter: blur(2px);
}

.PhotoView-Slider__ArrowLeft {
  position: fixed !important;
  z-index: 550 !important;
  top: 75% !important;
  transform: translateY(-75%);
}

.PhotoView-Slider__ArrowRight {
  position: fixed !important;
  z-index: 550 !important;
  top: 75% !important;
  transform: translateY(-75%);
}

.item-photo-view h5 {
  color: #706134;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  font-family: "UniSIRWAN Somar";
  padding: 0 4px;
}
.item-photo-view div {
  margin: auto;
}

.item-photo-view .price {
  margin: 0.5rem auto;
  color: #706134;
  font-size: 16px;
  font-weight: 400;
  font-family: "UniSIRWAN Somar" !important;
}
.item-photo-view .price .currency {
  color: #000000;
  font-size: 13px;
  font-weight: 500;
}

.item-photo-view p {
  color: #706134;
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px !important;
  text-align: center;
  margin: auto;
}
.item-photo-view {
  background-color: #fffbf6;
  padding: 0.8rem 0;
  border-radius: 1rem 1rem 0 0;
}

@media (max-width: 650px) {
  /* .photoProviderImg {
    max-width: 100% !important;
    max-height: 349px !important;
  } */
  .item-photo-view {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 100px;
    max-width: 85%;
  }
}
@media (min-width: 650px) {
  .item-photo-view {
    position: absolute;
    left: 46vw;
    transform: translateX(-50%);
    z-index: 500;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 100px;
    max-width: 260px;
  }
}
@media (max-width: 376px) {
  .item-photo-view {
    position: absolute;
    left: 50vw;
  }
}
@media (max-height: 760px) and(min-width: 900px) {
  .item-photo-view {
    position: absolute;
    left: 50vw;
    transform: translateX(-50%);
    z-index: 500;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 100px;
    max-width: 260px;
  }
}
.PhotoView__Photo {
  min-width: 327px;
  min-height: 268px;
}
@media (min-width: 1280px) {
  .PhotoView-Portal {
    max-width: 500px;
  }
  .PhotoView-Slider__ArrowRight {
    left: 432px !important;
    right: auto !important;
  }
}

.PhotoView__PhotoBox {
  text-align: center;
  max-width: 340px;
  min-height: min-content;
  padding: 10px;
  position: fixed !important;
  top: 49% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  border: 1px solid #706135;
}

.photoProviderImg {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1/1 !important;
}
@media (min-height: 100px) and (min-width: 750px) {
  /* .PhotoView__PhotoBox {
    max-width: 80%;
    min-height: auto;
  } */
}
@media (max-width: 400px) {
  .PhotoView__PhotoBox {
    max-width: 87%;
    min-height: min-content;
  }
  .PhotoView__Photo {
    min-width: 100% !important;
  }
}

@media (min-width: 600px) {
  .PhotoView__PhotoBox {
    min-width: 500px;
  }
}
@media (min-width: 650px) {
  .PhotoView__PhotoBox {
    min-width: 450px;
  }
}

@media (min-width: 1280px) {
  .PhotoView__PhotoBox {
    min-width: 450px;
  }
}

.PhotoView__Photo {
  max-width: 90%;
  min-height: 100%;
}
.item-photo-view {
  max-width: 30rem;
  left: 50%;
}
.item-photo-view {
  top: auto;
  left: 50%;
  bottom: 0;
}

.PhotoView-Slider__BannerWrap {
  background-color: transparent !important;
}
.PhotoView-Slider__toolbarIcon {
  fill: #706135 !important;
}
.PhotoView-Slider__BannerWrap {
  color: #706135 !important;
}
