/* ==========================================================================
   Aurosa Jewelry Design System & Style Sheet
   ========================================================================== */

/* Variables */
:root {
  --color-dark: #111111;
  --color-light-dark: #1C1C1C;
  --color-sand: #F4ECE1;
  --color-cream: #FCFBF9;
  --color-gold: #D4AF37;
  --color-gold-hover: #C59B27;
  --color-text-dark: #222222;
  --color-text-light: #777777;
  --color-emerald: #1F3F32;
  --color-white: #FFFFFF;
  --color-border: #E8E5DF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

section[id] {
  scroll-margin-top: 90px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
  background: #D5C9B5;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.btn-primary:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-dark);
  border: 1px solid var(--color-gold);
}
.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.btn-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
  letter-spacing: 0.15em;
}
.btn-dark:hover {
  background-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-link {
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  position: relative;
}
.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: calc(100% - 2rem);
  height: 1px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}
.btn-link:hover::after {
  background-color: var(--color-gold);
  width: 50%;
  left: 25%;
}

/* Typography Utility */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--color-dark);
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  max-width: 600px;
  margin: 0 auto;
}

.section-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

/* -----------------------------------------
   Header & Navigation
   ----------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1005;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-white);
  position: relative;
  padding: 0.5rem 0;
}

.main-header.scrolled .nav-link {
  color: var(--color-dark);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-gold) !important;
}

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

/* Logo */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: var(--color-white);
  position: relative;
  z-index: 1010;
}

.main-header.scrolled .logo-container {
  color: var(--color-dark);
}

.logo-icon {
  transition: var(--transition-smooth);
}

.logo-container:hover .logo-icon {
  transform: rotate(45deg) scale(1.05);
  color: var(--color-gold);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  margin-top: 0.1rem;
}

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

.cart-btn {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  color: var(--color-white);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1010;
}

.main-header.scrolled .cart-btn {
  color: var(--color-dark);
  border-color: rgba(0, 0, 0, 0.15);
}

.cart-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-white) !important;
  border-color: var(--color-gold);
}

.cart-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.cart-count {
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.cart-btn:hover .cart-count {
  background-color: var(--color-white);
  color: var(--color-gold);
}

/* Mobile Toggle button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 1010; /* Ensure button stays on top of menu */
}

.mobile-menu-btn svg line {
  transition: var(--transition-smooth);
  transform-origin: center;
}

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

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

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

.main-header.scrolled .mobile-menu-btn {
  color: var(--color-dark);
}

/* Header open drawer styles */
.main-header.drawer-open .nav-link,
.main-header.drawer-open .logo-container,
.main-header.drawer-open .mobile-menu-btn,
.main-header.drawer-open .cart-btn {
  color: var(--color-dark) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
}

.main-header.drawer-open .logo-container {
  position: relative;
  z-index: 1010; /* Ensure centered logo stays visible above white mobile drawer */
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
  padding: 8rem 2.5rem 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  z-index: 999;
  transition: var(--transition-smooth);
}

.mobile-drawer.open {
  left: 0;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.8rem;
}

.mobile-nav-link:hover {
  color: var(--color-gold);
  padding-left: 0.5rem;
}

/* -----------------------------------------
   Hero Section
   ----------------------------------------- */
.hero-section {
  height: 100vh;
  min-height: 750px;
  position: relative;
  background-image: url('assets/images/hero_bg.png');
  background-size: cover;
  background-position: center 25%;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  color: var(--color-white);
  padding-top: 4rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  animation: slideUp 1.2s ease forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  max-width: 520px;
  margin-bottom: 2.8rem;
  opacity: 0.9;
  line-height: 1.8;
  animation: slideUp 1.2s ease 0.2s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: slideUp 1.2s ease 0.4s forwards;
}

/* Floating Images on Hero Right */
.hero-images-container {
  position: relative;
  height: 480px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.hero-img-wrapper {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-img-wrapper:hover .hero-prod-img {
  transform: scale(1.08);
}

.img-top {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 40%;
  z-index: 5;
}

.img-bottom {
  width: 250px;
  height: 330px;
  bottom: 5%;
  right: 5%;
  z-index: 4;
}

.img-top:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 6;
}

.img-bottom:hover {
  transform: translateY(-8px) scale(1.02);
}

/* -----------------------------------------
   About Section
   ----------------------------------------- */
.about-section {
  padding: 8rem 0;
  background-color: var(--color-white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Asymmetric Image Layout */
.about-images {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
}

.about-img-left, .about-img-right {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
}

.about-img-left {
  width: 220px;
  height: 220px;
  position: absolute;
  left: 0;
  top: 8%;
  z-index: 3;
  transition: var(--transition-smooth);
}

.about-img-right {
  width: 320px;
  height: 420px;
  position: absolute;
  right: 4%;
  bottom: 4%;
  z-index: 2;
  transition: var(--transition-smooth);
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-images:hover .about-img-left {
  transform: translateY(-5px);
}
.about-images:hover .about-img-right {
  transform: translateY(5px);
}
.about-images:hover img {
  transform: scale(1.04);
}

/* About Text */
.about-text {
  padding-right: 2rem;
}

.about-text .btn {
  margin-top: 1rem;
}

/* Features Row */
.features-row {
  max-width: 1200px;
  margin: 7rem auto 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateY(-5px);
  background-color: var(--color-cream);
}

.feature-icon-wrapper {
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.08);
  transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
  background-color: var(--color-gold);
  color: var(--color-white);
  transform: rotateY(180deg);
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-dark);
}

/* -----------------------------------------
   Collections Section
   ----------------------------------------- */
.collections-section {
  padding: 7rem 0;
  background-color: var(--color-sand);
}

.collections-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.collection-card {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  display: block;
}

.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.collection-card-label {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 2.2rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

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

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(212, 175, 55, 0.75) 0%, rgba(0,0,0,0) 100%);
}

.collection-card:hover .collection-card-label {
  background-color: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* -----------------------------------------
   Gallery Section
   ----------------------------------------- */
.gallery-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--color-white) 0%, #D8E5DF 100%);
}

.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  background-color: var(--color-white);
}

.gallery-item.item-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(212, 175, 55, 0.1);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* -----------------------------------------
   Testimonials Section
   ----------------------------------------- */
.testimonials-section {
  padding: 7rem 0;
  background-color: var(--color-white);
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0; /* Prevent flex shrinking to fix sliding alignment offsets */
  padding: 3rem;
  background-color: var(--color-sand);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-premium);
  position: relative;
}

.quote-icon {
  color: var(--color-gold);
  margin-bottom: 2rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--color-dark);
  max-width: 850px;
  width: 100%;
  margin-bottom: 2.2rem;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text-dark);
  text-transform: uppercase;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E2D7C8;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.dot::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
}

.dot.active {
  background-color: var(--color-gold);
  width: 26px;
  border-radius: 10px;
}

/* -----------------------------------------
   Blogs Section
   ----------------------------------------- */
.blogs-section {
  padding: 7rem 0;
  background-color: var(--color-sand);
}

.blogs-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

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

.blog-img-wrapper {
  height: 250px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.blog-info {
  padding: 2rem 2.2rem;
}

.blog-meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.45;
  font-weight: 400;
  margin-top: 0.8rem;
}

.blog-title a:hover {
  color: var(--color-gold);
}

/* -----------------------------------------
   Contact Section
   ----------------------------------------- */
.contact-section {
  position: relative;
  padding: 9rem 0;
  background-color: var(--color-dark);
  overflow: hidden;
}

.contact-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
}

.contact-card {
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info-col {
  padding: 4.5rem;
  background-color: var(--color-cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  color: var(--color-gold);
  margin-top: 0.2rem;
}

.detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}

.detail-val {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-dark);
}
.detail-val:hover {
  color: var(--color-gold);
}

/* Contact Form Column */
.contact-form {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.form-input, .form-textarea {
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  color: var(--color-dark);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  width: 100%;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #A9A49B;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--color-gold);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* -----------------------------------------
   Subscribe Newsletter Section
   ----------------------------------------- */
.newsletter-section {
  padding: 6rem 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.newsletter-container {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
}

.newsletter-input {
  flex-grow: 1;
  background-color: var(--color-cream);
  border: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--color-dark);
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  border-color: var(--color-gold);
  background-color: var(--color-white);
}

.newsletter-form .btn {
  padding-left: 2.8rem;
  padding-right: 2.8rem;
}

/* -----------------------------------------
   Footer
   ----------------------------------------- */
.footer {
  background-color: var(--color-dark);
  color: #B5B0A6;
  padding: 6.5rem 0 0 0;
  font-size: 0.85rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.col-brand {
  gap: 1.2rem;
}

.footer-logo {
  color: var(--color-white);
  align-items: flex-start;
}

.footer-tagline {
  line-height: 1.8;
  font-weight: 300;
}

.footer-heading {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 0.3rem;
}

.footer-address {
  font-style: normal;
  line-height: 1.8;
  font-weight: 300;
}

.address-tel, .address-hours {
  display: inline-block;
  margin-top: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.social-icon-link:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 5rem;
  padding: 2.2rem 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 300;
}

/* -----------------------------------------
   Animations
   ----------------------------------------- */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: slideUp 1s ease forwards;
}

/* Scroll reveal initial state */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Laptop / Desktop Small */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.25rem;
  }
  
  .hero-container {
    gap: 2rem;
  }
  
  .about-container {
    gap: 4rem;
  }
  
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Tablet (Portrait) */
@media (max-width: 991px) {
  html {
    font-size: 15px;
  }

  section[id] {
    scroll-margin-top: 80px;
  }

  .main-header {
    padding: 1.2rem 0;
  }
  
  .header-container {
    padding: 0 2rem;
  }
  
  .nav-left {
    display: none; /* Hide desktop left nav */
  }
  
  .desktop-only {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block; /* Show mobile burger */
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-start;
    padding-top: 8.5rem; /* Prevents hero title from overlapping fixed mobile header */
    padding-bottom: 4rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 0;
    gap: 2.5rem;
  }

  .hero-content {
    padding-top: 0;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-images-container {
    justify-content: center;
    height: 400px;
    margin-top: 1.5rem;
  }
  
  .img-top {
    right: 48%;
  }
  
  .img-bottom {
    right: 12%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .about-images {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-img-right {
    right: 10%;
  }
  
  .about-text {
    padding-right: 0;
  }
  
  .about-text .btn {
    margin-left: auto;
    margin-right: auto;
  }
  
  .features-row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4rem;
  }
  
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  
  .gallery-item.item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
  }
  
  .testimonials-slider {
    padding: 2rem 0;
  }
  
  .testimonial-text {
    font-size: 1.25rem;
  }
  
  .blogs-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-card {
    grid-template-columns: 1fr;
  }
  
  .contact-info-col {
    padding: 3rem;
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (Landscape & Portrait) */
@media (max-width: 576px) {
  .main-header {
    padding: 1rem 0;
  }

  .header-container {
    padding: 0 1.25rem;
  }
  
  .logo-icon {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
  }
  
  .cart-label {
    display: none; /* Hide "CART" text to save space */
  }

  .hero-section {
    padding-top: 7.5rem; /* Generous top spacing on mobile screens */
    padding-bottom: 3.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1.25rem;
  }
  
  .hero-actions .btn:not(.btn-link) {
    width: 100%;
  }

  .hero-actions .btn-link {
    width: auto;
    align-self: center;
  }
  
  .hero-images-container {
    height: 320px;
  }
  
  .img-top {
    width: 150px;
    height: 150px;
    right: 42%;
  }
  
  .img-bottom {
    width: 180px;
    height: 240px;
    right: 8%;
  }
  
  .about-images {
    height: 400px;
  }
  
  .about-img-left {
    width: 160px;
    height: 160px;
  }
  
  .about-img-right {
    width: 240px;
    height: 320px;
  }
  
  .features-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .gallery-item.item-large {
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .testimonials-container {
    padding: 0;
  }

  .testimonial-card {
    padding: 2.5rem 1.5rem;
    border-radius: 0; /* Align card edge fully to screen on mobile */
  }
  
  .testimonial-text {
    font-size: 1.15rem;
  }
  
  .blogs-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info-col {
    padding: 2rem 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 0 1.5rem;
  }
}
