* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #4d0d0e;
  --primary-dark: #34090a;
  --primary-light: #6d1214;
  --accent: #C9A24F;
  --accent-light: #E8C97E;
  --bg-main: #F5F1ED;
  --bg-secondary: #E8DDD5;
  --bg-tertiary: #D4C4B8;
  --text-dark: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-secondary);
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--primary));
  border-radius: 4px;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: clip;
}

/* ============================== */
/* HEADER & NAVIGATION */
/* ============================== */
header {
  background: rgba(77, 13, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 79, 0.2);
  color: var(--white);
  padding: 1.2rem 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.6s var(--ease-out);
}

.nav-enquire {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary) !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 12px rgba(201, 162, 79, 0.3);
}

.nav-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 162, 79, 0.4);
}

.nav-link {
  letter-spacing: 1px;
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-full {
  display: inline-block;
}

.logo-short {
  display: none;
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s var(--ease-out);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transition: width 0.3s var(--ease-out);
}

nav a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .logo-full {
    display: none;
  }

  .logo-short {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.8rem 1rem;
  }

  .header-content {
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  nav {
    gap: 0.6rem;
    font-size: 0.8rem;
  }

  nav .nav-link {
    display: none;
  }

  .nav-enquire {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
}

/* ============================== */
/* CATALOG SECTION */
/* ============================== */
.catalog-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  animation: fadeIn 0.8s var(--ease-out) 0.2s both;
}

.collection-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: fadeIn 0.8s var(--ease-out) 0.3s both;
}

.intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.intro-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.intro-description {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 0.3px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================== */
/* SEARCH & FILTER TOOLBAR */
/* ============================== */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  animation: slideUp 0.6s var(--ease-out) 0.3s both;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-wrapper {
  flex: 1;
  min-width: 250px;
  position: relative;
}

.search-input-box {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1.25rem 0.75rem 2.75rem;
  border: 2px solid var(--bg-tertiary);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 25px rgba(201, 162, 79, 0.2);
  transform: translateY(-2px);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.1rem;
}

.search-results-count {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 1.25rem;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.search-results-count:empty {
  display: none;
}

.grid-toggle {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 0.5rem;
  border-radius: 50px;
  border: 2px solid var(--bg-tertiary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.grid-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-btn:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

.grid-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(77, 13, 14, 0.3);
}

@media (max-width: 768px) {
  .catalog-section {
    padding: 1.5rem 1rem;
  }

  .toolbar {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .search-wrapper {
    width: 100% !important;
  }

  .sort-wrapper,
  .grid-toggle {
    width: fit-content !important;
    margin: 0 auto;
  }

  .sort-wrapper {
    justify-content: center;
  }

  .grid-toggle {
    justify-content: center;
  }

  .search-results-count {
    position: relative;
    top: auto;
    left: auto;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
  }

  .filter-section {
    margin-bottom: 1.25rem;
  }

  .subcategory-section {
    margin-bottom: 1.25rem;
  }

  .weight-filter-section {
    margin-top: 0;
    margin-bottom: 1.25rem;
  }

  .active-filters-summary {
    margin-bottom: 1.25rem;
  }

  /* Compact Product Card on Mobile */
  .card-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .card-body {
    padding: 0.85rem;
  }

  .card-id {
    margin-bottom: 0.25rem;
  }

  .card-title {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
  }

  .card-desc {
    margin-bottom: 0.65rem;
    line-height: 1.3;
  }

  .card-meta {
    margin-bottom: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .rate-computed {
    font-size: 1.1rem;
  }

  .card-enquire {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
}

/* ============================== */
/* CATEGORY & SUBCATEGORY FILTERS */
/* ============================== */
.filter-section {
  margin-bottom: 2rem;
  animation: slideUp 0.6s var(--ease-out) 0.4s both;
}

.filter-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  display: block;
}

.filter-tabs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-top: 6px;
  padding-bottom: 0.5rem;
  padding-left: 4px;
  padding-right: 4px;
  margin-top: -6px;
  margin-left: -4px;
  margin-right: -4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .filter-tabs {
    flex-wrap: nowrap;
  }
}

.filter-tabs::-webkit-scrollbar {
  height: 4px;
}

.filter-tabs::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 2px;
}

.filter-tabs::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--bg-tertiary);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
  font-family: 'Jost', sans-serif;
}

.filter-tab i {
  color: var(--accent);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.filter-tab:hover {
  border-color: var(--accent);
  background: rgba(201, 162, 79, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 79, 0.15);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(77, 13, 14, 0.25);
}

.filter-tab.active i {
  color: var(--accent-light);
}

/* Subcategories Drawer (Luxury Box Look) */
.subcategory-section {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  opacity: 0;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.subcategory-section.show {
  max-height: 250px;
  opacity: 1;
  margin-top: 0;
}

.subcategory-box {
  background: rgba(232, 221, 213, 0.35);
  border: 1px dashed var(--bg-tertiary);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.sub-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-top: 6px;
  padding-bottom: 0.25rem;
  padding-left: 4px;
  padding-right: 4px;
  margin-top: -6px;
  margin-left: -4px;
  margin-right: -4px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .sub-tabs {
    flex-wrap: nowrap;
  }
}

.sub-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border: 1px solid var(--bg-tertiary);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
  font-family: 'Jost', sans-serif;
}

.sub-tab:hover {
  border-color: var(--accent);
  background: rgba(201, 162, 79, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(201, 162, 79, 0.12);
}

.sub-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(77, 13, 14, 0.2);
}

/* ============================== */
/* PRODUCTS GRID */
/* ============================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.products-grid.grid-1 {
  grid-template-columns: 1fr;
}

.products-grid.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.products-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.products-grid.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.products-grid.grid-8 {
  grid-template-columns: repeat(8, 1fr);
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .products-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 1200px) {
    .products-grid.grid-6 {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .products-grid.grid-6 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .products-grid.grid-8 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .products-grid.grid-1 {
    grid-template-columns: 1fr;
  }

  .products-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid.grid-8 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .products-grid.grid-1,
  .products-grid.grid-4,
  .products-grid.grid-8 {
    grid-template-columns: 1fr;
  }

  .products-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================== */
/* PRODUCT CARD */
/* ============================== */
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  animation: cardSlideUp 0.6s var(--ease-out) backwards;
}

@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .card-image-wrap img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 13, 14, 0.1), rgba(201, 162, 79, 0.1));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.product-card:hover .card-overlay {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(77, 13, 14, 0.3);
  backdrop-filter: blur(10px);
}

.card-body {
  padding: 1.25rem;
}

.card-id {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bg-secondary);
}

.meta-weight {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.meta-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.meta-rate {
  text-align: right;
}

.rate-per-gram {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.rate-computed {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-enquire {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 12px rgba(77, 13, 14, 0.2);
  border: none;
  cursor: pointer;
}

.card-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(77, 13, 14, 0.3);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

/* ============================== */
/* NO RESULTS STATE */
/* ============================== */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeIn 0.6s var(--ease-out);
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.no-results-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.no-results-subtext {
  color: var(--text-light);
  font-size: 1rem;
}

/* ============================== */
/* MODAL */
/* ============================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal {
  position: relative;
  background: var(--bg-main);
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.4s var(--ease-out);
  border: 3px solid var(--primary);
  display: flex;
  max-height: 90vh;
}

@keyframes modalSlideUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  max-height: 100%;
  position: relative;
  overflow: hidden;
}

.modal-image-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  height: 100%;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(77, 13, 14, 0.3);
}

.modal-close:hover {
  transform: rotate(90deg) scale(1.1);
}

.modal-content {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
}

.modal-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.modal-id {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.modal-desc {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-style: italic;
  font-size: 0.95rem;
}

.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--bg-tertiary);
}

.spec-item {
  text-align: center;
}

.spec-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.spec-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.modal-enquire {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 6px 20px rgba(77, 13, 14, 0.2);
  border: none;
  cursor: pointer;
  display: block;
}

.modal-enquire:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(77, 13, 14, 0.35);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .form-btn-submit {

    width: 100%;
    padding: 0.75rem !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(201, 162, 79, 0.3);
  }

  .modal {
    display: block;
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-container {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .modal-image-section {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .modal-content {
    padding: 1rem 1rem 2rem 1rem;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .modal-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .modal-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .modal-specs {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .spec-value {
    font-size: 1.2rem;
  }

  #modalTotalPrice {
    font-size: 1.5rem !important;
  }

  .modal-enquire {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    top: 1rem;
    right: 1rem;
  }
}

/* ============================== */
/* FOOTER */
/* ============================== */
footer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

footer p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

footer a:hover {
  color: var(--accent-light);
}

/* ============================== */
/* LOADING SPINNER */
/* ============================== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================== */
/* HERO BANNER & PREMIUM DETAILS */
/* ============================== */
.hero-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #400b0c 50%, var(--primary-dark) 100%);
  overflow: hidden;
  border-bottom: 3px solid var(--accent);
  margin-bottom: 3rem;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(201, 162, 79, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(109, 18, 20, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInScale 1s var(--ease-out);
}

.hero-subtitle {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 2px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.divider-icon {
  color: var(--accent);
  font-size: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--bg-main);
  margin-bottom: 2.5rem;
  font-weight: 400;
  opacity: 0.9;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  box-shadow: 0 4px 20px rgba(201, 162, 79, 0.4);
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--accent);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 162, 79, 0.5);
  background: var(--primary-dark);
  color: var(--accent);
  border-color: var(--accent);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 1.8rem;
  z-index: 2;
  cursor: pointer;
  animation: bounceArrow 2s infinite var(--ease-in-out);
  transition: color 0.3s;
}

.hero-scroll-indicator:hover {
  color: var(--accent-light);
}

@keyframes bounceArrow {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }

  40% {
    transform: translate(-50%, -10px);
  }

  60% {
    transform: translate(-50%, -5px);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Diagonal light sweep (glint effect) on card hover */
.product-card {
  position: relative;
  border: 1px solid rgba(212, 196, 184, 0.4);
}

.product-card:hover {
  border-color: var(--accent);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
  z-index: 5;
}

.product-card:hover::after {
  left: 200%;
  transition: all 0.9s var(--ease-out);
}

/* ============================== */
/* SORT & FILTERS */
/* ============================== */
.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--bg-tertiary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sort-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sort-select {
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.sort-select option {
  background: var(--bg-main);
  color: var(--text-dark);
  font-weight: 500;
}

.search-clear-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-secondary);
}

.search-clear-btn:hover {
  background: var(--bg-tertiary);
  color: var(--primary-dark);
}

.search-input {
  padding: 0.75rem 3rem 0.75rem 2.75rem;
}

.weight-filter-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  animation: slideUp 0.6s var(--ease-out) 0.35s both;
}

.filter-label-inline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.weight-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 6px;
  padding-bottom: 0.25rem;
  padding-left: 4px;
  padding-right: 4px;
  margin-top: -6px;
  margin-left: -4px;
  margin-right: -4px;
}

.weight-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--bg-tertiary);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
  font-family: 'Jost', sans-serif;
}

.weight-tab i {
  color: var(--accent);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.weight-tab:hover {
  border-color: var(--accent);
  background: rgba(201, 162, 79, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 162, 79, 0.15);
}

.weight-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(77, 13, 14, 0.25);
}

.weight-tab.active i {
  color: var(--accent-light);
}

.active-filters-summary {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  background: rgba(201, 162, 79, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: 1px dashed var(--accent);
  animation: fadeIn 0.4s var(--ease-out);
}

.summary-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.summary-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--bg-tertiary);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.summary-tag i {
  color: var(--primary);
  cursor: pointer;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.summary-tag i:hover {
  color: var(--primary-light);
}

.reset-all-btn {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.reset-all-btn:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* ============================== */
/* SKELETON LOADERS */
/* ============================== */
.skeleton-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 196, 184, 0.4);
  pointer-events: none;
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-body {
  padding: 1.25rem;
}

.skeleton-text {
  height: 12px;
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.skeleton-text.title {
  width: 70%;
  height: 18px;
  margin-bottom: 1rem;
}

.skeleton-text.desc {
  width: 90%;
  height: 12px;
}

.skeleton-text.desc-short {
  width: 50%;
  height: 12px;
  margin-bottom: 1.5rem;
}

.skeleton-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bg-secondary);
}

.skeleton-meta-item {
  height: 16px;
  width: 30%;
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

.skeleton-button {
  height: 38px;
  width: 100%;
  background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ============================== */
/* SCROLL TO TOP */
/* ============================== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: 1px solid var(--accent);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
  z-index: 90;
}

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

@media (hover: hover) {
  .scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
  }
}

.scroll-to-top:active {
  transform: scale(0.95);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
}

/* ============================== */
/* SHARE TOAST & ENQUIRE BUTTONS */
/* ============================== */
.modal-share-btn {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--primary);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal-share-btn:hover {
  background: rgba(201, 162, 79, 0.1);
  color: var(--primary-dark);
}

.share-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  opacity: 0;
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--accent);
}

.share-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================== */
/* MOBILE BOTTOM BAR */
/* ============================== */
.mobile-sticky-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 99;
  grid-template-columns: 1fr 1fr;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  border-top: 1px solid var(--bg-tertiary);
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  white-space: nowrap;
}

.mobile-action-btn.whatsapp {
  background: #1b8a47;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(27, 138, 71, 0.2);
}

.mobile-action-btn.catalog {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 10px rgba(77, 13, 14, 0.2);
}

@media (max-width: 768px) {
  .mobile-sticky-actions {
    display: grid;
  }

  body {
    padding-bottom: 75px;
  }

  .scroll-to-top {
    bottom: 5.5rem;
    right: 1.5rem;
  }

  /* Weight Filter Section Mobile Spacing */
  .weight-filter-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .filter-label-inline {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
  }

  .weight-tabs {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-top: 6px;
    padding-bottom: 0.5rem;
    margin-top: -6px;
    -webkit-overflow-scrolling: touch;
  }

  .weight-tabs::-webkit-scrollbar {
    height: 3px;
  }

  .weight-tabs::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 2px;
  }

  .weight-tabs::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 2px;
  }

  /* Compact tabs and hide scrollbars on mobile/small screens */
  .filter-tabs,
  .sub-tabs,
  .weight-tabs {
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 0.25rem;
  }

  .filter-tabs::-webkit-scrollbar,
  .sub-tabs::-webkit-scrollbar,
  .weight-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
  }

  .filter-tab,
  .weight-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    gap: 0.35rem;
    border-radius: 6px;
  }

  .filter-tab i,
  .weight-tab i {
    font-size: 0.85rem;
  }

  .sub-tab {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    border-radius: 5px;
  }
}

/* ============================== */
/* NEW SECTIONS STYLING */
/* ============================== */

/* Trust Badges */
.trust-badges-section {
  max-width: 1400px;
  margin: -1.5rem auto 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-badge-card {
  background: var(--white);
  border: 1px solid rgba(212, 196, 184, 0.5);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
}

.trust-badge-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.trust-badge-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.trust-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.trust-badge-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Craftsmanship Section */
.craftsmanship-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--bg-tertiary);
  border-bottom: 1px solid var(--bg-tertiary);
  padding: 5rem 2rem;
}

.craftsmanship-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.craft-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.craft-content p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.craft-item {
  background: var(--bg-main);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.craft-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.craft-item-title i {
  color: var(--accent);
  font-size: 0.9rem;
}

.craft-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
  max-width: 1400px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}

.section-title-elegant {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3rem;
  letter-spacing: 1px;
  position: relative;
}

.section-title-elegant::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent);
}

.testimonial-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(212, 196, 184, 0.4);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 250px;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.8s var(--ease-out);
}

.testimonial-slide.active {
  display: block;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(212, 196, 184, 0.5);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-icon-toggle {
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform 0.4s var(--ease-out);
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
  background: var(--bg-main);
}

.faq-answer-inner {
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  border-top: 1px solid var(--bg-secondary);
}

/* Contact and WhatsApp Inquiry Form Section */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  animation: fadeUp 0.8s var(--ease-silk) 0.2s both;
}

.contact-intro {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-style: italic;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease-silk);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--accent);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(201, 162, 79, 0.1);
}

.contact-icon {
  font-size: 1.8rem;
  color: var(--primary);
  min-width: 40px;
  text-align: center;
}

.contact-text-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-text-val {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
}

.contact-text-val a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
  transition: all 0.3s var(--ease-silk);
}

.contact-text-val a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.whatsapp-form-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #22030b 100%);
  border-top: 3px solid var(--accent);
  padding: 5rem 2rem;
  color: var(--white);
}

.whatsapp-form-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.whatsapp-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.whatsapp-form-subtitle {
  font-size: 1rem;
  color: var(--bg-main);
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.inquiry-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 79, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid var(--bg-tertiary);
  border-radius: 6px;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(201, 162, 79, 0.2);
}

select.form-input option {
  background: var(--primary-dark);
  color: var(--white);
}

.form-btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(201, 162, 79, 0.3);
}

.form-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 79, 0.5);
  background: var(--white);
  color: var(--primary);
}

/* Modal Image Hover Zoom */
.modal-image-section {
  cursor: zoom-in;
}

.modal-image {
  transition: transform 0.3s ease;
}

/* Responsive New Sections */
@media (max-width: 992px) {
  .trust-badges-section {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -1rem;
  }

  .craftsmanship-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .trust-badges-section {
    grid-template-columns: 1fr;
    margin-top: -0.5rem;
    gap: 1rem;
  }

  .craft-content h2,
  .section-title-elegant,
  .whatsapp-form-title {
    font-size: 2rem;
  }

  .craft-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-carousel {
    padding: 2rem 1.5rem;
  }

  .testimonial-quote {
    font-size: 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .inquiry-form {
    padding: 1.5rem;
  }
}

/* ============================== */
/* LOAD MORE SECTION */
/* ============================== */
.load-more-container {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 3.5rem 0 1rem 0;
  animation: fadeIn 0.6s var(--ease-out);
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 15px rgba(77, 13, 14, 0.2);
  font-family: 'Jost', sans-serif;
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(77, 13, 14, 0.35);
  background: var(--white);
  color: var(--primary);
}

.load-more-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.load-more-btn:hover i {
  transform: rotate(90deg);
}

.load-more-status {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================== */
/* WHATSAPP FORM SECTION (NEW) */
/* ============================== */
.whatsapp-form-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #220404 50%, #130202 100%);
  padding: 5rem 2rem;
  color: var(--white);
  overflow: hidden;
}

.whatsapp-form-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(201, 162, 79, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.whatsapp-form-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(109, 18, 20, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.whatsapp-form-section>* {
  position: relative;
  z-index: 1;
}

.whatsapp-form-section>span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s var(--ease-out);
}

.contact-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-light);
  margin-bottom: 0.3rem;
}

.contact-text-val,
.contact-text-val a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.whatsapp-form-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 12px;
}

.whatsapp-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.whatsapp-form-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.inquiry-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inquiry-form .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.inquiry-form .form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
}

.inquiry-form .form-input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.inquiry-form .form-input option {
  background: var(--primary-dark);
  color: var(--white);
}

.form-btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary-dark);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(201, 162, 79, 0.2);
}

.form-btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 162, 79, 0.4);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .inquiry-form .form-row {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-bottom: 1.8rem;
  }

  .inquiry-form .form-group {
    gap: 0.6rem;
  }

  .whatsapp-form-container {
    padding: 1.5rem;
    padding-bottom: 4.5rem;
    /* Space for the floating action button */
  }

  .form-btn-submit {
    font-size: 0.8rem;
    padding: 0.8rem;
    letter-spacing: 0.5px;
  }
}

/* ============================== */
/* HEADER RESPONSIVENESS */
/* ============================== */
.header-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transform: scale(4.5);
  transform-origin: left center;
  margin-top: 20px
}

@media (max-width: 900px) {
  .header-logo-img {
    transform: scale(4);
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }

  .header-content {
    gap: 1rem;
  }

  .header-logo-img {
    transform: scale(3.6);
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .nav-enquire {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.8rem 1rem;
  }

  .header-content {
    gap: 0.5rem;
  }

  .header-logo-img {
    transform: scale(3.2);
  }

  nav {
    gap: 0.8rem;
  }

  nav a {
    font-size: 0.75rem;
  }

  .nav-enquire {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
}