* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0c0c0c;
  color: #ffffff;
  direction: rtl;
  height: 100vh;
  overflow-y: auto; 
  touch-action: pan-y;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  overflow-x: hidden; 
}


.luxury-app-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2vh;
  height: auto;
  padding: 0vh 4%;
  max-width: 550px;
  margin: 0 auto;
  padding-top: 0 !important;
  gap: 0;
  min-height: 100vh;
}
/* --- Header Section --- */
.app-header {
  width: 100%;
  margin-top: 20px;
}

.app-brand {
  /* Title font */
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

.gold-separator-mini {
  border: 0;
  height: 1px;
  background: #D4AF37;
  width: 50px;
  margin: 5px auto;
}

.app-logo img {
  width: 133px;
  height: auto;
  display: block;
  margin: 20px auto;
  margin-bottom: 80px; 
}

/* --- Main Sections --- */
.app-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.section-subtitle {
  font-family: 'Noto Kufi Arabic', sans-serif;
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
}

.section-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
  color: #D4AF37;
  text-align: center;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.product-grid-section {
  width: 100%;
  margin-bottom: 1px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-box {
  width: 100%;
  height: 21vh;
  border: 1px solid #D4AF37;
  border-radius: 8px;
  background-color: rgba(20, 20, 20, 0.7);
}

/* Fix for Images inside boxes */
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.product-label {
  font-family: 'Noto Kufi Arabic', sans-serif;
  color: #ffffff;
  text-align: center;
  margin-top: 5px;
  font-size: 1.2rem;
  font-weight: lighter;
 
}

.main-luxury-description {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  font-size: 1.3rem;
  text-align: center;
  margin: 15px 0;
  line-height: 1.3;
}

.whatsapp-button {
  display: flex;            
  align-items: center;      
  justify-content: center;   
  width: 300px;              
  background-color: #25D366;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 30px;      
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); 
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: 'Roboto', sans-serif;
}

.luxury-footer {
  width: 100%;
}

.full-separator {
  border: 0;
  height: 1px;
  background: #D4AF37;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col-right, 
.footer-col-left {
  width: 48%;
  display: flex;
  flex-direction: column;
}

.footer-text-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.address-details {
  color: #D4AF37;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.location-main {
  font-weight: bold;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 5px;
}

ion-icon {
  font-size: 30px;    
  color: #ffffff;     
  cursor: pointer;
  transition: 0.3s;
  margin: 0 5px;      
}

ion-icon:hover {
  color: #D4AF37;
  transform: scale(1.15);
}
/* Container for the link (Flexbox makes icon and text sit side-by-side) */
.location-link {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  text-decoration: none;
  color: inherit;
  margin-top: 5px;
}

/* Style the Ionicon */
.location-link ion-icon {
  font-size: 20px;
  color: #D4AF37; /* Matches your gold theme */
}

/* Container for the two lines of text */
.text-group {
  display: flex;
  flex-direction: column;
}

/* Hover effect */
.location-link:hover .location-main {
  color: #D4AF37;
  text-decoration: underline;
}

.location-cite {
  font-size: 0.7rem;
  color: #888;
}