@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  /* Colors */
  --primary: #c5a46d;
  --light-color: #f1f1f1;
  --ltbrwn: #ffefd3;
  /* Light grey for backgrounds */
  --text-color-h: #1a1a1a;
  /* Darker grey for headers */
  --text-color-p: #333333;
  /* Body text color */
  --white-color: #fff;
  /* White for contrasting text */
  /* Typography */
  --font-family: "Roboto", sans-serif;
  --font-size-sm: 14px;
  --font-size-nm: 16px;
  /* Base font size */
  --font-size-md: 24px;
  --font-size-lg: 38px;
  --font-size-xl: 58px;
  --line-height: 1.3;
  /* Comfortable reading */
  /* Spacing */
  --spacing-h: 0.5rem;
  --spacing: 1rem;
  --spacing-2x: 2rem;
  --spacing-3x: 3rem;
  --spacing-4x: 4rem;
  --spacing-s: 8rem;
  /* Border */
  --border: 1px solid #dddddd;
  --border-radius: 8px;
  --border-radius-r: 32px;
  /* Transition */
  --transition: all 0.5s ease;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

html {
  font-size: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-nm);
  line-height: var(--line-height);
  color: var(--text-color-p);
  font-weight: 500;
  scroll-behavior: smooth;
  letter-spacing: 1px;
  overflow-x: hidden;
}

/* Global Elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color-h);
}

h1 {
  font-size: var(--font-size-xl);
}

.flex {
  display: flex;
}

.center {
  align-items: center;
}

.wrap {
  flex-wrap: wrap;
}

img {
  width: 100%;
}

.txt-style {
  color: #fff;
  background: var(--primary);
  box-shadow: 4px 4px 1px 0px rgba(128, 107, 71, 0.75);
  padding: .3rem;
}

.heading_section {
  text-align: center;
  margin-bottom: var(--spacing-4x);
}

.heading_section h2 {
  margin-bottom: var(--spacing);
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

a:hover {
  color: var(--accent-color);
}

.btn {
  padding: var(--spacing-h) var(--spacing);
  border: var(--border);
  border-radius: var(--border-radius);
  display: inline-block;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--primary);
  color: var(--white-color);
}

/* Section Styles */
section {
  padding-block: var(--spacing-2x);
  min-height: 100vh;
}

.container {
  width: 90%;
  margin: 0 auto;
}

/* Header Styles */
header {
  padding-block: var(--spacing);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  color: var(--white-color);
  transition: var(--transition);
}

header .nav {
  /* desktop already has flex row; override on mobile below */
  transition: transform .3s ease, opacity .3s ease;
}

.nav-close {
  display: none;
}

header.hidden {
  top: -100%;
}

header.active {
  color: var(--text-color-h);
  background-color: var(--white-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: var(--border);
  border-radius: var(--border-radius-r);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

header .container .logo {
  border-right: var(--border);
  border-radius: var(--border-radius-r);
  padding: var(--spacing-h) var(--spacing-2x);
}

header .container ul {
  display: flex;
  gap: var(--spacing);
}

header .container ul li {
  padding: var(--spacing-h) var(--spacing-2x);
  border-right: var(--border);
  border-left: var(--border);
  border-radius: var(--border-radius-r);
  cursor: pointer;
}

header .container ul li:last-child {
  border-right: none;
}

header .container .menu_btn {
  display: none;
}

section#hero {
  text-align: center;
  color: var(--white-color);
  padding: var(--spacing-s) 0 var(--spacing);
  position: relative;
  z-index: 1;
}

section#hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

section#hero .hero_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -2;
}

section#hero .container h1 {
  color: var(--white-color);
  margin-block: var(--spacing);
}

section#hero .container>p {
  width: 50%;
  margin: 0 auto;
  text-align: left;
  color: var(--light-color);
}

section#hero .hero_bottom_fix {
  margin-top: var(--spacing-s);
}

section#hero .hero_bottom_fix .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

section#hero .hero_bottom_fix .container .card {
  padding: var(--spacing);
  border: var(--border);
  border-radius: var(--border-radius);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  text-align: left;
  width: 300px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

section#hero .hero_bottom_fix .container .card h3 {
  color: var(--white-color);
  margin-bottom: var(--spacing);
}

section#hero .hero_bottom_fix .container .card p {
  color: var(--light-color);
}

section#hero .hero_bottom_fix .container .scroll_down {
  display: grid;
  place-content: center;
  width: 80px;
  height: 80px;
  border: var(--border);
  border-radius: 100%;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  cursor: pointer;
  font-size: var(--font-size-md);
}

/* About Section */
#about {
  background: linear-gradient(to right, #fcfaf8, #fff6ee);
  padding: 4rem 0;
}

.about-box {
  gap: 4rem;
  align-items: center;
}

.about-info {
  width: 40%;
  position: relative;
}

.heading_ h2 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #C5A46D;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.heading_ h3 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2D2D2D;
}

.about-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  background-color: #C5A46D;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.5s;
}

.cta-btn:hover {
  background-color: #B08F5E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover::after {
  left: 100%;
}

.about_img {
  width: 50%;
  position: relative;
  min-height: 400px;
}

.img-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  height: 100%;
}

.abt-1 {
  grid-row: 1 / 3;
  grid-column: 1;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.abt-2,
.abt-3 {
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.abt-2 {
  grid-row: 1;
  grid-column: 2;
}

.abt-3 {
  grid-row: 2;
  grid-column: 2;
}

.img-container:hover img:not(:hover) {
  transform: scale(0.98);
  opacity: 0.9;
}

.img-container img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

section#menu .product_lists {
  display: block;
}

.product_lists .swiper-slide {
  width: auto;
  /* let Swiper set the slide width */
  flex-shrink: 0;
  /* don’t let slides collapse */
  box-sizing: border-box;
}

section#menu .product_lists .product {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

section#menu .product_lists .product .product_image {
  height: 250px;
  overflow: hidden;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

section#menu .product_lists .product .product_image:hover img {
  transform: scale(1.1);
}

section#menu .product_lists .product .product_image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: var(--transition);
}

section#menu .product_lists .product .product_details {
  padding: var(--spacing);
}

section#menu .product_lists .product .product_details h4 {
  text-transform: capitalize;
}

section#menu .product_lists .product .product_details p {
  margin-bottom: 2.5rem;
  height: 15px;
  font-size: .85rem;
  font-weight: 400;
}

.product_details .btn {
  margin-bottom: 1.4rem !important;
  font-size: .85rem;
  padding: .4rem;
  font-weight: 400;
}

.swiper-button-prev,
.swiper-button-next {
  color: black;
  background: var(--primary);
  padding: 2rem;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.25rem;
  font-weight: 700;
}

.store-link {
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}

.store-link a {
  border: var(--border);
  border-radius: var(--border-radius);
  padding: var(--spacing-h) var(--spacing);

}

/* TESTIMONIAL */
#testimonials {
  min-height: 0;
  margin-bottom: 5rem;
}

.review-container {
  overflow: hidden;
  position: relative;
  gap: 1.5rem;
}

.scrolling-wrapper {
  display: flex;
  align-items: center;
  /* no wrapping, prevent shrinking */
  flex-wrap: nowrap;
  gap: 1.5rem;
  /* same gap you had */
  animation: scroll-left 20s linear infinite;
}

.review-card {
  justify-content: center;
  max-width: 400px;
  border: 1px solid rgb(219, 219, 219);
  padding: 1rem;
  border-radius: 13px;
  height: 220px;
}

.review-bio {
  margin-top: 1rem;
  gap: 1.5rem;
}

.review-card h4 {
  font-size: 1rem;
}

.review-card p {
  margin-top: 1.5rem;
  font-size: .85rem;
}

.review-bio img {
  width: 3.5rem;
  border-radius: 50%;
}

/* ensure each card doesn’t shrink and keeps its width */
.scrolling-wrapper .review-card {
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.close-sale-contain {
  justify-content: center;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.close-sale {
  gap: 5rem;
  width: 90%;
}

.close-sale h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-transform: capitalize;
  width: 60%;
  line-height: 2.7rem;
}

.sale-img {
  padding: 3rem;
  background: var(--ltbrwn);
  box-shadow: 10px 10px 3px 0px rgba(197, 164, 109, 0.75);
  border-radius: 1rem;
  /* width: 50%; */
}

.sale-img img {
  width: 20rem;
}

.sale-info p {
  margin-bottom: 1rem;
}

.sale-link {
  color: var(--primary);
  margin-top: 2rem;
  padding-bottom: .2rem;
  border-bottom: 1px solid var(--primary);
  gap: .4rem;
  display: inline-flex;
  align-items: center;
}


/* CALL TO ACTION */
.call-to-action {
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}

.callto-container {
  background: var(--primary);
  color: #fff;
  padding: 4rem 2rem;
  width: 85%;
  justify-content: space-between;
  border-radius: 1.5rem;
}

.callto-container h3 {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.cta-info {
  gap: 2rem;
}

.cta-info img {
  width: 1rem;
  margin-right: .6rem;
}

.cta-contact {
  color: var(--primary);
  background: #fff;
  padding: .8rem 1.25rem;
  border-radius: 10px;
  margin-right: 2rem;
}


/* FOOTER */
section#footer {
  background-color: #292929;
  padding: var(--spacing-2x);
  color: #cccccc;
  min-height: 70vh;
  font-weight: 400;
}

section#footer h2 {
  color: var(--white-color);
}

section#footer h4 {
  color: var(--white-color);
  margin-bottom: 1rem;
}

.footer-brand h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.footer-main {
  padding: 3rem 0;
}

.footer-container {
  gap: 5rem;
}

.footer-brand {
  width: 50%;
}

.footer-brand img {
  width: 1.2rem;
}
.footer-brand p{
  margin-bottom: .25rem;
}
.foot-links {
  justify-content: space-between;
  width: 40%;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 1.5rem 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-links a {
  width: 3rem;
  height: 3rem;
  background: #6b6b6b;
  border-radius: 50%;
  justify-content: center;
}

.social-links img {
  /* margin-right: 1rem; */
  width: 1.2rem;
  height: 1.2rem;
}

.bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-links a {
  margin-left: 1rem;
  font-size: .9rem;
  text-decoration: none;
}


/* ===================================== */
/* Responsive Design */
/* ===================================== */
/* For tablets and large mobile devices */

@media (max-width: 992px) {
  .about-box {
    flex-direction: column;
    gap: 2rem;
  }

  .about-info,
  .about_img {
    width: 100%;
  }

  .about_img {
    min-height: 300px;
  }

  .heading_ h3 {
    font-size: 2rem;
  }

  .sale-img img {
    width: 12rem;
  }

  .close-sale h2 {
    width: 100%;
  }
}

@media (max-width: 868px) {
  .callto-container h3 {
    font-size: 1.2rem;
  }

  .sale-info p {
    margin-bottom: 0rem;
  }

  .cta-info {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-lg);
  }

  header .container ul,
  header .container .menu_btn {
    display: none;
  }

  header .container .menu_btn {
    display: block;
    border-left: var(--border);
    border-radius: var(--border-radius-r);
    padding: var(--spacing-h) var(--spacing-2x);
  }

  header ul.nav {
    color: #1a1a1a;

    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    padding: 2rem 3rem;
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    /* start off-screen right */
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 1000;
  }

  /* show when open */
  header ul.nav.open {
    transform: translateX(0);
    opacity: 1;
  }

  header ul.nav .nav-close {
    display: block;
    align-self: flex-end;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    cursor: pointer;
  }

  /* rest of your li’s */
  header ul.nav li:not(.nav-close) {
    border: none;
    padding: .75rem 0;
  }

  /* hide list‐items border on mobile */
  header .container ul.nav li {
    border: none;
    padding: .75rem 0;
  }

  /* close button styling */
  .nav-close {
    align-self: flex-end;
    cursor: pointer;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  /* show hamburger */
  header .container .menu_btn {
    display: block;
  }

  section#hero {
    text-align: left;
    display: block;
    padding-bottom: var(--spacing-2x);
  }

  section#hero .container h1 {
    margin-bottom: var(--spacing-2x);
  }

  section#hero .container>p {
    width: 100%;
  }

  section#hero .hero_bottom_fix {
    margin-top: var(--spacing-4x);
  }

  section#hero .hero_bottom_fix .container {
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-3x);
  }

  section#hero .hero_bottom_fix .container .card {
    padding: var(--spacing);
    width: 100%;
  }

  section#hero .hero_bottom_fix .container .scroll_down {
    width: 60px;
    height: 60px;
  }

  /* about */
  .about-inner {
    display: block;
  }

  .about-inner p {
    width: 100%;
    font-weight: 400;
  }

  .about-img {
    margin-top: 1.5rem;
    width: 100%;
  }

  .about-img img {
    width: 100%;
  }

  .img-container {
    grid-template-columns: 1fr;
  }

  .abt-1 {
    grid-row: 1;
    grid-column: 1;
    height: 300px;
  }

  .abt-2,
  .abt-3 {
    display: none;
  }

  .swiper-button-prev,
  .swiper-button-next {
    padding: 1.2rem;
    border-radius: 50%;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: .8rem;
  }

  .close-sale {
    flex-direction: column;
  }

  .sale-img {
    padding: 3rem;
    max-width: 75%;
    height: auto;
  }

  .sale-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .close-sale h2 {
    line-height: 2.5rem;
  }

  .callto-container {
    padding: 3rem 2rem;
    width: 90%;
    flex-wrap: wrap;
  }

  .cta-info {
    gap: 1rem;
  }

  .cta-contact {
    font-size: .9rem;
    padding: .7rem 1rem;
    border-radius: 10px;
    margin-right: 0rem;
  }

  .footer-brand {
    width: 100%;
  }

  .foot-links {
    width: 95%;
  }
}

/* For mobile devices */
@media (max-width: 480px) {
  section#hero .container>p {
    display: none;
  }
  section#hero .hero_bottom_fix .container .card {
margin-top:6.75rem ;
  }
  section#hero .hero_bottom_fix .container .scroll_down {
    display: none;
}
  .about-info p {
    font-size: .9rem;
  }

  .heading_ h3 {
    font-size: 1.5rem;
  }

  .cta-btn {
    font-size: .8rem;
    padding: .6rem 1.3rem;
  }

  .heading_section {
    margin-bottom: 2rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 2rem !important;
    height: 2rem !important;
  }

  .product_details p {
    font-size: .9rem;
  }

  .review-bio img {
    width: 3rem;
  }

  .review-card h4 {
    font-size: .9rem;
  }

  .review-card p {
    font-weight: 400;
  }

  .sale-img {
    padding: 1.6rem;
    max-width: 95%;
  }

  .close-sale {
    gap: 3rem;
  }

  .close-sale h2 {
    font-size: 1.3rem;
    width: 85%;
    gap: 3rem;
    margin-bottom: 1rem;
    line-height: 1.7rem;
  }

  .txt-style {
    padding: .2rem;
  }

  .sale-info p {
    font-size: .85rem;
  }

  .sale-info a {
    font-size: .9rem;
  }

  #testimonials {
    margin-bottom: 2rem;
  }

  .callto-container {
    padding: 1.6rem;
    width: 95%;
    justify-content: center;
  }

  .callto-container h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
  }

  .cta-info {
    gap: .5rem;
    font-size: .85rem;
    align-items: center;
  }

  .cta-contact {
    margin-top: 1.5rem;
    font-size: .85rem;
    padding: .6rem .8rem
  }

  .foot-links {
    gap: 1rem;
  }

  section#footer h4 {
    margin-bottom: .5rem;
  }

  .footer-container {
    gap: 3rem;
  }

  .footer-brand h2 {
    font-size: 1.3rem;
  }

  .footer-container p,
  .footer-column {
    font-size: .9rem;
  }

  .footer-bottom {
    font-size: .825rem;
  }

  .social-links a {
    width: 2.5rem;
    height: 2.5rem;
  }

  .social-links img {
    /* margin-right: 1rem; */
    width: 1rem;
    height: 1rem;
  }
}