/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fff;
}

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.logo-icon {
  color: #c9a96e;
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9a96e;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 100;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Contact button */
.btn-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-contact:hover {
  background: #1e1e1e;
  transform: scale(1.03);
}

.btn-dot {
  width: 9px;
  height: 9px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 6px rgba(74,222,128,0.7); }
  50%       { box-shadow: 0 0 14px rgba(74,222,128,1); }
}

.btn-arrow {
  font-size: 1.05rem;
  background: #fff;
  color: #0a0a0a;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* ════════════════════════════════════
   HERO SECTION
════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: subtle-zoom 18s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 6, 4, 0.80) 0%,
    rgba(8, 6, 4, 0.55) 50%,
    rgba(8, 6, 4, 0.20) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
  max-width: 700px;
}

/* Hero typography */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  animation: fade-up 0.8s ease both;
}

.hero-subtitle {
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  margin-bottom: 36px;
  animation: fade-up 0.9s 0.1s ease both;
}

/* Explore button */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  border-radius: 50px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  width: fit-content;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  animation: fade-up 1s 0.2s ease both;
  margin-bottom: 56px;
}

.btn-explore:hover {
  background: #f0e6d2;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.btn-explore-arrow {
  background: #0a0a0a;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.25s;
}

.btn-explore:hover .btn-explore-arrow {
  background: #c9a96e;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fade-up 1.1s 0.35s ease both;
}

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

.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-number sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.2);
}

/* ── Animations ── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 900px) {
  .navbar {
    padding: 0 24px;
  }
  .nav-links {
    gap: 20px;
  }
  .hero-content {
    padding: 0 40px;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 0 20px;
  }
  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }
  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }
  .stat-divider {
    display: none;
  }
}

/* ════════════════════════════════════
   CARPET STYLES ACCORDION
════════════════════════════════════ */
.styles-section {
  padding: 100px 48px 60px;
  background: #050505;
  height: 100vh;
  min-height: 600px;
}

.styles-container {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 16px;
  max-width: 1600px;
  margin: 0 auto;
}

.style-panel {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  flex: 1;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.style-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  transition: opacity 0.6s ease;
  z-index: 1;
}

.style-panel.active {
  flex: 6;
}

.panel-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.panel-title-vertical {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: left bottom;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.style-panel.active .panel-title-vertical {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) rotate(-90deg) translateY(-20px);
}

.panel-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0s;
  pointer-events: none;
  min-width: 250px;
}

.style-panel.active .panel-info {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
  pointer-events: auto;
}

.panel-num {
  font-size: 3rem;
  font-weight: 300;
  color: #c9a96e;
  line-height: 1;
  display: block;
}

.panel-title-horizontal {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════
   FEATURED CARPETS GRID
════════════════════════════════════ */
.featured-section {
  padding: 100px 48px 120px;
  background: #050505;
}

.featured-header {
  max-width: 1400px;
  margin: 0 auto 50px auto;
}

.pill-label {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.featured-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  max-width: 800px;
  letter-spacing: -0.01em;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  color: #050505;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

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

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-origin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #a0a0a0;
  margin-bottom: 12px;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.card-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #a0a0a0;
}

.stat-item svg {
  color: #777;
}

.card-price {
  margin-top: auto;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Button replacing the price action */
.card-price::after {
  content: 'View Details';
  font-size: 0.8rem;
  font-weight: 600;
  background: #c9a96e;
  color: #050505;
  padding: 8px 16px;
  border-radius: 50px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.product-card:hover .card-price::after {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════
   CONTACT FORM SECTION
════════════════════════════════════ */
.contact-section {
  position: relative;
  padding: 120px 48px;
  background-image: url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,1) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.85) 100%);
  z-index: 1;
}

.contact-header, .contact-form-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
}

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

.contact-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.contact-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

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

.form-row {
  display: flex;
  gap: 32px;
  width: 100%;
}

.form-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 0;
  font-family: inherit;
  font-size: 1rem;
  color: #fff;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-bottom-color: #c9a96e;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  margin-top: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 20px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.btn-submit:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* ════════════════════════════════════
   FOOTER SECTION
════════════════════════════════════ */
.site-footer {
  background: #000;
  padding: 60px 48px;
  color: #a0a0a0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #151515;
  border-radius: 50%;
  color: #a0a0a0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-circle:hover {
  background: #c9a96e;
  color: #050505;
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 0.8rem;
}

/* ════════════════════════════════════
   CATALOG PAGE
════════════════════════════════════ */
.catalog-header {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.catalog-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
}

.catalog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,0.9));
  z-index: 1;
}

.catalog-title-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.catalog-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.catalog-subtitle {
  color: #a0a0a0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.catalog-section {
  padding: 80px 40px;
  background: #050505;
}

.catalog-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}

/* Sidebar */
.filter-sidebar {
  position: sticky;
  top: 100px;
  background: #0a0a0a;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.05);
}

.filter-header-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.filter-header-mobile h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

.btn-close-filters {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #c9a96e;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Custom Checkboxes */
.custom-checkbox {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #a0a0a0;
  transition: color 0.2s ease;
  user-select: none;
}

.custom-checkbox:hover {
  color: #fff;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #151515;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: #c9a96e;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #c9a96e;
  border-color: #c9a96e;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #050505;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ span:last-child {
  color: #fff;
}

/* Catalog Top Bar */
.catalog-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.results-count {
  font-size: 0.95rem;
  color: #a0a0a0;
}

.btn-mobile-filter {
  display: none;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-mobile-filter:hover {
  background: #1a1a1a;
}

/* ════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════ */
.about-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5,5,5,0.6), rgba(5,5,5,0.9));
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.about-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.about-subtitle {
  color: #c9a96e;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-story-section {
  padding: 100px 40px;
  background: #050505;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  margin-top: 16px;
  line-height: 1.2;
}

.about-paragraph {
  color: #a0a0a0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.signature {
  margin-top: 40px;
  border-left: 2px solid #c9a96e;
  padding-left: 20px;
}

.signature-name {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.signature-title {
  color: #c9a96e;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  padding: 0 20px 20px 0;
}

.about-image-backdrop {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(201, 169, 110, 0.4);
  z-index: 0;
  border-radius: 8px;
}

.about-side-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 8vw;
  }
  .styles-section {
    padding: 80px 24px;
    height: auto;
    min-height: 100vh;
  }
  .styles-container {
    height: 600px;
  }
  .panel-title-horizontal {
    font-size: 1.5rem;
  }
  .panel-num {
    font-size: 2rem;
  }
  .featured-section {
    padding: 80px 24px;
  }
  .contact-section {
    padding: 80px 24px;
  }
  .contact-form-wrapper {
    padding: 40px;
  }
  .btn-mobile-filter {
    display: block;
  }
  
  /* Catalog Mobile Adjustments */
  .catalog-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .filter-sidebar {
    display: none; /* Hide sidebar by default on mobile */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 200;
    border-radius: 0;
    overflow-y: auto;
    padding: 24px;
  }
  
  .filter-sidebar.active {
    display: block;
  }
  
  .filter-header-mobile {
    display: flex;
  }

  /* About Mobile Adjustments */
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .about-story-section {
    padding: 60px 24px;
  }
  
  .about-story-content {
    order: 2;
  }
}

/* ════════════════════════════════════
   PRODUCT DETAILS PAGE
════════════════════════════════════ */

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 40px 60px;
}

.breadcrumb {
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: #a0a0a0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

#breadcrumb-title {
  color: #fff;
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Left Gallery */
.product-gallery {
  display: flex;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 80px;
}

.thumb-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.thumb-img:hover {
  opacity: 1;
}

.thumb-img.active {
  border-color: #d4af37;
  opacity: 1;
}

.main-image-view {
  flex: 1;
  position: relative;
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
}

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

.new-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #e31837;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
}

/* Right Info */
.product-info-panel {
  padding-top: 10px;
}

.product-category {
  color: #a0a0a0;
  font-size: 0.95rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.product-title-large {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 24px;
}

.product-dimensions-subtitle {
  font-size: 1.4rem;
  color: #ccc;
  margin-bottom: 32px;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.meta-row {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.meta-row span:first-child {
  color: #a0a0a0;
  min-width: 100px;
}

.product-price-large {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 32px;
}

/* Actions */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-add-cart, .btn-buy-gpay {
  width: 100%;
  padding: 18px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.btn-add-cart {
  background: #d4af37;
  color: #000;
}

.btn-add-cart:hover {
  background: #dfbc4a;
  transform: translateY(-2px);
}

.btn-buy-gpay {
  background: #202020;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-buy-gpay:hover {
  background: #333;
}

.gpay-logo {
  font-weight: 600;
  margin-left: 6px;
}

/* Accordions */
.accordion-group {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-item summary {
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  list-style: none; /* Hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #a0a0a0;
  transition: transform 0.3s ease;
}

.accordion-item[open] summary::after {
  content: '−';
}

.accordion-content {
  padding-bottom: 24px;
  color: #a0a0a0;
  line-height: 1.6;
}

.specs-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.specs-list strong {
  color: #fff;
  font-weight: 500;
  display: inline-block;
  min-width: 120px;
}

@media (max-width: 800px) {
  .nav-links {
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-link {
    font-size: 1.5rem;
  }
  .mobile-menu-btn {
    display: block;
  }
  .btn-contact {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 11vw;
  }
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 16px;
  }
  .styles-section {
    padding: 80px 20px 40px;
    height: auto;
    min-height: 100vh;
  }
  .styles-container {
    flex-direction: column;
    height: 800px;
  }
  .style-panel {
    flex: 1;
  }
  .style-panel.active {
    flex: 4;
  }
  .panel-title-vertical {
    transform: none;
    left: 20px;
    bottom: 20px;
    font-size: 1rem;
  }
  .style-panel.active .panel-title-vertical {
    transform: translateY(10px);
  }
  .panel-content {
    padding: 20px;
  }
  .featured-section {
    padding: 60px 20px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .card-stats {
    flex-wrap: wrap;
    gap: 12px;
  }
  .contact-section {
    padding: 60px 20px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
    border-radius: 24px;
  }
  .form-row {
    flex-direction: column;
    gap: 24px;
  }
  .contact-form {
    gap: 24px;
  }
  .site-footer {
    padding: 40px 20px;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .footer-right {
    align-items: flex-start;
    gap: 24px;
  }
}
