:root {
  --gold-1: #F3B600;
  --gold-2: #C07A00;
  --bg: #162a31;
  --surface: #F6F2EC;
  --muted: #7A6A4A;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: var(--surface);
  color: #333;
}

.container {
  width: min(1200px, 94%);
  margin: 0 auto;
}
.page-inner h1{
font-size: 2.5rem;
  text-align: center;
  color: #a47c48; /* Gold tone */
  margin-bottom: 1rem;
}

.page-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

/* Style the input fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* Style the submit button */
.wpcf7 input[type="submit"] {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: white;
  padding: 12px 22px;
  margin-top: 18px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 18px;
  font-weight: 700;
  cursor: pointer;
  font-size: 18px;
}

.wpcf7 input[type="submit"]:hover {
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1)); /* Reverse gradient */
  transform: scale(1.05); /* Slightly bigger */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.6); /* Gold glow */
    font-size: 18px;

}

.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
}

.wpcf7-form p {
  margin-bottom: 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;

  /*background: linear-gradient(90deg, #6a0dad, #ff9900);*/
  /*background: linear-gradient(180deg, rgba(15,17,20,0.9), rgba(15,17,20,0.8));*/
  /*background: linear-gradient(90deg, rgba(22, 42, 49, 0.2), rgba(22, 42, 49, 0.6));*/
  background: #fff;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);

}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand img {
  width: 200px;
  height: 150px;
  object-fit: contain;
  display: block;
  background: transparent;
  padding: 4px;
}

.header-contacts {
  text-align: right;
  gap: 12px;
  color: var(--muted);
  font-size: 16px;
  padding-bottom: 20px;
}

.header-contacts a {
  color: #333;
  text-decoration: none;
  padding: 6px 8px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
}

.header-contacts a i {
  color: #333;
}
.top-header{
  text-align: center;
  background-color: var(--gold-1);
  padding: 1px;
  font-weight: 600;
}

.header-wrapper{
  width : min(1200px, 94%);
  margin-left: auto;
  margin-right: auto;
}
.main-nav .close-icon{
    display: none;
}
/* Nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--gold-1);
  font-size: 28px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin: 0;
}

.main-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 10px;
  font-size: 16px;
}

.main-nav a:hover {
  color: var(--gold-2);
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
}

.banner-image-wrapper {
  position: relative;
  width: 100%;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/*.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}*/

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 1rem;
  max-width: 90%;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.banner-content .lead {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.banner-content .btn {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: white;
  padding: 12px 22px;
  margin-top: 18px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 18px;
  font-weight: 700;
}

.banner-content .btn:hover {
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1)); /* Reverse gradient */
  transform: scale(1.05); /* Slightly bigger */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.6); /* Gold glow */
}

.story-content .btn {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: white;
  padding: 12px 22px;
  margin-top: 18px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 18px;
  font-weight: 700;
}

.story-content .btn:hover {
  background: linear-gradient(90deg, var(--gold-2), var(--gold-1)); /* Reverse gradient */
  transform: scale(1.05); /* Slightly bigger */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.6); /* Gold glow */
  color: #fff;
}



/* Sections */
.section {
  padding: 60px 0;
  background: var(--surface);
  color: #333;
}

.section h2 {
  color: var(--gold-2);
  margin: 0 0 20px 0;
  font-size: 28px;
}

/* Featured */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 18px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 20, 25, 0.06);
  transition: transform .28s ease;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 16px;
}

.card a {
  margin: 0 0 8px 0;
  font-size: 18px;
  text-decoration: none;
  color: #333 ;
}
.card::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.3s ease;
}
.card:hover::after {
  width: 100%;
}







.card p {
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 14px;
}

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

/* Collections */
.collections-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(15, 20, 25, 0.06);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}

.filter-btn.active {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #FFF;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(15, 20, 25, 0.06);
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h4 {
  margin: 12px 0 6px 0;
  color: #333;
  font-size: 16px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-card a {
  text-decoration: none;
}
.product_meta{
  margin-top: 10px;
}


/* USP */
.usp {
  background: #f9f9f9;
  padding: 60px 20px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.usp-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.usp-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.usp-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--gold-2); /* matches vibrant header style */
}

.usp-item i {
  font-size: 2rem;
  margin-right: 10px;
  color: #d4af37; /* gold tone */
}

.usp-item p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}


/* Testimonials (kept on page but not in menu) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.06);
  color: #333;
}

.testimonial p {
  color: #333;
  margin: 10px 0 0 0;
  line-height: 1.5;
  font-size: 14px;
}

.testimonial h5 {
  margin: 0;
  color: var(--gold-2);
  font-size: 20px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px 0;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(246, 242, 236, 0.95), rgba(246, 242, 236, 0.95));
}

.footer-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  text-align: center;
  flex: 1;
  min-width: 180px;
  padding: 10px;
}

.footer-links h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--muted); /* Footer heading color */
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--muted); /* Link color */
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffcc00; /* Hover effect color */
}
.footer-info{
  text-align: center;
}
.footer-info a {
  margin: 0 10px;
  color: var(--gold-2);
  text-decoration: none;
  font-size: 28px;
  display: inline-block;
  transition: transform .12s ease;
}

.footer-info img {
    width: 24px;
    height: 24px;
    margin: 0 8px;
    transition: transform 0.3s ease;

}


.footer-logo {
  height: 120px;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

/* Footer social icons bigger */
.socials a {
  margin: 0 10px;
  color: var(--gold-2);
  text-decoration: none;
  font-size: 28px;
  display: inline-block;
  transition: transform .12s ease;
}

/* Icon sizing */
.btn-outline i,
.btn i {
  font-size: 16px;
}

/*Story*/
.story {
  padding: 60px 20px;
  background: #fff;
}

.story-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.story-media {
  flex: 1 1 50%;
}

.story-media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.story-content {
  flex: 1 1 50%;
}

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.story-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.footer-bottom{
    background-color: #F4B400;
    color: #333;
    text-align: center;
    padding : 1px;
    font-size: 16px;
    font-weight: bold;
}
.about-us {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  color: #333;
  line-height: 1.8;
}

.about-us h1 {
  font-size: 2.5rem;
  text-align: center;
  color: #a47c48; /* Gold tone */
  margin-bottom: 1rem;
}

.about-us h2 {
  font-size: 1.5rem;
  text-align: center;
  color: #555;
  font-weight: 400;
  margin-bottom: 2rem;
}

.about-us h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #a47c48;
  border-left: 4px solid #a47c48;
  padding-left: 0.5rem;
}

.about-us p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-us ul {
  list-style: none;
  padding: 0;
}

.about-us ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.about-us ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #a47c48;
  font-size: 0.9rem;
}

.about-quote {
  margin-top: 3rem;
  text-align: center;
}

.about-quote blockquote {
  font-style: italic;
  font-size: 1.3rem;
  color: #555;
  border-top: 2px solid #a47c48;
  border-bottom: 2px solid #a47c48;
  padding: 1.5rem;
  display: inline-block;
}


/*category page*/
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3{
  color: #333 !important;
}
.woocommerce ul.products li.product span.price{
  display: none;
}
.woocommerce ul.products li.product a.add_to_cart_button{
  display: none;
}



/*product page css*/
.product-page-wrapper{
  max-width: 1700px;
  margin: 0 auto;
}
.woocommerce-product-gallery__trigger{
  display: none;
}
.product-detail-right{
  float: right;
  width: 50%;
}
.woocommerce-breadcrumb{
  margin : 1em 1em 1em 1em !important;
  font-size: 14px !important;
  font-weight: 600;
  color: var(--gold-2) !important;
}
.woocommerce-breadcrumb a{
  margin : 1em 1em 1em 1em !important;
  font-size: 18px !important;
  color: var(--gold-2) !important;
}
.woocommerce div.product div.images .flex-control-thumbs li{
  width: 17% !important;
}
.woocommerce div.product div.images .flex-control-thumbs{
  margin-top: 15px;
}
.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1){
  margin-left: 0px;
}
.woocommerce div.product div.images .flex-control-thumbs li{
  margin-left: 10px;
}
.product-attributes {
  margin-top: 2rem;
}

.product-attributes h3 {
  font-size: 1.3rem;
  color: #a47c48;
  margin-bottom: 1rem;
  border-bottom: 2px solid #a47c48;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.product-attributes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-attributes li {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #eee;
}

.product-attributes strong {
  font-weight: 600;
  color: #333;
}



/* Responsive */
@media (max-width: 768px) {

  .banner-image-wrapper,
  .header-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }



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

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

    .testimonials-grid {
      grid-template-columns: 1fr 1fr;
    }
    .brand img {
    width: 150px;
    height: 100px;
  }
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media (max-width: 480px) {

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

  .nav-toggle {
    display: block;
  }

 

  .main-nav {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1000;
    height: 100vh;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start; /* optional */
  }
  .main-nav.open {
    display: block;
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .main-nav ul li{
    width: 100%;
  }


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

  .banner h1 {
    font-size: 22px;
  }
  .banner-content .lead{
    font-size: 15px;
  }
  .banner-content .btn{
    font-size: 12px;
  }

  .header-inner {
    gap: 12px;
  }
  .banner-image{
    height: 250px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .banner-inner {
    padding: 60px 0;
  }

  .header-contacts {
    display: none;
  }
  .main-nav .close-icon{
      display: block;
      float: right;
      margin-top: 10px;
      margin-right: 10px;
      cursor: pointer;
      align-self: flex-end;
  }
  .close-icon img{
    width: 25px;
    height: 25px;
  }

  .section h2{
    font-size: 24px;
  }
  .page-inner h1
  {
    font-size: 2.0rem;
  }
  .page-wrapper {
    padding: 15px;
  }

}




/*Remove certian sections from product page*/

.widget_product_search,
.woocommerce-product-search {
    display: none !important;
}
#sidebar{
  display: none;
}
.related{
  display: none;
}
.woocommerce-tabs{
  display: none;
}