:root {
  /* ===== Core Backgrounds ===== */
  --bg-primary: #0b0d0f; /* Main header dark black */
  --bg-secondary: #141414; /* Slight lighter dark */
  --bg-overlay: rgba(0, 0, 0, 0.65);

  /* ===== Text Colors ===== */
  --text-primary: #ffffff; /* Main white text */
  --text-muted: #cfcfcf; /* Subtle text */
  --text-dark: #1a1a1a;

  /* ===== Gold Accent (Hero Color) ===== */
  --gold-primary: #8b6f47; /* Main gold (from image) */
  --gold-light: #a88a5c; /* Hover / soft gold */
  --gold-dark: #6f5836; /* Active / pressed */

  /* ===== Navigation ===== */
  --nav-text: var(--text-primary);
  --nav-hover: var(--gold-primary);
  --nav-active: var(--gold-primary);
  --nav-underline: var(--gold-primary);

  /* ===== Buttons ===== */
  --btn-bg: var(--gold-primary);
  --btn-text: #ffffff;
  --btn-hover-bg: var(--gold-dark);

  /* ===== Borders & Lines ===== */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(139, 111, 71, 0.6);

  /* ===== Shadows ===== */
  --shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 20px rgba(139, 111, 71, 0.35);

  /* ===== Radius ===== */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  /* ===== Transitions ===== */
  --transition-fast: 0.25s ease;
  --transition-smooth: 0.35s ease;
}

/* ==========================
   CATEGORY SHOWCASE (HOME)
   IMAGE BACKGROUND CARDS
   ========================== */

.category-showcase {
  background: var(--text-primary);
  padding: 100px 5%;
  position: relative;
}

/* Section Title */
.section-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--bg-primary);
  margin-bottom: 15px;
}

.section-title .accent {
  color: var(--gold-primary);
}

.category-showcase p {
  color: var(--text-muted);
}

/* ================================
   GRID
================================ */

.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* ================================
   CARD
================================ */

.cs-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  cursor: pointer;
  background: var(--bg-primary);
}

.cs-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

/* Image */
.cs-card-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Dark Gradient Overlay */
.cs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 10%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 80%
  );
  z-index: 1;
}

/* Content */
.cs-card-content {
  position: absolute;
  bottom: 30px;
  left: 25px;
  right: 25px;
  z-index: 2;
}

.cs-card-title {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.cs-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* Meta (optional) */
.cs-card-meta {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Button */
.cs-card-btn {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gold-primary);
  color: var(--btn-text);
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.cs-card-btn:hover {
  background: var(--gold-dark);
  color: var(--btn-text);
}

/* ================================
   VIEW ALL BUTTON
================================ */

.cs-view-all {
  text-align: center;
  margin-top: 60px;
}

.cs-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold-primary);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.cs-view-all-btn:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  color: var(--text-primary);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .category-showcase {
    padding: 70px 6%;
  }

  .section-title {
    font-size: 2rem;
  }

  .cs-card-image {
    height: 260px;
  }

  .cs-card-content {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}

/* ===== PRODUCT DETAIL PAGE ===== */

.product-detail-page {
  padding: clamp(40px, 8vw, 80px) 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT IMAGE SECTION */
.product-image-sticky {
  position: sticky;
  top: clamp(80px, 10vh, 120px);
  align-self: flex-start;
}

.product-main-image {
  position: relative;
  border-radius: clamp(12px, 2vw, 18px);
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 500px;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: clamp(12px, 2vw, 18px);
  transition: transform 0.4s ease;
}

/* subtle hover zoom */
.product-main-image:hover img {
  transform: scale(1.03);
}

/* ZOOM BUTTON */
.zoom-btn {
  position: absolute;
  top: clamp(12px, 2vw, 18px);
  right: clamp(12px, 2vw, 18px);
  width: clamp(36px, 5vw, 44px);
  height: clamp(36px, 5vw, 44px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(16px, 2vw, 20px);
}

.zoom-btn:hover {
  background: #000;
  transform: scale(1.1);
}

/* THUMBNAILS */
.product-thumbnails {
  display: flex;
  gap: clamp(10px, 2vw, 14px);
  margin-top: clamp(12px, 2vw, 18px);
  overflow-x: auto;
  padding-bottom: 8px;
}

.product-thumbnails img {
  width: clamp(56px, 10vw, 78px);
  height: clamp(56px, 10vw, 78px);
  min-width: clamp(56px, 10vw, 78px);
  object-fit: cover;
  border-radius: clamp(8px, 1.5vw, 12px);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-thumbnails img:hover {
  border-color: #8b6f47;
  transform: translateY(-4px);
}

/* RIGHT CONTENT */
.product-details {
  padding-left: clamp(20px, 4vw, 45px);
}

.product-title {
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 600;
  margin-bottom: clamp(8px, 1.5vw, 12px);
  line-height: 1.2;
}

.product-desc {
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.8;
  color: #666;
  margin-bottom: clamp(15px, 3vw, 25px);
}

hr {
  margin: clamp(15px, 3vw, 25px) 0;
}

h5 {
  font-size: clamp(14px, 2.5vw, 18px);
  margin-bottom: clamp(12px, 2vw, 16px);
  font-weight: 600;
}

/* SPECIFICATIONS */
.spec-list {
  padding: 0;
  list-style: none;
  margin-top: clamp(12px, 2vw, 20px);
}

.spec-list li {
  display: flex;
  flex-direction: column;
  padding: clamp(8px, 1.5vw, 12px) 0;
  border-bottom: 1px solid #eee;
  font-size: clamp(12px, 2vw, 14px);
  gap: 4px;
}

.spec-list li strong {
  color: #222;
  font-weight: 600;
}

/* ACTION BUTTONS */
.action-buttons {
  display: flex;
  gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(20px, 4vw, 30px);
  flex-wrap: wrap;
}

.action-buttons .btn {
  padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 28px);
  border-radius: 30px;
  font-size: clamp(12px, 2vw, 14px);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 140px;
  text-decoration: none;
}

.action-buttons .btn-dark {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}

.action-buttons .btn-dark:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.action-buttons .btn-outline-dark {
  background: none;
  border: 1px solid #333;
  color: #333;
}

.action-buttons .btn-outline-dark:hover {
  background: var(--gold-primary);
  color: #fff;
  border-color: var(--gold-primary);
}

/* MODAL */
.modal-content {
  background: transparent;
  border: none;
}

.custom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
  opacity: 1;
  z-index: 9;
}

.custom-close i {
  font-size: 20px;
  color: #000;
}

/* ================= RELATED PRODUCTS SECTION ================= */
.related-products-section {
  margin-top: clamp(50px, 10vw, 80px);
  padding-top: clamp(40px, 8vw, 60px);
  border-top: 1px solid #eee;
}

.related-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  margin-bottom: clamp(25px, 5vw, 40px);
  color: #222;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(20px, 4vw, 30px);
}

.product-card-related {
  background: #fff;
  border-radius: clamp(10px, 2vw, 14px);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-related:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.product-card-image-related {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
}

.product-image-related {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.product-card-related:hover .product-image-related {
  transform: scale(1.08);
}

.product-overlay-related {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card-related:hover .product-overlay-related {
  opacity: 1;
}

.view-details-btn {
  padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 28px);
  background: #8b6f47;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.view-details-btn:hover {
  background: #6f5836;
  transform: scale(1.05);
}

.product-info-related {
  padding: clamp(12px, 2vw, 16px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name-related {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
  line-height: 1.3;
}

.product-category-related {
  font-size: clamp(11px, 1.5vw, 13px);
  color: #999;
  margin: 0;
}

/* TABLET - 768px to 1199px */
@media (max-width: 1199px) {
  .product-image-sticky {
    position: sticky;
    top: 100px;
  }

  .product-details {
    padding-left: clamp(15px, 3vw, 35px);
  }

  .related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 991px) {
  .product-image-sticky {
    position: relative;
    top: auto;
    margin-bottom: clamp(30px, 5vw, 50px);
  }

  .product-details {
    padding-left: 0;
  }

  .product-title {
    font-size: clamp(22px, 5vw, 28px);
  }

  .action-buttons {
    gap: clamp(10px, 2vw, 15px);
  }

  .action-buttons .btn {
    flex: 1;
    min-width: 120px;
  }

  .related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* MOBILE - Below 768px */
@media (max-width: 768px) {
  .product-detail-page {
    padding: clamp(30px, 5vw, 40px) 0;
  }

  .product-main-image {
    max-height: 400px;
  }

  .product-thumbnails {
    gap: clamp(8px, 2vw, 12px);
    margin-top: clamp(10px, 2vw, 15px);
  }

  .product-thumbnails img {
    width: clamp(48px, 12vw, 64px);
    height: clamp(48px, 12vw, 64px);
    min-width: clamp(48px, 12vw, 64px);
  }

  .product-details {
    padding-left: 0;
  }

  .product-title {
    font-size: clamp(18px, 5vw, 22px);
    margin-bottom: 8px;
  }

  .product-desc {
    font-size: clamp(13px, 2vw, 14px);
    margin-bottom: 15px;
  }

  hr {
    margin: 15px 0;
  }

  h5 {
    font-size: clamp(13px, 2vw, 16px);
  }

  .spec-list li {
    flex-direction: column;
    padding: 8px 0;
    font-size: 12px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .action-buttons .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 12px;
    min-width: unset;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .related-title {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 20px;
  }
}

/* HOVER EFFECT */
.cs-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cs-card:hover .cs-card-image {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cs-card {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .cs-card {
    height: 300px;
  }
}

/* =============================
   CATEGORY SHOWCASE – IMAGE UI
   ============================= */

.cat-showcase {
  padding: 80px 20px;
  background: #fff;
}

.cat-showcase-container {
  max-width: 1200px;
  margin: auto;
}

/* Block layout */
.cat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

/* Alternate layout */
.cat-right .cat-image-wrap {
  order: 2;
}
.cat-right .cat-content {
  order: 1;
}

/* Image box */
.cat-image-wrap {
  position: relative;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.cat-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Small badge (top-right) */
.cat-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #b08a5a;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 2;
}

/* Content */
.cat-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cat-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
}

/* Subcategories */
.cat-sub h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cat-sub ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.cat-sub li {
  font-size: 14px;
  color: #555;
  position: relative;
  padding-left: 16px;
}

.cat-sub li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b08a5a;
}

/* Button */
.cat-btn {
  display: inline-block;
  background: #8b6f47;
  color: #fff;
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cat-btn:hover {
  background: #6f5736;
  transform: translateX(4px);
  color: var(--btn-text);
}

/* Responsive */
@media (max-width: 900px) {
  .cat-block {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .cat-right .cat-image-wrap,
  .cat-right .cat-content {
    order: unset;
  }

  .cat-image-wrap {
    height: 260px;
  }
}
/* ==========================
   SUBCATEGORY CARDS – EXACT SCREENSHOT MATCH
   ========================== */

.subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.no-subcategory-found {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.no-subcategory-box {
    max-width: 520px;
    text-align: center;
    background: var(--btn-text);
    color: #fff;
    padding: 50px 40px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.no-subcategory-box i {
    font-size: 42px;
    color: #c8a45d;
    margin-bottom: 20px;
}

.no-subcategory-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.no-subcategory-box p {
    color: #b5b5b5;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.no-subcategory-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Card */
.subcat-card {
  position: relative;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  transition: box-shadow 0.3s ease;
}

.subcat-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Image */
.subcat-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.subcat-card:hover .subcat-card-image {
  transform: scale(1.04);
}

/* Overlay */
.subcat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}

/* Content */
.subcat-card-body {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 60px;
  z-index: 2;
  padding: 0;
}

/* Title */
.subcat-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

/* Description */
.subcat-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}

/* Product Count */
.subcat-card-meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e6af5d;
}

/* Arrow */
.subcat-card-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 26px;
  color: #ffffff;
  text-decoration: none;
  z-index: 2;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.subcat-card-link:hover {
  color: #e6af5d;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .subcat-card {
    height: 230px;
  }
}

@media (max-width: 480px) {
  .subcat-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   PRODUCT LISTING PAGE
   ========================== */
.prod-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

@media (max-width: 1024px) {
  .prod-container {
    grid-template-columns: 200px 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .prod-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Sidebar Filters */
.prod-sidebar {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 25px;
  border: 1px solid var(--border-light);
  height: fit-content;
  position: sticky;
  top: 80px;
}

@media (max-width: 768px) {
  .prod-sidebar {
    position: static;
    top: auto;
  }
}

.filter-section {
  margin-bottom: 30px;
}

.filter-section:not(:last-child) {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-light);
}

.filter-title {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  cursor: pointer;
  accent-color: var(--gold-primary);
}

.filter-option label {
  flex: 1;
  margin: 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.filter-option:hover label {
  color: var(--text-primary);
}

.filter-search {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.filter-search:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 2px rgba(139, 111, 71, 0.1);
}

.filter-search::placeholder {
  color: var(--text-muted);
}

/* Product Listing Main Area */
.prod-main {
  display: flex;
  flex-direction: column;
}

/* Toolbar */
.prod-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.prod-count {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.prod-toolbar-controls {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.prod-sort select,
.prod-view-toggle button {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9rem;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.prod-sort select:hover,
.prod-sort select:focus,
.prod-view-toggle button:hover,
.prod-view-toggle button.active {
  border-color: var(--gold-primary);
  background: var(--bg-primary);
  outline: none;
}

.prod-view-toggle {
  display: flex;
  gap: 5px;
}

.prod-view-toggle button {
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

/* Product Grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

@media (max-width: 1200px) {
  .prod-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .prod-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.prod-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-primary);
}

.prod-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.prod-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prod-card:hover .prod-card-image img {
  transform: scale(1.08);
}

.prod-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-primary);
  color: var(--text-primary);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prod-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-card-title {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.prod-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.prod-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
  flex: 1;
}

.prod-card-stock {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 10px;
}

.prod-card-stock.in-stock {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.prod-card-stock.out-stock {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

.prod-card-link {
  display: block;
  background: var(--gold-primary);
  color: var(--text-primary);
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

.prod-card-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--text-primary);
}

/* Pagination */
.prod-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.prod-pagination a,
.prod-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.9rem;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.prod-pagination a:hover {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
  color: var(--text-primary);
}

.prod-pagination span.current {
  background: var(--gold-primary);
  color: var(--text-primary);
  border-color: var(--gold-primary);
  font-weight: 700;
}

/* category product css */
/* Products Page */

.product-page {
  padding: 60px 0;
}

/* Header */
.product-header {
  margin-bottom: 40px;
}

.product-header h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 5px;
}

.product-header p {
  color: #777;
  font-size: 14px;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Image */
.product-image {
  height: 200px;
  background: #f5f5f5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info */
.product-info {
  padding: 16px;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.product-info ul li {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

/* Link */
.view-link {
  font-size: 13px;
  color: #8b6f47;
  font-weight: 500;
  text-decoration: none;
}

.view-link:hover {
  text-decoration: underline;
}

/* Badges */
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
  color: #fff;
  z-index: 2;
}

.in-stock {
  background: #22c55e;
}

.limited {
  background: #f59e0b;
}

/* Responsive */
@media (max-width: 576px) {
  .product-header h1 {
    font-size: 22px;
  }
}

/* product detail my css */

/* ===== PRODUCT DETAIL PAGE ===== */

.product-detail-page {
  padding: clamp(40px, 8vw, 80px) 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT IMAGE SECTION */
.product-image-sticky {
  position: sticky;
  top: clamp(80px, 10vh, 120px);
  align-self: flex-start;
}

.product-main-image {
  position: relative;
  border-radius: clamp(12px, 2vw, 18px);
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 500px;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: clamp(12px, 2vw, 18px);
  transition: transform 0.4s ease;
}

/* subtle hover zoom */
.product-main-image:hover img {
  transform: scale(1.03);
}

/* ZOOM BUTTON */
.zoom-btn {
  position: absolute;
  top: clamp(12px, 2vw, 18px);
  right: clamp(12px, 2vw, 18px);
  width: clamp(36px, 5vw, 44px);
  height: clamp(36px, 5vw, 44px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(16px, 2vw, 20px);
}

.zoom-btn:hover {
  background: #000;
  transform: scale(1.1);
}

/* THUMBNAILS */
.product-thumbnails {
  display: flex;
  gap: clamp(10px, 2vw, 14px);
  margin-top: clamp(12px, 2vw, 18px);
  overflow-x: auto;
  padding-bottom: 8px;
}

.product-thumbnails img {
  width: clamp(56px, 10vw, 78px);
  height: clamp(56px, 10vw, 78px);
  min-width: clamp(56px, 10vw, 78px);
  object-fit: cover;
  border-radius: clamp(8px, 1.5vw, 12px);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-thumbnails img:hover {
  border-color: #8b6f47;
  transform: translateY(-4px);
}

/* RIGHT CONTENT */
.product-details {
  padding-left: clamp(20px, 4vw, 45px);
}

.product-title {
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 600;
  margin-bottom: clamp(8px, 1.5vw, 12px);
  line-height: 1.2;
}

.product-desc {
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.8;
  color: #666;
  margin-bottom: clamp(15px, 3vw, 25px);
}

/* SPECIFICATIONS */
.spec-list {
  padding: 0;
  list-style: none;
  margin-top: clamp(12px, 2vw, 20px);
}

.spec-list li {
  display: flex;
  flex-direction: column;
  padding: clamp(8px, 1.5vw, 12px) 0;
  border-bottom: 1px solid #eee;
  font-size: clamp(12px, 2vw, 14px);
  gap: 4px;
}

.spec-list li strong {
  color: #222;
  font-weight: 600;
}

/* ACTION BUTTONS */
.action-buttons {
  display: flex;
  gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(20px, 4vw, 30px);
  flex-wrap: wrap;
}

.action-buttons .btn {
  padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 28px);
  border-radius: 30px;
  font-size: clamp(12px, 2vw, 14px);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 140px;
  text-decoration: none;
}

.action-buttons .btn-dark {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}

.action-buttons .btn-dark:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.action-buttons .btn-outline-dark {
  background: none;
  border: 1px solid #333;
  color: #333;
}

.action-buttons .btn-outline-dark:hover {
  background: var(--gold-primary);
  color: #fff;
  border-color: var(--gold-primary);
}

/* MODAL */
.modal-content {
  background: transparent;
  border: none;
}

.custom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
  opacity: 1;
  z-index: 9;
}

.custom-close i {
  font-size: 20px;
  color: #000;
}

/* ================= RELATED PRODUCTS SECTION ================= */
.related-products-section {
  margin-top: clamp(50px, 10vw, 80px);
  padding-top: clamp(40px, 8vw, 60px);
  border-top: 1px solid #eee;
}

.related-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  margin-bottom: clamp(25px, 5vw, 40px);
  color: #222;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(20px, 4vw, 30px);
}

.product-card-related {
  background: #fff;
  border-radius: clamp(10px, 2vw, 14px);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-related:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.product-card-image-related {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f5f5;
}

.product-image-related {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.product-card-related:hover .product-image-related {
  transform: scale(1.08);
}

.product-overlay-related {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card-related:hover .product-overlay-related {
  opacity: 1;
}

.view-details-btn {
  padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 28px);
  background: #8b6f47;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.view-details-btn:hover {
  background: #6f5836;
  transform: scale(1.05);
}

.product-info-related {
  padding: clamp(12px, 2vw, 16px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name-related {
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
  line-height: 1.3;
}

.product-category-related {
  font-size: clamp(11px, 1.5vw, 13px);
  color: #999;
  margin: 0;
}

/* TABLET - 768px to 991px */
@media (max-width: 1199px) {
  .product-image-sticky {
    position: sticky;
    top: 100px;
  }

  .product-details {
    padding-left: clamp(15px, 3vw, 35px);
  }

  .related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 991px) {
  .product-image-sticky {
    position: relative;
    top: auto;
    margin-bottom: clamp(30px, 5vw, 50px);
  }

  .product-details {
    padding-left: 0;
  }

  .product-title {
    font-size: clamp(22px, 5vw, 28px);
  }

  .action-buttons {
    gap: clamp(10px, 2vw, 15px);
  }

  .action-buttons .btn {
    flex: 1;
    min-width: 120px;
  }

  .related-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

/* MOBILE - Below 768px */
@media (max-width: 768px) {
  .product-detail-page {
    padding: clamp(30px, 5vw, 40px) 0;
  }

  /* disable sticky on small screens to avoid overflow issues */
  .product-image-sticky {
    position: static !important;
    top: auto !important;
    margin-bottom: 18px;
    width: 100%;
  }

  /* let image flow naturally on small screens */
  .product-main-image {
    aspect-ratio: auto;
    height: auto;
    max-height: none;
    margin: 0 auto;
  }

  .product-main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-thumbnails {
    gap: clamp(8px, 2vw, 12px);
    margin-top: clamp(10px, 2vw, 15px);
    justify-content: flex-start;
  }

  .product-thumbnails img {
    width: clamp(48px, 12vw, 64px);
    height: clamp(48px, 12vw, 64px);
    min-width: clamp(48px, 12vw, 64px);
  }

  .product-details {
    padding-left: 0;
  }

  .product-title {
    font-size: clamp(18px, 5vw, 22px);
    margin-bottom: 8px;
  }

  .product-desc {
    font-size: clamp(13px, 2vw, 14px);
    margin-bottom: 15px;
  }

  hr {
    margin: 15px 0;
  }

  h5 {
    font-size: clamp(13px, 2vw, 16px);
  }

  .spec-list li {
    flex-direction: column;
    padding: 8px 0;
    font-size: 12px;
  }

  .action-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .action-buttons .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 12px;
    min-width: unset;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .related-title {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 20px;
  }
}
/* FULLSCREEN FEEL MODAL */
/* ================= IMAGE ZOOM MODAL RESPONSIVE ================= */

#imageZoomModal .modal-dialog {
  max-width: 92vw; /* desktop width */
  margin: auto;
}

#imageZoomModal .modal-content {
  height: auto;
  max-height: 92vh; /* prevent overflow */
  background: #000;
  border-radius: 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE RESPONSIVE */
#imageZoomModal img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* CLOSE BUTTON */
#imageZoomModal .custom-close {
  position: absolute;
  top: 12px;
  right: 15px;
  z-index: 99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  #imageZoomModal .modal-dialog {
    max-width: 96vw;
  }

  #imageZoomModal img {
    max-height: 80vh;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  #imageZoomModal .modal-dialog {
    max-width: 100vw;
    margin: 0;
  }

  #imageZoomModal .modal-content {
    max-height: 100vh;
    border-radius: 0;
  }

  #imageZoomModal img {
    max-height: 88vh;
  }

  #imageZoomModal .custom-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* ==========================
   PRODUCT DETAIL PAGE
   ========================== */
.proddet-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.proddet-header {
  margin-bottom: 40px;
}

.proddet-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.proddet-breadcrumb a,
.proddet-breadcrumb span {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.proddet-breadcrumb a:hover {
  color: var(--gold-primary);
}

.proddet-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .proddet-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Image Gallery */
.proddet-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.proddet-main-image {
  width: 100%;
  height: 400px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proddet-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proddet-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.proddet-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.proddet-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proddet-thumbnail:hover,
.proddet-thumbnail.active {
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

/* Product Details */
.proddet-details {
  display: flex;
  flex-direction: column;
}

.proddet-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.proddet-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

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

.proddet-meta-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proddet-meta-value {
  color: var(--text-primary);
  font-weight: 700;
}

.proddet-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.proddet-badge {
  background: rgba(139, 111, 71, 0.15);
  color: var(--gold-primary);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.proddet-description {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1rem;
}

.proddet-specs {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 30px;
}

.proddet-specs-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.proddet-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 600px) {
  .proddet-specs-grid {
    grid-template-columns: 1fr;
  }
}

.spec-item {
  display: flex;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
  min-width: 20px;
}

.spec-text {
  flex: 1;
}

.spec-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.spec-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* CTA Buttons */
.proddet-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .proddet-cta {
    grid-template-columns: 1fr;
  }
}

.cta-btn {
  padding: 15px 20px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-btn.primary {
  background: var(--gold-primary);
  color: var(--text-primary);
}

.cta-btn.primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: var(--bg-secondary);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.cta-btn.secondary:hover {
  background: rgba(139, 111, 71, 0.1);
  transform: translateY(-2px);
}

/* Info Items */
.proddet-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .proddet-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .proddet-info {
    grid-template-columns: 1fr;
  }
}

.info-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.info-icon {
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.info-title {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1rem;
}

.info-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Related Products */
.proddet-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.related-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* gallery  csss  home*/

/* ============================= */
/* Custom Project Gallery Hover  */
/* ============================= */

.custom-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.custom-gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.custom-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
  border-radius: 12px;
}

.custom-gallery-text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.custom-gallery-card:hover img {
  transform: scale(1.08);
}

.custom-gallery-card:hover .custom-gallery-overlay {
  opacity: 1;
}

.custom-gallery-card:hover .custom-gallery-text {
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 992px) {
  .custom-gallery-card img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .custom-gallery-card img {
    height: 200px;
  }
}

/* ========================= */
/* Gallery Page */
/* ========================= */
.gallerypage-title {
  font-size: 32px;
  font-weight: 700;
}

.gallerypage-subtitle {
  color: #777;
}

.gallerypage-filter-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #f2f2f2;
  margin: 5px;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
}

.gallerypage-filter-btn.active {
  background: #b08d57;
  color: #fff;
}

.gallerypage-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallerypage-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s;
}

.gallerypage-card:hover img {
  transform: scale(1.05);
}

.gallerypage-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallerypage-card:hover .gallerypage-overlay {
  opacity: 1;
}

.gallerypage-plus {
  width: 53px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Modal */
.gallerypage-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gallerypage-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.gallerypage-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.gallarypage-section {
  background: #111;
  padding: 80px 0;
  color: #fff;
}

.gallarypage-heading h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.gallarypage-heading p {
  color: #aaa;
  max-width: 600px;
  margin: auto;
}

.gallarypage-filter {
  margin: 40px 0;
}

.gallarypage-filter button {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 18px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.gallarypage-filter button.active,
.gallarypage-filter button:hover {
  background: #b8955f;
}

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

.gallarypage-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallarypage-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
}

.gallarypage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px;
}

.gallarypage-content h4 {
  margin: 0;
}

.gallarypage-content span {
  font-size: 14px;
  color: #ccc;
}

.gallarypage-plus {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 22px;
  cursor: pointer;
}

.gallarypage-card:hover img {
  transform: scale(1.1);
}

.gallarypage-card:hover .gallarypage-overlay {
  opacity: 1;
}

/* Modal */

.gallarypage-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.gallarypage-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.gallarypage-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 768px) {
  .gallarypage-card img {
    height: 250px;
  }
}
/* ===============================
   Gallery Page Hero Section
================================ */

.gallarypage-hero {
  background: #000;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.gallarypage-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.gallarypage-hero-icon {
  font-size: 38px;
  color: #c6a16e;
  margin-bottom: 20px;
}

.gallarypage-hero-title {
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.gallarypage-hero-subtitle {
  font-size: 18px;
  color: #ccc;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .gallarypage-hero {
    padding: 80px 15px;
  }

  .gallarypage-hero-title {
    font-size: 34px;
  }

  .gallarypage-hero-subtitle {
    font-size: 15px;
  }
}
.gallerypage-overlay-content h5 {
  color: var(--gold-dark);
}

/* testimonial home page css */
.lux-testimonial {
  padding: 80px 0;
  background: #f8f9fa;
  color: #fff;
}

.lux-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.lux-subtitle {
  color: #9aa3ad;
  font-size: 18px;
  margin-bottom: 60px;
}

.lux-testimonial-card {
  max-width: 900px;
  margin: auto;
  padding: 60px 50px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0f0f0f, #050505);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.lux-stars {
  color: #caa85c;
  font-size: 20px;
  margin-bottom: 15px;
}
.lux-text {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}
.lux-quote {
  font-size: 22px;
  font-style: italic;
  line-height: 1.7;
  color: #d7d7d7;
  margin-bottom: 40px;
}

.lux-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.lux-user img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}
.lux-user h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.lux-user span {
    font-size: 13px;
    color: #777;
}

.lux-view {
  display: inline-block;
  margin-top: 40px;
  color: #b08a57;
  font-size: 15px;
  text-decoration: none;
}

.lux-view:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .lux-title {
    font-size: 30px;
  }

  .lux-testimonial-card {
    padding: 40px 25px;
  }

  .lux-quote {
    font-size: 18px;
  }
}
.lux-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.lux-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  max-width: 700px;
  margin: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.lux-carousel .owl-nav button {
    background: #111 !important;
    color: #fff !important;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin: 0 8px;
}


.lux-carousel .owl-nav button:hover {
  background: #b08a57 !important;
  color: #000 !important;
}


.lux-carousel .owl-dots {
    margin-top: 20px;
}

.lux-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
}
.lux-carousel .owl-dot.active span {
    background: #caa85c;
}


@media (max-width: 768px) {
    .lux-card {
        padding: 30px 20px;
    }

    .lux-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .lux-user {
        flex-direction: column;
    }
}

/* /blog home pags cs */

.insights-section {
    background: var(--btn-text);
    padding: 90px 0;
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===============================
   HEADER
================================ */
.insights-header {
    text-align: center;
    margin-bottom: 65px;
}

.insights-header h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.insights-header p {
    color: var(--text-dark);
    font-size: 16px;
}
.author {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.author strong {
    color: var(--text-dark);
    font-weight: 600;
}
/* ===============================
   GRID
================================ */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* FIXED 3 cards desktop */
    gap: 32px;
}

/* ===============================
   CARD
================================ */
.insight-card {
    background: var(--btn-text);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition-smooth);

    /* FIXED SIZE */
    height: 520px;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

/* ===============================
   BADGE
================================ */
.insight-card .badge {
    position: absolute;
    top: 16px;
    background: var(--gold-primary);
    color: var(--btn-text);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.4px;
}

/* ===============================
   IMAGE
================================ */
.image-box {
    width: 100%;
    height: 230px; /* FIXED IMAGE HEIGHT */
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.insight-card:hover .image-box img {
    transform: scale(1.1);
}

/* ===============================
   CONTENT
================================ */
.content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.content .date {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.content h3 {
    font-size: 20px;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 12px;

    /* Title max 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content p {
    font-size: 14px;
    color: var(--gold-dark);
    line-height: 1.6;
    margin-bottom: 20px;

    /* Description fix height */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    flex-grow: 1;
}

/* ===============================
   READ MORE
================================ */
.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-primary);
    text-decoration: none;
    align-self: flex-start;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* ===============================
   AUTHOR & TAGS META
================================ */
.blog-meta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 14px 0 12px 0;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    flex-wrap: wrap;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.blog-author i {
    color: var(--gold-primary);
    font-size: 14px;
}

.blog-author span {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-tags-mini {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.tag-small {
    display: inline-block;
    background: #f5f5f5;
    color: var(--gold-dark);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-footer-blog{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:14px;
}

.card-footer-blog .author{
    display:flex;
    align-items:center;
    gap:10px;
}

.card-footer-blog img{
    width:36px;
    height:36px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.read-link{
    color:#a88a5c;
    font-weight:700;
    text-decoration:none;
}

.read-more:hover {
    color: var(--gold-dark);
}

/* ===============================
   VIEW ALL BUTTON
================================ */
.view-all {
    text-align: center;
    margin-top: 70px;
}

.btn-view-all {
    background: var(--btn-bg);
    color: var(--btn-text);
    padding: 15px 40px;
    border-radius: var(--radius-md);
    display: inline-block;
    font-weight: 500;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-fast);
}

.btn-view-all:hover {
    background: var(--btn-hover-bg);
    transform: translateY(-3px);
    color: var(--btn-text);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-card {
        height: 500px;
    }

    .image-box {
        height: 210px;
    }
}

@media (max-width: 576px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card {
        height: 470px;
    }

    .image-box {
        height: 190px;
    }

    .insights-header h2 {
        font-size: 30px;
    }

    .content {
        padding: 22px;
    }

    .content h3 {
        font-size: 17px;
    }
}

/* ==========================
   Blog Detail Page Styles
   ========================== */
.blog-detail-section {
  background: #f6f8fa;
  padding: clamp(40px, 6vw, 80px) 0;
}
.blog-card {
  max-width: 950px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(24px, 3.5vw, 48px);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(16,24,40,0.06);
  overflow: hidden;
}
.blog-image-wrap {
  margin-bottom: 28px;
  border-radius: 14px;
  overflow: hidden;
}
.blog-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.blog-image-wrap:hover .blog-image { transform: scale(1.03); }
.blog-category-wrap { text-align: center; margin-bottom: 14px; }
.blog-category {
  display: inline-block;
  background: linear-gradient(90deg,var(--gold-primary),var(--gold-light));
  color: #0b0d0f;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
}
.blog-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  text-align: center;
  margin: 12px 0 10px;
  color: #0f1724;
}
.blog-meta {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 22px;
}
.blog-excerpt {
  font-size: 18px;
  color: #374151;
  line-height: 1.8;
  margin: 0 auto 26px;
  text-align: center;
  max-width: 820px;
}
.blog-content {
  font-size: 17px;
  color: #111827;
  line-height: 1.9;
}
.blog-content img { max-width: 100%; height: auto; border-radius: 8px; }
.blog-content h2, .blog-content h3 { color: #0b1220; margin-top: 1.2em; }
.blog-author {
  display:flex;
  gap:14px;
  align-items:center;
  margin-top:30px;
}
.blog-author-avatar {
  width:64px; height:64px; border-radius:50%; object-fit:cover; flex:0 0 64px;
}
.blog-author-name { font-weight:700; color:#0f1724; }
.blog-author-role { font-size:13px; color:#6b7280; }
.blog-tags { margin-top:14px; }
.blog-tag {
  display:inline-block;
  margin:6px 8px 0 0;
  padding:8px 14px;
  background:#fff7ed;
  color:#92400e;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  box-shadow: 0 4px 12px rgba(147,64,14,0.06);
}
.blog-back { text-align:center; margin-top:36px; }
.blog-back-link {
  color: var(--gold-primary);
  font-weight:700;
  text-decoration:none;
  padding:8px 12px;
}
.blog-back-link:hover { color: var(--gold-dark); text-decoration:underline; }

@media (max-width: 768px) {
  .blog-image { height: 260px; }
  .blog-card { padding: 20px; border-radius:14px; }
  .blog-title { font-size: 22px; }
}

/* ===============================
   Button & Category Alignment Fixes
   Focused, minimal rules to keep look classy
   =============================== */
.button-align {
  justify-content: flex-end;
  align-items: center;
}

/* Make CTA buttons consistent */
.pq-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
}
.pq-button .pq-button-text { display: inline-block; }

.pq-button.pq-btn-white {
  background: #ffffff;
  color: var(--bg-primary);
  border: 1px solid rgba(11,13,15,0.06);
  box-shadow: 0 8px 20px rgba(11,13,15,0.04);
}
.pq-button.pq-btn-white:hover { transform: translateY(-3px); }

.pq-button.pq-btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
}
.pq-button.pq-btn-outline-white:hover { background: rgba(255,255,255,0.06); }

.pq-button.pq-btn-primary {
  background: linear-gradient(90deg,var(--gold-primary),var(--gold-light));
  color: #fff;
  border: none;
}
.pq-button.pq-btn-primary:hover { transform: translateY(-3px); }

/* Ensure the small CTA group centers on mobile */
@media (max-width: 768px) {
  .button-align { justify-content: center; gap: 10px; }
  .pq-button { width: auto; min-width: 140px; }
}

/* No subcategory - center the action */
.no-subcategory-actions { text-align: center; margin-top: 18px; }
.no-subcategory-actions .pq-button { min-width: 220px; justify-content: center; }

/* Subcategory card: floating round link */
.subcat-card { position: relative; }
.subcat-card-body { padding-right: 72px; }
.subcat-card-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,13,15,0.04);
  color: var(--gold-primary);
  box-shadow: 0 6px 18px rgba(11,13,15,0.06);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}
.subcat-card-link i { font-size: 18px; }
.subcat-card-link:hover { transform: translateY(-4px); background: rgba(139,111,71,0.06); }

/* ==========================
   Contact Page Styles
   ========================== */

/* Contact Info Section */
.contact-info-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #ffffff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 32px);
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 10px 40px rgba(11,13,15,0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(139,111,71,0.08);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139,111,71,0.15);
}

.contact-card-icon {
  font-size: clamp(28px, 5vw, 36px);
  color: var(--gold-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.contact-card-body h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: #0f1724;
  margin-bottom: 10px;
}

.contact-card-body p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 6px;
  line-height: 1.6;
}

.contact-card-body a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s ease;
}

.contact-card-body a:hover {
  color: var(--gold-dark);
}

/* Contact Form Section */
.contact-form-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: linear-gradient(135deg, #f6f8fa 0%, #f0f3f7 100%);
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

@media (max-width: 900px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-form-header {
  margin-bottom: 28px;
}

.section-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #0f1724;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-col {
  display: flex;
}

.form-col.full {
  grid-column: 1 / -1;
}

.form-group {
  width: 100%;
  display: flex;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: clamp(10px, 2vw, 14px) clamp(14px, 2vw, 18px);
  border: 1px solid rgba(11,13,15,0.14);
  border-radius: 8px;
  font-size: 15px;
  color: #111827;
  background: #ffffff;
  transition: all 0.18s ease;
  font-family: inherit;
  line-height: 1.5;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(139,111,71,0.1);
  background: #fafbfc;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238b6f47' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: clamp(10px, 2vw, 14px) clamp(24px, 4vw, 32px);
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(139,111,71,0.25);
  margin-top: 8px;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139,111,71,0.35);
}

.contact-btn:active {
  transform: translateY(-1px);
}

.contact-form-right {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.contact-form-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.contact-form-right:hover .contact-form-image img {
  transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #ffffff;
}

.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

@media (max-width: 900px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.faq-image {
  border-radius: 16px;
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.faq-header {
  margin-bottom: 32px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  border: 1px solid rgba(11,13,15,0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.18s ease;
}

.accordion-item:hover {
  border-color: rgba(139,111,71,0.2);
  box-shadow: 0 6px 20px rgba(11,13,15,0.04);
}

.accordion-button {
  padding: clamp(14px, 2vw, 18px) clamp(16px, 3vw, 20px);
  background: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: #0f1724;
  text-align: left;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.accordion-button:hover {
  background: rgba(139,111,71,0.04);
  color: var(--gold-primary);
}

.accordion-button::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%238b6f47' d='M10 14l-6-6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-button:not(.collapsed) {
  background: rgba(139,111,71,0.08);
  color: var(--gold-primary);
}

.accordion-body {
  padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 20px);
  background: #fafbfc;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

/* Google Map Section */
.pq-map {
  padding: 0;
}

.pq-map iframe {
  width: 100%;
  height: 450px;
  display: block;
}

@media (max-width: 768px) {
  .pq-map iframe {
    height: 300px;
  }

  .contact-form {
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form-image {
    min-height: 300px;
  }

  .faq-image {
    margin-bottom: 20px;
  }

  .faq-image img {
    min-height: 280px;
  }

  .contact-card-body h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .contact-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================
   About Page Styles
   ========================== */

/* About Section */
.about-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #ffffff;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-image-primary,
.about-image-secondary {
  border-radius: 14px;
  overflow: hidden;
}

.about-image-primary {
  grid-row: 1 / 3;
}

.about-image-primary img,
.about-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-images:hover .about-image-primary img,
.about-images:hover .about-image-secondary img {
  transform: scale(1.05);
}

.about-header {
  margin-bottom: 28px;
}

.about-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #0f1724;
  margin-bottom: 12px;
  line-height: 1.3;
}

.about-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.feature-box {
  display: flex;
  gap: 16px;
  align-items: center;
}

.feature-icon {
  font-size: 42px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f1724;
  line-height: 1.4;
}

.about-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

.about-benefits i {
  color: var(--gold-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: clamp(10px, 2vw, 14px) clamp(24px, 4vw, 32px);
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(139,111,71,0.25);
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139,111,71,0.35);
  color: var(--btn-text);
}

/* Counter Section */
.counter-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: linear-gradient(135deg, rgba(139,111,71,0.08), rgba(139,111,71,0.04));
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 4vw, 40px);
}

.counter-card {
  text-align: center;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139,111,71,0.1);
  transition: all 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: rgba(139,111,71,0.2);
  box-shadow: 0 15px 40px rgba(11,13,15,0.08);
}

.counter-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.counter-number h3 {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.counter-plus {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--gold-primary);
  margin-left: 4px;
}

.counter-label {
  font-size: 15px;
  font-weight: 600;
  color: #0f1724;
}

/* Team Section */
.team-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: #ffffff;
}

.team-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #0f1724;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 4vw, 30px);
}

.team-card {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(11,13,15,0.06);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,13,15,0.12);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.08);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,13,15,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.team-social-link:hover {
  transform: scale(1.1);
}

.team-info {
  padding: clamp(16px, 3vw, 20px);
  text-align: center;
}

.team-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f1724;
  margin-bottom: 4px;
}

.team-info p {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: clamp(40px, 6vw, 80px) 0;
  background: linear-gradient(135deg, #0b0d0f 0%, #1a1f2e 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139,111,71,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}

@media (max-width: 768px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.cta-button {
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: clamp(10px, 2vw, 14px) clamp(24px, 4vw, 32px);
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(139,111,71,0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139,111,71,0.4);
  color: var(--btn-text);
}

@media (max-width: 768px) {
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* live stock detail*/
.live-stock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.stock-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stock-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.stock-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f8f9fa;
}

.stock-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.stock-card:hover .stock-image {
    transform: scale(1.05);
}

.stock-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.stock-status-badge.available {
    background: #28a745;
    color: #fff;
}

.stock-status-badge.limited {
    background: #ffc107;
    color: #000;
}

.stock-status-badge.sold {
    background: #dc3545;
    color: #fff;
}

.stock-card-body {
    padding: 18px;
}

.stock-name {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.stock-code {
    margin: 0 0 12px 0;
    font-size: 12px;
    color: #666;
}

.stock-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0;
}

.spec {
    display: inline-block;
    padding: 4px 8px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
    color: #555;
}

.stock-price {
    margin: 12px 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #8b5a2b;
}

.unit {
    font-size: 12px;
    color: #999;
}

.stock-card .btn {
    width: 100%;
    margin-top: 12px;
}

/* ================= NO STOCK SECTION ================= */
.no-stock-section {
    padding: 60px 30px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 40px 0;
}

.no-stock-box i {
    font-size: 48px;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.no-stock-box h3 {
    margin-bottom: 10px;
    color: #333;
}

.no-stock-box p {
    color: #666;
    margin-bottom: 20px;
}

.related-desc {
    color: #666;
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .live-stock-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
}