* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cairo', sans-serif;
  background-color: #faf7f2;
  color: #2b170c;
  line-height: 1.6;
  text-align: right;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 15px;
}

.site-logo {
  width: auto;
  height: 140px;
  border-radius: 8px;
  object-fit: contain;
}

.main-header {
  background-color: #ffffff;
  padding: 0;
}

.logo-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&q=80&w=1200');
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45,21,8,0.85);
  z-index: 1;
}

.header-flex {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.site-logo {
  width: auto;
  height: 150px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.brand-text h1 {
  font-family: 'Aref Ruqaa', serif;
  font-size: 55px;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.brand-text span {
  font-family: 'Cairo', sans-serif;
  font-size: 18px;
  color: #bfa37a;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.category-nav-bar {
  background-color: #fdfaf5;
  padding: 12px 0;
  border-top: 1px solid #eeebe5;
  border-bottom: 1px solid #d9c3b0;
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.category-nav-bar ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.category-nav-bar button {
  background: transparent;
  border: 1px solid #d9c3b0;
  color: #66554c;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.category-nav-bar button.active,
.category-nav-bar button:hover {
  background-color: #bfa37a;
  color: #fff;
  border-color: #bfa37a;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  border: none;
}

.btn-facebook {
  background-color: #1877f2;
  color: white;
  margin-top: 15px;
}

.btn-facebook:hover {
  background-color: #145dbf;
}

.products-section {
  padding: 40px 0;
}

.category-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(45,21,8,0.03);
}

.category-title {
  font-size: 22px;
  font-weight: 700;
  color: #2d1508;
  border-right: 5px solid #bfa37a;
  padding-right: 12px;
  margin-bottom: 25px;
}

.sub-cat-title {
  font-size: 16px;
  font-weight: 700;
  color: #66554c;
  margin-bottom: 15px;
  background: #fdfaf5;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  border: 1px solid #eeebe5;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  position: relative;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(45,21,8,0.06);
  border-color: #d9c3b0;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #2d1508;
  color: #faf7f2;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.product-badge.accent {
  background-color: #bfa37a;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: #fcf9f5;
}

.product-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #2d1508;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-card .desc {
  font-size: 13px;
  color: #66554c;
  margin-bottom: 15px;
  flex-grow: 1;
}

.pricing-area {
  background-color: #fdfaf5;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.pricing-area label {
  font-size: 12px;
  font-weight: 600;
  color: #66554c;
  display: block;
  margin-bottom: 5px;
}

.weight-select {
  width: 100%;
  padding: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2d1508;
  border: 1px solid #d9c3b0;
  border-radius: 4px;
  background-color: #ffffff;
  outline: none;
  cursor: pointer;
}

.price-display {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #66554c;
  text-align: left;
}

.price-val {
  font-size: 26px;
  color: #1d1d1f;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.btn-order {
  background-color: #2d1508;
  color: #ffffff;
  border: none;
  padding: 10px;
  border-radius: 30px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

.btn-order:hover {
  background-color: #bfa37a;
  color: #2d1508;
}

.featured-product-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  width: 100%;
}

.product-card.featured-product {
  width: 100%;
  max-width: 460px;
  border: 2px solid #bfa37a;
  box-shadow: 0 8px 25px rgba(45,21,8,0.08);
  padding: 25px;
}

.product-image.featured-image {
  height: 320px;
  object-fit: contain;
  margin-bottom: 20px;
}

.discount-banner {
  background-color: #fdfaf5;
  border: 1px dashed #bfa37a;
  color: #2d1508;
  text-align: center;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  margin: 15px 0;
}

.cart-floating-btn {
  position: fixed;
  bottom: 50px;
  left: 20px;
  background-color: #2d1508;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(45,21,8,0.25);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s ease;
  border: 2px solid #bfa37a;
}

.cart-floating-btn:hover {
  transform: scale(1.1);
  background-color: #1a0c05;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #dfa837;
  color: #2d1508;
  font-size: 12px;
  font-weight: bold;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
  border: 1px solid #ffffff;
}

.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45,21,8,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.cart-modal-content {
  background-color: #ffffff;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-cart {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #a89488;
  cursor: pointer;
}

.close-cart:hover {
  color: #2d1508;
}

.cart-modal-content h3 {
  margin-bottom: 20px;
  font-size: 20px;
  border-bottom: 2px solid #fdfaf5;
  padding-bottom: 10px;
  color: #2d1508;
}

.cart-items-list {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 20px;
  padding-left: 5px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eeebe5;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.item-info strong {
  font-size: 15px;
  color: #2d1508;
}

.item-info span {
  font-size: 12px;
  color: #66554c;
}

.item-price-details {
  color: #bfa37a !important;
  font-weight: 700;
}

.item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fdfaf5;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #d9c3b0;
}

.item-controls button {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #2d1508;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}

.cart-summary {
  border-top: 2px solid #fdfaf5;
  padding-top: 15px;
}

.total-price-row {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
}

.total-price-row strong {
  font-size: 22px;
  color: #bfa37a;
}

.btn-checkout {
  background-color: #25d366;
  color: white;
  width: 100%;
  border: none;
  padding: 12px;
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}

.customer-details-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 15px;
  border-top: 1px solid #eeebe5;
}

.customer-details-form input,
.customer-details-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9c3b0;
  border-radius: 6px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  background-color: #fdfaf5;
  outline: none;
}

.main-menu {
  display: flex;
  list-style: none;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0px 8px 25px rgba(45,21,8,0.15);
  z-index: 101;
  border-radius: 8px;
  top: 100%;
  right: 0;
  overflow: hidden;
  border: 1px solid #d9c3b0;
}

.dropdown-content button {
  color: #2d1508;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: right;
  border: none;
  border-bottom: 1px solid #eeebe5;
  border-radius: 0;
  background: transparent;
}

.dropdown-content button:last-child {
  border-bottom: none;
}

.dropdown-content button:hover {
  background-color: #fdfaf5;
  color: #bfa37a;
  padding-right: 22px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.info-section {
  padding: 60px 0;
  animation: fadeIn 0.4s ease-in-out;
}

.royal-card {
  background-color: #ffffff;
  border: 2px solid #bfa37a;
  border-radius: 12px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(45,21,8,0.05);
}

.text-center {
  text-align: center;
}

.about-content p {
  font-size: 16px;
  color: #66554c;
  margin-bottom: 20px;
  line-height: 1.8;
}

.delivery-badge {
  display: inline-block;
  background-color: #fdfaf5;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px dashed #bfa37a;
  color: #2d1508 !important;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.review-card {
  background-color: #ffffff;
  border: 1px solid #eeebe5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(45,21,8,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(45,21,8,0.12);
}

.review-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-bottom: 3px solid #bfa37a;
}

.review-content {
  padding: 25px;
  text-align: right;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: #4a3f35;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
}

.customer-name {
  font-size: 16px;
  color: #2d1508;
  font-weight: 800;
  margin: 0;
}

.iso-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.iso-badge {
  background-color: #fdfaf5;
  border: 2px solid #bfa37a;
  color: #2d1508;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(191,163,122,0.2);
  transition: transform 0.3s;
}

.iso-logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 40px;
}

.iso-logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  background-color: transparent;
  border: none;
  padding: 0;
  filter: drop-shadow(0px 4px 6px rgba(45,21,8,0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.iso-logo-img:hover {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0px 8px 15px rgba(191,163,122,0.4));
}

.main-footer {
  background-color: #1a0c05;
  color: #ffffff;
  padding: 60px 0 20px;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(191,163,122,0.2);
  padding-bottom: 40px;
  margin-bottom: 20px;
}

.footer-section h3 {
  font-size: 22px;
  color: #bfa37a;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 800;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background-color: #bfa37a;
  border-radius: 2px;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 15px;
  color: #d9c3b0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #bfa37a;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links button {
  background: none;
  border: none;
  color: #d9c3b0;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  text-align: right;
  display: block;
  width: 100%;
}

.footer-links button:hover {
  color: #bfa37a;
  transform: translateX(-8px);
}

.main-footer .btn-facebook {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 15px;
  background-color: #1877f2;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.main-footer .btn-facebook:hover {
  background-color: #145dbf;
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: #a89488;
  margin-top: 10px;
}

.social-icons-row {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons-row a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255,255,255,0.05);
  color: #d9c3b0;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  border: 1px solid rgba(191,163,122,0.3);
  transition: all 0.3s ease;
}

.social-icons-row a:hover {
  background-color: #bfa37a;
  color: #1a0c05;
  transform: translateY(-5px);
  border-color: #bfa37a;
  box-shadow: 0 5px 15px rgba(191,163,122,0.3);
}

.b2b-banner {
  display: flex;
  background-color: #ffffff;
  border: 2px solid #bfa37a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(45,21,8,0.08);
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.b2b-image {
  flex: 1;
  background-color: #fdfaf5;
}

.b2b-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.b2b-content {
  flex: 1;
  padding: 40px;
  text-align: right;
}

.b2b-content h2 {
  color: #bfa37a;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
}

.b2b-content p {
  color: #2d1508;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-whatsapp-b2b {
  background-color: #25d366;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp-b2b:hover {
  background-color: #1ebd58;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37,211,102,0.3);
}

.hero-slogan {
  font-size: 22px;
  font-weight: 800;
  color: #bfa37a;
  margin-top: 10px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.category-block > h2,
.category-block > h3,
.category-title {
  text-align: center !important;
  display: block;
  width: 100%;
  margin-bottom: 25px;
  border: none !important;
}

.product-card {
  text-align: center !important;
}

.product-card h3 {
  text-align: center !important;
}

.product-card label,
.product-card .price-wrap {
  text-align: center !important;
  display: block;
  width: 100%;
}

.product-card select {
  text-align: center !important;
  text-align-last: center !important;
  margin: 0 auto 15px auto !important;
  display: block;
}

.more-reviews-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px dashed #eeebe5;
}

.more-reviews-cta p {
  font-size: 20px;
  color: #2d1508;
  font-weight: 800;
  margin-bottom: 20px;
}

.fb-community-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #1877F2;
  color: #ffffff !important;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(24,119,242,0.3);
  transition: all 0.3s ease;
}

.fb-community-btn:hover {
  background-color: #145dbf;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(24,119,242,0.4);
}

.fb-community-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .category-nav-bar ul {
    justify-content: center !important;
    padding: 5px 10px !important;
    gap: 10px !important;
  }
  .category-nav-bar button {
    font-size: 14px !important;
    padding: 6px 14px !important;
  }
  .cart-modal-content {
    padding: 15px;
  }
  .b2b-banner {
    flex-direction: column;
  }
  .b2b-content {
    padding: 25px;
    text-align: center;
  }
}