
/* === main.css (Deferred Styles) === */

/* Quantity Input */
.quantity-controls {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.quantity-controls input.qty {
  width: 40px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0;
}

/* Variation Dropdown */
.variations select {
  width: 100%;
  padding: 12px 20px;
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f1f1f1;
  color: #000;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.variations td.value {
  position: relative;
}

.variations td.value::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
}

/* Footer */
.nasir-footer {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 220px;
  margin-bottom: 25px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
}

.footer-col ul li a:hover {
  color: #c89d72;
}

.footer-additional {
  margin: 30px 0;
  font-size: 13px;
  line-height: 1.8;
}

.footer-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 500;
  margin: 20px 0;
}

.footer-shipping {
  font-size: 13px;
  margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

/* Features Section */
.feature-scroll-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0;
  text-align: center;
}

.feature-box {
  flex: 1;
  min-width: 120px;
}

.feature-box img {
  max-width: 40px;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 0;
}

@media (max-width: 767px) {
  .feature-scroll-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 10px;
  }

  .feature-box {
    flex: 0 0 auto;
    scroll-snap-align: center;
    min-width: 150px;
  }
}

/* Style from Home */
.style-from-home {
  background: #fdf9f6;
  padding: 15px;
  text-align: center;
  border: 1px solid #e5e5e5;
  font-family: 'Helvetica Neue', sans-serif;
}

.style-from-home img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.style-from-home h3 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #000;
  font-weight: bold;
}

.style-from-home p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.style-from-home .book-now {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  border-radius: 2px;
  transition: background 0.3s;
}

.style-from-home .book-now:hover {
  background: #444;
}
