@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');
html{
  scroll-behavior: smooth;
}
:root {
  --gold: #C9A84C;
}
body {
  font-family: sans-serif;
  background: #FFFDF8;
  margin: 0;
}

.knewave-regular {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
}
.irish-grover-regular {
  font-family: "Irish Grover", system-ui;
  font-weight: 400;
  font-style: normal;
}

.dancing-script {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}
/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255, 253, 248, 0.95);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.3);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1a1611;
  text-decoration: none;
}

.nav-logo span {
  color: #C9A84C;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a4f3c;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #C9A84C;
}

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid #C9A84C;
  color: #C9A84C;
  background: transparent;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: #C9A84C;
  color: #fff;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1611;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

section {
    text-align: center;
    padding: 5rem 2rem;
}
h1 {
  font-size: 48px;
  color: #1a1611;
}

.request-btn {
  padding: 0.8rem 2rem;
  background-color: rgba(201, 174, 19, 0.699);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.request-btn :hover{
  background-color: rgba(201, 174, 19, 0.37);
}
.hero-section{
  background: #F5EDD8;
}
/* ---- SHARED SECTION STYLES ---- */
.section {
  padding: 80px 40px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A84C;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  text-align: center;
  color: #1a1611;
  margin-bottom: 50px;
}

.section-title em {
  font-style: italic;
  color: #C9A84C;
}
/* ---- PRODUCT GALLERY ---- */
.product-gallery {
  background: #FFFDF8;
}
.swipe-hint {
  display: none; 
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: #ffffff;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(26, 22, 17, 0.08);
}

.product-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

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

.product-info {
  padding: 18px 20px 22px;
  text-align: center;
}

.product-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a1611;
  margin-bottom: 6px;
}

.product-price {
  font-size: 15px;
  color: #C9A84C;
  font-weight: 500;
  margin-bottom: 16px;
}

.btn-view {
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px;
  background: transparent;
  color: #1a1611;
  border: 1px solid #1a1611;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: all 0.25s;
}

.btn-view:hover {
  background: #1a1611;
  color: #fff;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 860px;
  margin: 0 auto;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
}

.step-card {
  padding: 40px 32px;
  background: #FFFDF8;
  transition: background 0.25s;
}

.step-card:hover {
  background: #F7F0DC;
}

.step-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.4);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1611;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #5a4f3c;
  line-height: 1.8;
}
/*---- POPULAR FINDS ----*/
.popular-finds {
  background: #F5EDD8;
}

.finds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.find-card {
  background: #ffffff;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s;
}

.find-card:hover {
  transform: translateY(-5px);
}

.find-icon {
  font-size: 24px;
  color: #C9A84C;
  margin-bottom: 16px;
}

.find-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a1611;
  margin-bottom: 8px;
}

.find-card p {
  font-size: 13px;
  color: #9a8d76;
  line-height: 1.7;
  margin-bottom: 16px;
}

.find-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A84C;
  border: 0.5px solid rgba(201, 168, 76, 0.4);
  padding: 4px 12px;
}
/* ---- PRODUCT REQUEST ---- */
.product-request {
  background: #1a1611;
}

.section-title.light {
  color: #ffffff;
}

.section-title.light em {
  color: #C9A84C;
}

.product-request .section-label {
  color: rgba(201, 168, 76, 0.8);
}

.request-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  padding: 14px 16px;
  color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C9A84C;
}

.form-group select option {
  background: #1a1611;
  color: #ffffff;
}

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

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.btn-submit {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 48px;
  background: #C9A84C;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  transition: opacity 0.2s;
  width: 100%;
}

.btn-submit:hover {
  opacity: 0.85;
}

.form-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  letter-spacing: 0.04em;
}
.file-upload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 0.5px dashed rgba(201, 168, 76, 0.4);
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.file-upload:hover {
  border-color: #C9A84C;
  background: rgba(201, 168, 76, 0.08);
}

.file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.file-upload-icon {
  font-size: 20px;
}

.file-upload-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.preview-img {
  display: none;
  max-width: 160px;
  max-height: 160px;
  margin-top: 12px;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  object-fit: cover;
}
.form-success {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #C9A84C;
  padding: 40px 20px;
  line-height: 1.6;
}
/* ---- WHY US SECTION ----*/
.af-trust{
  background: #ffffff;
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 860px;
  margin: 0 auto;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
}
.trust-card{
  padding: 40px 32px;
  background: #FFFDF8;
  transition: background 0.25s;
}
.trust-card h4{
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a1611;
  margin-bottom: 10px;
}
.trust-card p{
  font-size: 14px;
  color: #5a4f3c;
  line-height: 1.8;
}

/*---- TESTIMONIALS ----*/
.testimonials{
  background: #F5EDD8 ;
}
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 860px;
  margin: 0 auto;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
}
.testimonials-card{
  padding: 40px 32px;
  background: #FFFDF8;
  transition: background 0.25s;
}
.testimonials p{
  font-size: 14px;
  color: #5a4f3c;
  line-height: 1.8;
}
.testimonial-icon{
  font-size: 20px;
  color: #C9A84C;
  margin-bottom: 16px;
}
/*---- CTA ----*/
.cta h1{
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 400;
  color: #1a1611;
  margin-bottom: 10px;
}
.cta em{
  font-style: italic;
  color: #C9A84C;
}
.cta p{
  font-size: 14px;
  color: #5a4f3c;
  line-height: 1.8;
}
/* ---- FOOTER ---- */
.footer {
  background: #1a1611;
  color: rgba(255, 255, 255, 0.5);
  padding: 60px 40px 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #ffffff;
  font-weight: 400;
}

.footer-logo span {
  color: #C9A84C;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  max-width: 240px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.8);
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #C9A84C;
}

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

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

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
}

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

  .hamburger{
    display: flex;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFDF8;
    padding: 24px;
    gap: 20px;
    border-bottom: 0.5px solid rgba(201, 168, 76, 0.3);
  }

  .nav {
    padding: 16px 20px;
    position: relative;
 }
}
@media (max-width: 768px) {
  .swipe-hint {
    display: block;
    text-align: center;
    font-size: 11px;
    color: #9a8d76;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .gallery-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 20px 20px;
    margin: 0 -20px; 
    scrollbar-width: none;
    -ms-overflow-style: none; 
  }
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }
  .product-card {
    flex: 0 0 72vw; 
    scroll-snap-align: start;
    max-width: 280px;
  }

  .product-image {
    height: 200px;
  }

  .product-info h4 {
    font-size: 15px;
  }
   .product-price {
    font-size: 13px;
  }

  .hero {
    padding: 60px 20px 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .section {
    padding: 50px 20px;
  }

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

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

  .finds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex: 0 0 80vw; 
  }
  .hero h1 {
    font-size: 30px;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns button {
    width: 100%;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}