/* AKARI Designs — Premium CSS Framework */

/* ============================================
   ROOT & DESIGN TOKENS
   ============================================ */

:root {

  /* AKARI DESIGNS LUXURY PALETTE */

  --primary-dark: #3F342D;
  --primary-green: #7B6D60;

  --accent-gold: #C89B3C;
  --accent-light-gold: #B08D4A;

  --text-dark: #3F342D;
  --text-medium: #6B5B4D;
  --text-white: #3F342D;
  --text-light: #6B5B4D;
  --text-muted: #6B5B4D;

  --text-on-dark: #F8F5F0;
  --text-on-dark-muted: rgba(248, 245, 240, 0.85);

  --bg-dark: #F8F5F0;
  --bg-darker: #EFE8DD;

  --bg-card: #FFFFFF;
  --border-light: #E6DDD0;

  --shadow-soft: rgba(201,168,106,0.12);

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}
/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); line-height: 1.2; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-light-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  visibility: visible;
}

picture {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* ============================================
    HEADER & NAVIGATION
    ============================================ */

header {
  position: sticky;
  top: 0;
  height: 80px;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(250, 246, 240, 0.96);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
  display: block;
  transition: opacity var(--transition);
  line-height: 0;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
  transition: height 0.4s ease;
}

header.scrolled .logo img {
  height: 70px;
}

@media (max-width: 768px) {
  header {
    height: 64px;
  }

  header.scrolled {
    height: 60px;
  }

  .logo img {
    height: 50px;
  }

  header.scrolled .logo img {
    height: 44px;
  }
}

nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.logo {
  grid-column: 1;
  justify-self: start;
}

.nav-menu {
  grid-column: 2;
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition);
}

.nav-menu a:hover {
  color: var(--accent-gold);
}

.nav-menu a:hover::after {
  width: 100%;
}

#language-switcher {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: var(--spacing-sm);
}

.lang-btn {
  background: transparent;
  border: 1.5px solid var(--text-muted);
  color: var(--text-muted);
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  transition: all var(--transition);
}

.lang-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.lang-btn.active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  grid-column: 3;
  justify-self: end;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #language-switcher {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   BUTTONS & CTAS
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-lg);
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background-color: var(--accent-light-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--primary-dark);
  border: 2px solid var(--border-light);
}

.btn-white:hover {
  background-color: var(--bg-dark);
  transform: translateY(-2px);
}

.btn-small {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.9rem;
}

.btn-group {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* ============================================
   SECTIONS & CONTAINERS
   ============================================ */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

section {
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background:
  linear-gradient(
      180deg,
      #FAF6F0 0%,
      #F3ECE3 100%
  );

  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-content h1 {
  margin-bottom: var(--spacing-md);
  color: var(--text-white);
}

.hero-content .subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--accent-light-gold);
  margin-bottom: var(--spacing-xl);
  font-weight: 300;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin: var(--spacing-md) auto 0;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-5 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

/* ============================================
   PRODUCT & PORTFOLIO CARDS
   ============================================ */

.card {
   background: white;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px var(--shadow-soft);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}

.card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.card-content {
  padding: var(--spacing-lg);
}

.card-category {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-sm);
}

.card-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--spacing-md);
}

.card-price {
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.card-footer {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial {
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--accent-gold);
  padding: var(--spacing-lg);
  border-radius: 4px;
  margin-bottom: var(--spacing-lg);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  font-size: 1.05rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent-gold);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
  margin-bottom: var(--spacing-lg);
}

label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  color: var(--text-on-dark);
}

input, textarea, select {
  width: 100%;
  padding: var(--spacing-md);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  transition: all var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-section h3 {
  margin-bottom: var(--spacing-lg);
  color: var(--accent-gold);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  color: var(--text-muted);
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
    SINGLE HERO SECTION
    ============================================ */

.hero-single {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-darker);
}

.hero-single-image picture,
.hero-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-single-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-single-image picture,
.hero-single-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-single-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(63,52,45,0.78) 0%, rgba(30,24,20,0.88) 100%);
  z-index: 2;
}

.hero-single-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 4rem 2rem;
}

.hero-single-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #F8F5EF;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-single-content .subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(248, 245, 239, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-single .btn-group {
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.hero-badges span {
  color: rgba(248, 245, 239, 0.75);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badges .gold {
  color: #C89B3C;
}

/* ============================================
    FEATURE CARDS
    ============================================ */

.feature {
  text-align: center;
  padding: var(--spacing-lg);
  transition: all var(--transition);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all var(--transition);
}

.feature:hover .feature-icon {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

.feature h3 {
  margin-bottom: var(--spacing-md);
  color: var(--accent-gold);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeIn 0.8s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

/* ============================================
   FILTERS
   ============================================ */

.filters-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-2xl);
}

.filter-btn {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--accent-gold);
  background-color: transparent;
  color: var(--accent-gold);
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: all var(--transition);
  font-size: 0.95rem;
}

.filter-btn.active {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.filter-btn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

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

@media (max-width: 768px) {
  header {
    height: 64px;
  }

  header.scrolled {
    height: 60px;
  }

  .logo img {
    height: 50px;
  }

  header.scrolled .logo img {
    height: 44px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-card);
    gap: 0;
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-menu a {
    display: block;
    padding: var(--spacing-md);
    color: var(--text-dark);
  }

  .nav-menu a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav {
    padding: 0 var(--spacing-md);
  }

  section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .hero-content h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-3xl: 3rem;
  }

  section {
    padding: var(--spacing-2xl) var(--spacing-sm);
  }

  nav {
    padding: var(--spacing-sm);
  }

  .logo img {
    height: 40px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }

  .grid-4 { grid-template-columns: 1fr; }

  .card-image {
    height: 180px;
  }

  .hero-content .subtitle {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .filters-container {
    gap: var(--spacing-sm);
  }

  .filter-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.85rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }
.mt-5 { margin-top: var(--spacing-2xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }
.mb-5 { margin-bottom: var(--spacing-2xl); }

.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }
.p-5 { padding: var(--spacing-2xl); }

.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.hide-mobile { display: block; }
.show-mobile { display: none; }

@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* ============================================
    COLLECTIONS PAGE
    ============================================ */

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.collection-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collection-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(201, 168, 106, 0.15);
  border-color: rgba(201, 168, 106, 0.4);
}

.collection-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--bg-dark);
  position: relative;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.collection-card:hover .collection-image img {
  transform: scale(1.06);
}

.collection-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.collection-content h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.collection-desc {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  min-height: 3.2rem;
}

.collection-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}

.collection-content .btn {
  margin-top: 1rem;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.collection-card:hover .collection-content .btn {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 106, 0.25);
}

.collection-badge {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  z-index: 2;
  background: var(--accent-gold);
  color: var(--bg-darker, #1a1410);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.collection-soon {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.collection-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--border-light);
}

.collection-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.collection-cta {
  white-space: nowrap;
}

/* ============================================
    WHY CHOOSE AKARI
    ============================================ */

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.why-choose-item {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.why-choose-item:nth-child(1) { animation-delay: 0.05s; }
.why-choose-item:nth-child(2) { animation-delay: 0.1s; }
.why-choose-item:nth-child(3) { animation-delay: 0.15s; }
.why-choose-item:nth-child(4) { animation-delay: 0.2s; }
.why-choose-item:nth-child(5) { animation-delay: 0.25s; }
.why-choose-item:nth-child(6) { animation-delay: 0.3s; }
.why-choose-item:nth-child(7) { animation-delay: 0.35s; }
.why-choose-item:nth-child(8) { animation-delay: 0.4s; }
.why-choose-item:nth-child(9) { animation-delay: 0.45s; }
.why-choose-item:nth-child(10) { animation-delay: 0.5s; }

.why-choose-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(201, 168, 106, 0.15);
  border-color: var(--accent-gold);
}

.why-choose-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(201, 168, 106, 0.05));
  margin-bottom: var(--spacing-md);
  color: var(--accent-gold);
}

.why-choose-item h3 {
  font-size: 1.15rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
  font-weight: 600;
}

.why-choose-item p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
    OUR PROCESS
    ============================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.process-step {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(201, 168, 106, 0.12);
  border-color: var(--accent-gold);
}

.process-step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-light-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 10px 25px var(--shadow-soft);
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.process-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin-top: 1rem;
}

.process-category {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.25rem;
  transition: all var(--transition);
}

.process-category:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 30px var(--shadow-soft);
}

.process-category strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-category p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CUSTOM ORDER CARDS
   ============================================ */

.custom-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.custom-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition);
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(201, 168, 106, 0.15);
  border-color: var(--accent-gold);
}

.custom-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.custom-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.custom-card-content {
  padding: 1.5rem;
}

.custom-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.custom-card-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ============================================
   PRODUCT EXAMPLES
   ============================================ */

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.example-group h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent-gold);
}

.example-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.example-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: transform var(--transition);
}

.example-item:hover img {
  transform: translateY(-4px);
}

.example-item span {
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* ============================================
   TIMELINE
   ============================================ */

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.timeline-item {
  text-align: center;
  position: relative;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-light-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 10px 25px var(--shadow-soft);
}

.timeline-item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
   PRICING BOX
   ============================================ */

.pricing-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.pricing-box p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pricing-list {
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pricing-list li {
  padding: 0.5rem 0;
  color: var(--text-medium);
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.pricing-box strong {
  color: var(--text-dark);
}

/* ============================================
    SHIPPING & DELIVERY
    ============================================ */

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.shipping-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.shipping-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(201, 168, 106, 0.15);
  border-color: var(--accent-gold);
}

.shipping-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(201, 168, 106, 0.05));
  margin-bottom: var(--spacing-md);
  color: var(--accent-gold);
}

.shipping-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
  font-weight: 600;
}

.shipping-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
    BULK & CORPORATE ORDERS
    ============================================ */

.bulk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.bulk-card {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.bulk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(201, 168, 106, 0.15);
  border-color: var(--accent-gold);
}

.bulk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(201, 168, 106, 0.05));
  margin-bottom: var(--spacing-md);
  font-size: 2rem;
}

.bulk-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
  font-weight: 600;
}

.bulk-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ============================================
    FAQ ACCORDION
    ============================================ */

.faq-container {
  margin-top: var(--spacing-lg);
}

.faq-item {
  background: var(--bg-card);
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-item.active .faq-question {
  background: var(--accent-gold);
  color: var(--text-dark);
}

.faq-question {
  width: 100%;
  padding: var(--spacing-lg);
  text-align: left;
  background: var(--bg-card);
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--border-light);
}

.faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-answer[hidden] {
  display: none;
}

/* ============================================
    HIGH CONTRAST OVERRIDES FOR DARK SECTIONS
    ============================================ */

section[style*="var(--primary-dark)"] .section-header h2,
section[style*="var(--primary-dark)"] .section-header p {
  color: var(--text-on-dark);
}

section[style*="var(--primary-dark)"] .section-header p {
  color: var(--text-on-dark-muted);
}

section[style*="var(--primary-dark)"] .filter-btn {
  color: var(--text-on-dark);
}

section[style*="var(--primary-dark)"] .filter-btn.active,
section[style*="var(--primary-dark)"] .filter-btn:hover {
  color: var(--primary-dark);
}

footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-light);
  padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-lg);
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================ */

.breadcrumb-nav {
  padding: var(--spacing-sm) var(--spacing-lg);
  background: transparent;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--spacing-sm);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumb-item a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-item a:hover {
  color: var(--accent-gold);
}

.breadcrumb-item.active {
  color: var(--text-medium);
  font-weight: 500;
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: var(--spacing-sm);
  }
  .breadcrumb-list {
    font-size: 0.85rem;
  }
}
