/* =====================================================
   1. GLOBAL STYLES
===================================================== */
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Medium.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-SemiBoldItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-SemiBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-SemiBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

body, button, a {
  font-family: 'Cormorant', serif;
}

body {
  font-family: 'Cormorant', serif;
  margin: 0;
  padding: 0;
  background-color: #f8f1e7;
  color: #1F1E1C;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.en, .ua, .ar {
  display: none;
}

/* =====================================================
   2. HEADER (LOGO + NAV + LANGUAGE)
===================================================== */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 30px;
  height: 60px;
  background-color: #f8f1e7 !important;
}

.logo img {
  max-height: 50px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
/* =====================================================
   3. NAVIGATION
===================================================== */

.nav-links {
  display: flex;
  gap: 30px;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
}

.nav-links a {
  font-size: 20px;
  text-decoration: none;
  font-weight: 500;
  color: #1F1E1C;
  position: relative;
  padding: 8px 0;
  display: block;
}

.nav-links a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #1F1E1C;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
  opacity: 0.7;
}


/* =====================================================
   4. LANGUAGE SWITCH
===================================================== */

.language-switch {
  display: flex;
  gap: 8px;
}

.language-switch button {
  font-family: 'Cormorant', serif; /* FIX: same font */
  font-size: 14px;
  padding: 4px 10px;
  border: 1px solid #1F1E1C !important;
  background: #f8f1e7;
  color: #1F1E1C;
  cursor: pointer;
  transition: 0.2s;
  font-weight: 700;
}

.language-switch button:hover {
  background: #1F1E1C;
  color: #f8f1e7;
}

/* active language (JS will use this later if needed) */
.language-switch button.active {
  background: #f8f1e7;
  color: #1F1E1C;
  border-color: #1F1E1C;
}

/* =====================================================
   5. BURGER MENU
===================================================== */

.burger {
  display: none;
  flex-direction: column;
  min-width: 22px;
  height: 14px;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  margin-left: 4px;
  position: relative;
  z-index: 10;
  padding: 6px;
  border-radius: 6px;
  background: rgba(31, 30, 28, 0.05);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.burger span {
  display: block;
  height: 2px;
  width: 22px;
  background-color: #1F1E1C;
  transition: 0.3s;
  min-width: 22px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Burger animation to cross */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}


/* =====================================================
   6. HERO SECTION (HOME PAGE)
===================================================== */
.hero-container {
  display: flex;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero h1 {
  font-size:2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 5px 0;
}

.hero-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
  6.1 HERO QUOTE
===================================================== */

.hero-quote p {
  font-size: 24px;
  font-style: italic;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  margin: 5px 0;
}

/* =====================================================
   7. INTRO SECTION (HOME PAGE)
===================================================== */

.intro-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.intro p {
  font-size: 20px;        
  line-height: 1.2;        /* keep rhythm unchanged */
  font-weight: 400;
  margin: 5px 0;
  margin-top: 4px;
  margin-bottom: 2px;
}

.intro-column {
  flex: 1;
}


/* =====================================================
   8. HOME GALLERY STRIP
===================================================== */

.home-gallery-strip {
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 20px;
}

.home-gallery-strip div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-gallery-strip img {
  height: 220px;
}


/* =====================================================
   9. FOOTER
===================================================== */

footer {
  max-width: 1200px;
  margin: 20px auto 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

footer a {
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  border: 1px solid #1F1E1C;   /* visible outline */
  background: #f8f1e7;        
  color: #1F1E1C;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

footer a:hover {
  background: #1F1E1C;
  color: #f8f1e7;
  border-color: #1F1E1C;
}

footer p {
  max-width: 900px;
  margin: 15px auto 0;
  text-align: center;
  line-height: 1.5;
}
/* =====================================================
   10. RTL (ARABIC SUPPORT)
===================================================== */

body.rtl header,
body.rtl .hero-container,
body.rtl .intro-container,
body.rtl footer {
  direction: ltr; /* prevents layout flipping */
}

body.rtl p,
body.rtl h1,
body.rtl h2,
body.rtl h3 {
  text-align: right;
}

body.rtl .about-container {
  direction: rtl;
  flex-direction: row-reverse;
}

/* CONTACT FORM RTL FIX */
body.rtl .contact-form {
  direction: rtl;
}

body.rtl .contact-form input,
body.rtl .contact-form textarea {
  text-align: right;
}
/* =====================================================
   11. MOBILE RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  
  .burger {
    display: flex !important;
  }

  .nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 320px;
  background: #f8f1e7;
  padding: 6px 0;
  gap: 4px;
  text-align: center;
  z-index: 999;
}

.nav-links a {
  padding: 6px 0;
  font-size: 18px;
  color: #1F1E1C !important;
}

  .nav-links.active {
    display: flex;
  }

body {
  font-family: 'Cormorant', serif !important;
  background-color: #f8f1e7;
}

header {
  height: 50px;
  padding: 5px 15px;
}

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2px !important;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 100%;
    display: block;
  }

.hero-text {
  text-align: center;
  margin-top: 0px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}

.hero-quote p {
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  text-align: center;
}

 .language-switch button {
  font-weight: 700;
}

.language-switch button.active {
  background: #1F1E1C !important;
  color: #f8f1e7 !important;
}

  .intro-container {
  flex-direction: column;
  margin: 0px;
  padding: 0px 20px;
 }
 
  .intro p {
  margin-top: 4px;
  margin-bottom: 2px;
  }
  
  /* hide gallery on mobile */
  .home-gallery-strip {
    display: none;
  }
  
.about-container {
  flex-direction: column;
  align-items: center;
}

  footer {
    padding: 10px;
  }
  
  /* =====ABOUT Page - MOBILE========*/
  
.about-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: 15px;
  }
  
.about-image {
  width: 70%;
  max-width: 320px;
  margin: 0 auto;
  order: 1; /* ðŸ”¥ force image first */
}

.about-text {
  width: 100% !important;
  display: block;
  order: 2; /* ðŸ”¥ force text below */
}

/* TEXT */
.about-text p {
  font-size: 18px;
  line-height: 1;
  text-align: left;
  width: 100%;
}

/*=====ACHIEVEMENTS MOBILE =====*/

.achievements-header {
  margin-bottom: 5px;
}

.achievements-container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* IMAGE FULL WIDTH */
.timeline-image {
  display: flex;
  justify-content: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);

}

.timeline-image img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: flex;
}

/* COLUMNS GAP CONTROL */
.timeline-columns {
  gap: 10px;
  width: 100%;
}

/* TITLE MOBILE */
.timeline-column h3 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px 0;
}

/* LIST MOBILE */
.timeline-column ul {
  list-style: disc;
  padding-left: 16px;
  margin: 0;
}

.timeline-column li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 6px;
}

/* ITALIC MOBILE */
.timeline-column em {
  display: inline;
  font-size: 16px;
  opacity: 0.85;
  margin-top: -20px;        
  margin-left: 0px;
}
}

/* ============================
  12. ABOUT PAGE 
=============================== */

.about-text h2 {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 6px;
}

/* Text spacing + justification */
.about-text p {
  line-height: 1;
  text-align: justify;
}

/* RTL mobile fix */
.about-container {
  display: flex;
  flex-direction: row; /* IMPORTANT */
  align-items: flex-start;
}

body.rtl .about-image {
  margin: 0 auto;
}

body.rtl .about-text {
  text-align: right;
}

/* ===========================
 13.  ACHIEVEMENTS PAGE
============================== */

.achievements-header {
  margin-bottom: 10px;
}

.achievements-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* LEFT + RIGHT STRUCTURE BALANCE */
.timeline-columns {
  flex: 4.5;
  display: flex;
  gap: 20px;
  text-align: left;
}

.timeline-image {
  flex: 2;
  padding: 0;
  display: flex;
  align-items: flex-start;
}

.timeline-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* COLUMN TITLE */
.timeline-column h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1;
  text-align: center;
}

/* LIST RESET */
.timeline-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LIST ITEMS  */
.timeline-column li {
  position: relative;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.1;
  padding-left: 16px;
}

/* FIXED BULLET */
.timeline-column li::before {
  content: "▪"; 
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
}

body.rtl .timeline-column li {
  padding-left: 0;
  padding-right: 12px;   /* space for bullet on right */
  text-align: right;
}

body.rtl .timeline-column li::before {
  left: auto;
  right: 0;              /* 🔥 move bullet to right */
}

/* ITALIC LOCATION & YEAR TEXT */
.timeline-column em {
  display: block;        
  margin-top: -20px;        
  margin-left: 0px;       
  font-size: 16px;
  opacity: 0.85;
}
/* =====================================================
  14. GALLERY PAGE (FINAL CLEAN VERSION)
===================================================== */


/* =========================
LANGUAGE DISPLAY
========================= */

.tab-button .en,
.tab-button .ua,
.tab-button .ar,
.img-overlay .en,
.img-overlay .ua,
.img-overlay .ar,
.reserve-btn .en,
.reserve-btn .ua,
.reserve-btn .ar {
  display: inline;
}


/* =========================
TABS (PREMIUM STYLE)
========================= */

.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 35px 0 55px;
  flex-wrap: wrap; /* mobile safety */
}

.tab-button {
  padding: 10px 22px;
  background: #f8f1e7;
  border: 1px solid #1F1E1C;
  color: #1F1E1C;
  font-family: 'Cormorant Serif', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ACTIVE */
.tab-button.active {
  background: #1F1E1C;
  color: #f8f1e7;
}

/* HOVER */
.tab-button:hover {
  background: #1F1E1C;
  color: #f8f1e7;
}

/* TAB VISIBILITY */
.tab-content {
  display: none !important;
}

.tab-content.active {
  display: block !important;
}


/* =========================
GALLERY GRID
========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  justify-content: center;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto 70px auto;
}


/* =========================
LIGHTBOX
========================= */

.lightbox {
  display: none;
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 42px;
  color: white;
  cursor: pointer;
  padding: 10px;
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }


/* =========================
IMAGE STYLE
========================= */

.img-wrapper img {
  border-radius: 0 !important;
}


/* =========================
GALLERY HEADER
========================= */

.gallery-header {
  text-align: center;
  line-height: 1;
  font-size: 2.5rem;
}

.gallery-header p {
  max-width: 900px;
  margin: 25px auto !important;
  line-height: 1.5;
  font-size: 20px;

  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
}


/* =========================
IMAGE CARD TYPOGRAPHY
========================= */

.img-overlay {
  margin-top: 10px;
}

/* TITLE */
.img-overlay h3 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 6px;
}

/* DESCRIPTION */
.img-overlay p,
.img-overlay p span {
  font-size: 1.08rem !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
}

/* PRICE (STRONG VISUAL) */
.img-overlay .price,
.img-overlay .price span {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
}

/* BUTTON */
.reserve-btn {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border: 1px solid #1F1E1C;
  color: #1F1E1C;
  background: #f8f1e7;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.reserve-btn:hover {
  background: #1F1E1C;
  color: #f8f1e7;
}

/* =========================
MOBILE gallery page
========================= */

@media (max-width: 900px) {
.gallery-header {
    margin-top: 5px !important;
  }

  .gallery-header h1 {
    margin-bottom: 5px !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-header p {
    margin-top: 5px !important;
    font-size: 1.15rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  .img-overlay h3 {
    font-size: 1.1rem;
  }

  .img-overlay p,
  .img-overlay p span {
    font-size: 0.95rem !important;
  }

  .img-overlay .price,
  .img-overlay .price span {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 600px) {

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    gap: 8px;
  }

  .tab-button {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

/* =====================================================
  15. CONTACT PAGE
===================================================== */

/* CONTACT PAGE — TRANSPARENT HEADER */
.contact-page header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  padding: 8px 30px;
  box-sizing: border-box;
}

.contact-page footer {
  position: relative;
  margin-top: auto;
  z-index: 5;
}

/* =========================
BACKGROUND VIDEO
========================= */

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

/* =========================
LAYOUT
========================= */

.contact-page .contact-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 80px;
  box-sizing: border-box;
}

.contact-page .contact-content {
  width: 40%;
  min-width: 320px;
  margin-top: 100px;
  margin-bottom: 5px;
}

/* =========================
TYPOGRAPHY
========================= */

.contact-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-content p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* =========================
FORM
========================= */

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  font-size: 18px;
  font-family: 'Cormorant', serif;
  border: 1px solid #ccc;
  border-radius: 5px;
  direction: ltr;
}

.contact-form button {
  padding: 12px;
  font-size: 18px;
  font-family: 'Cormorant', serif;
  background: #1F1E1C;
  color: #f8f1e7;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.contact-form button:hover {
  background: #444;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  background: transparent;
  color: #1F1E1C;
  border: 1px solid rgba(31,30,28,0.4);
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
  color: rgba(31,30,28,0.6);
}

/* =========================
RTL SUPPORT
========================= */

body.rtl .contact-content {
  text-align: right;
}

body.rtl .contact-form input,
body.rtl .contact-form textarea {
  direction: rtl;
  text-align: right;
}

/* =========================
UI RESET
========================= */

.contact-page header,
.contact-page footer {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.contact-page .nav-links {
  box-shadow: none !important;
  border-radius: 0 !important;
}

.contact-page .nav-links a::after {
  display: none !important;
}

.contact-page .language-switch button {
  background: transparent !important;
  border: 1px solid #1F1E1C;
  box-shadow: none !important;
  color: #1F1E1C;
}

.contact-page footer a {
  background: transparent !important;
  border: 1px solid rgba(31,30,28,0.5) !important;
  box-shadow: none !important;
  color: #1F1E1C;
}

/* =====================================================
  MOBILE
===================================================== */

@media (max-width: 768px) {

  .contact-page header {
    padding: 10px 16px;
  }

  .contact-page .contact-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 80px 20px 20px;
    box-sizing: border-box;
  }

  .contact-page .contact-content {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-page .contact-form {
    width: 100%;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form textarea,
  .contact-page .contact-form button {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-page .contact-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .contact-page .contact-content p {
    text-align: center;
    font-size: 18px;
  }

  .contact-page footer {
    margin-top: auto;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .contact-page .contact-form button {
    background: #1F1E1C;
    color: #f8f1e7;
    border-radius: 6px;
  }

  .contact-page .contact-form input,
  .contact-page .contact-form textarea {
    border-radius: 6px;
  }
    .contact-page .language-switch button {
    color: #1F1E1C !important;
  }

  .contact-page header a,
  .contact-page header button {
    color: #1F1E1C !important;
  }
}

 /* =====================================================
   SHOP PAGE (CLEAN STRUCTURE FIXED)
===================================================== */

.shop-header {
  text-align: center;
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 20px;
}

.shop-header h1 {
  font-size: 2.5rem;
   line-height: 1;
  margin: 5px 0;
}

.shop-header p {
  font-size: 20px;
  line-height: 1.2;
  margin: 6px 0;
}

/* NOTE */
.shop-note {
  font-size: 18px;
  font-style: italic;
  text-align: center;
  margin: 10px auto;
  max-width: 900px;
  line-height: 0.8;
  max-width: 1100px;
}

/* ================= GRID ================= */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  align-items: start;
}

/* ================= ITEM ================= */

.shop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  margin: 2px 0 4px;
}

/* IMAGE */
.shop-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8f1e7;
  border: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 10px;
}

/* ================= TEXT ================= */

.shop-item h3 {
  font-size: 20px;
  line-height: 1.3;
  margin: 6px 0;
  margin-bottom: 10px;
}

.shop-item p {
  font-size: 18px;
  line-height: 1;
  margin: 2px 0;
  text-align: left;
}
/* DETAILS (technical info) */
.shop-desc {
  font-size: 16px;
  line-height: 1;
  opacity: 0.9;
  margin: 6px 0;
  text-align: left;
}

/* ================= CONCEPT BLOCK ================= */

.shop-concept {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 12px;
 
}

/* ================= PRICE ================= */

.price-btn {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 700;
}

/* ================= BUTTON ================= */

.shop-item form {
  width: 100%;
  display: flex;
  justify-content: center;
}

.shop-item form input {
  margin-top: 8px;
  background: transparent;
  border: 1px solid #0070BA;
  color: #0070BA;
  padding: 7px 14px;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

.shop-item form input:hover {
  background: #0070BA;
  color: #fff;
}

/* ================= RTL SUPPORT ================= */

body.rtl .shop-item {
  direction: rtl;
}

body.rtl .shop-item h3,
body.rtl .shop-item p {
  text-align: right;
}

/* Arabic stays clean sans-serif (important) */
body.rtl .shop-desc,
body.rtl .shop-concept {
  font-family: inherit;
  text-align: right;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-item h3 {
    font-size: 18px;
  }

  .shop-item p {
    font-size: 16px;
  }
}

/* ================= FOOTER CENTER FIX ================= */

footer {
  text-align: center;
  padding: 40px 20px;
}

footer .footer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

footer p {
  text-align: center;
  max-width: 900px;
  margin: 10px auto 0;
  line-height: 1.5;
}