/* ===============================
   ROOT VARIABLES
   =============================== */

:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --primary-color: #6B0F1A;
  --secondary-color: #D4AF37;
  --accent: #1E88E5;
  --light-bg: #f3e2e2;
  --dark-navy: #071c33;
  --dark-text: #1A1A1A;
  --text-gray: #777777;
}

/* ===============================
                NAVBAR
     =============================== */

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,162,77,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"
    );
}

.navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  background-color: white;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid rgb(63, 63, 63);
}

/* Scrolled state navbar (if needed)

.navbar-custom.scrolled {
  background: rgba(28, 28, 28, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
*/

.navbar .nav-link {
  color: var(--dark-navy) !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active {
  color: var(--secondary-color) !important;
  text-decoration: underline 2px;
  text-underline-offset: 5px;
}

.brand-logo {
  height: 50px;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #000;
}

.brand-name span {
  font-family: 'Playfair Display', serif;
  ;
  color: var(--primary-color);
}


.dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.dropdown-menu .dropdown-item.active {
  background-color: var(--primary-color);
  color: var(--secondary-color) !important;
}

.navbar .btn {
  border-radius: 5px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  border: none;
}

.navbar .btn:hover {
  background: var(--secondary-color);
  color: #000;
}


/* ===============================
   FOOTER
   =============================== */

.web-footer {
  background: linear-gradient(90deg, #000000cc 100%), url('../img/footer-bg.jpeg') center/cover no-repeat;
  color: #d6e3df;
}

.footer-logo {
  height: 50px;
}

.footer-brand h3 {
  color: #ffffff;
  font-weight: 700;
}

.footer-brand small {
  color: #b8d4c8;
  letter-spacing: 1px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 10px;
}

.footer-title {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #FFF;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--secondary-color);
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: transparent;
  color: #ffffff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1.5px solid #FFF;
  font-size: 14px;
  color: #FFF;
}


/* ===============================
            Responsive
     =============================== */

/* Fix mobile dropdown overlap */
@media (max-width: 991px) {

  .navbar-collapse {
    background: white;
    padding: 20px;
    margin-top: 10px;
    border-radius: 12px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 12px 0;
  }

  .web-footer {
    background: linear-gradient(90deg, #000000cc 100%), url('../img/footer-bg.jpeg')right center/cover no-repeat;
    color: #d6e3df;
  }
}

@media (max-width: 575px) {

  /* NAVBAR */
  .navbar-nav {
    gap: 0 !important;
    text-align: center;
  }

  .navbar .btn {
    width: 100%;
    margin: 10px 0 0;
  }

  .brand-logo {
    height: 40px;
  }

  .brand-name {
    font-size: 22px;
  }

  .web-footer {
    background: linear-gradient(90deg, #000000cc 100%), url('https://i.pinimg.com/1200x/96/45/b2/9645b26c4825a1605c3e4434d1be58b5.jpg') center/cover no-repeat;
  }

  /* FOOTER */
  .footer-logo {
    height: 40px;
  }

  .footer-text,
  .footer-links a,
  .footer-contact li {
    font-size: 14px;
  }
}


/* ===============================
        GLOBAL STYLES
        =============================== */
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  color: var(--dark-text);
  background: var(--light-bg);
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--primary-color);
  color: #FFF;
}

.btn-transprant {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-transprant:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-learnmore {
  background: transparent;
  transition: 0.3s;
  color: white;
  border: none;
}

.btn-learnmore:hover {
  color: var(--secondary-color);
  letter-spacing: 1px;
}

.sub-heading {
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 500;
}


.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.section-padding {
  padding: 35px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.highlite {
  color: var(--secondary-color);
}

@media (max-width: 575px) {
  .highlite {
    color: inherit;
  }
}

.hyper-link {
  text-decoration: none;
  color: inherit
}

.card-ui {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: .3s;
  border: 1px solid #eee;
}

.card-ui:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

::selection {
  background: var(--secondary-color);
  color: #fff;
}

/* ===============================
   PREMIUM UI GLOBAL SYSTEM
=============================== */

/* BETTER CONTAINER WIDTH */
.container {
  max-width: 1200px;
}

/* PREMIUM SHADOW */
.shadow-soft {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* PREMIUM HOVER LIFT */
.hover-lift {
  transition: 0.35s;
}

.hover-lift:hover {
  transform: translateY(-12px);
}

/* PREMIUM BUTTON */
.btn-premium {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
}

.btn-premium:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* REVEAL FROM LEFT */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: 0.8s ease;
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* REVEAL FROM TOP */
.reveal-top {
  opacity: 0;
  transform: translateY(-80px);
  transition: 0.8s ease;
}

.reveal-top.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all .9s cubic-bezier(.17, .67, .83, .67);
}

.reveal-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===============================
   INNER HERO (Reusable)
================================ */

.inner-hero {
  position: relative;
  min-height: 55vh;
  height: auto;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  text-align: center;
  /* text center */
  background: url('https://i.pinimg.com/1200x/db/4b/8e/db4b8e18e9a738d72318b7d71c0c2dd6.jpg') top center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* CENTER CONTENT PERFECT */
.inner-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* horizontal center */
  justify-content: center;
  /* vertical center */
}

/* tag */
.inner-hero-tag {
  color: var(--secondary-color);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* title */
.inner-hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* ============================================
   INNER HERO (Reusable) MOBILE RESPONSIVE
================================================ */

@media(max-width:768px) {
  .inner-hero {
    min-height: 50vh;
    padding: 60px 15px;
  }

  .inner-hero-title {
    font-size: 24px;
  }

  .desktop-break {
    display: none;
  }
}

/*=============================================================================================================
                                        Main All Page Style Start
================================================================================================================*/
/*========================= Index.HTML START ==========================*/
/*----------- HOME HERO SECTION ---------*/
/* HERO SECTION */
.v1-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Background video */
.v1-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Dark overlay */
.v1-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

/* Content center */
.v1-hero-content {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Title */
.v1-hero-title {
  font-size: 60px;
  color: #fff;
  margin-bottom: 20px;
}

/* Subtitle */
.v1-hero-subtitle {
  font-size: 18px;
  color: #eee;
  max-width: 650px;
  margin-bottom: 30px;
}

/* Buttons */
.v1-hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.v1-hero-btn-primary {
  background: var(--secondary-color);
  color: #000;
  padding: 14px 28px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s;
}

.v1-hero-btn-primary:hover {
  background: var(--primary-color);
  color: #FFF;
}

.v1-hero-btn-secondary {
  border: 2px solid #FFF;
  color: #FFF;
  padding: 14px 28px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.v1-hero-btn-secondary:hover {
  background: #FFF;
  color: #000;
}

/* Responsive */
@media(max-width:768px) {
  .v1-hero-title {
    font-size: 36px;
  }

  .v1-hero-subtitle {
    font-size: 16px;
  }
}


/*-------------- Home v1 Hero END-------------*/


/*----------- Home v1 About ---------- */
.v1-about-wrap {
  position: relative;
  padding: 140px 0;
  background: var(--light-bg);
  overflow: hidden;
}

/* center content */
.v1-about-title {
  font-size: 48px;
  color: #111;
  margin-bottom: 10px;
}

.v1-about-sub {
  color: #6B0F1A;
  margin-bottom: 20px;
}

.v1-about-text {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

/* button */
.v1-about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #6B0F1A;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: .3s;
}

.v1-about-btn:hover {
  background: #D4AF37;
  color: #000;
}

/* fixed side images */
.v1-about-left,
.v1-about-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.v1-about-left {
  left: 0;
}

.v1-about-right {
  right: 0;
}

.v1-about-left img {
  height: 520px;
}

.v1-about-right img {
  height: 520px;
}

/* responsive */
@media(max-width:991px) {

  .v1-about-left,
  .v1-about-right {
    display: none;
  }

  .v1-about-title {
    font-size: 32px;
  }
}


/*----------- Home v1 Shop ----------*/
.v1-wine-shop {
  background: #FFF;
  overflow: hidden;
}

/* LEFT */
.v1-left-banner {
  position: relative;
  height: 520px;
  overflow: hidden;
  background-color: #000;
}

.v1-left-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}

.v1-left-overlay {
  text-align: center;
  position: absolute;
  top: 150px;
  left: 0px;
  color: #fff;
}

.v1-left-title {
  font-size: 42px;
}

.v1-shop-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 30px;
  color: #FFF;
  border: 2px solid #FFF;
  text-decoration: none;
  transition: .4s;
  font-weight: 550;
  border-radius: 10px;
}

.v1-shop-btn:hover {
  transform: translateY(-5px);
  border: none;
  background: #FFF;
  color: #000;
}

/* PRODUCT */
.v1-product-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: .3s;
}

.v1-product-card img {
  height: 320px;
  object-fit: contain;
}

.v1-product-card h5 {
  margin-top: 10px;
}

.v1-product-card span {
  color: #6B0F1A;
  font-weight: 600;
}

/* hover icons */
.v1-hover-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: .3s;
}

.v1-hover-icons a {
  background: #6B0F1A;
  color: #fff;
  padding: 12px;
  margin: 5px;
  border-radius: 50%;
  display: inline-block;
}

.v1-product-card:hover .v1-hover-icons {
  opacity: 1;
}

.v1-product-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* responsive */
@media(max-width:991px) {
  .v1-left-col {
    order: 1;
  }

  .v1-right-col {
    order: 2;
  }

  .v1-left-overlay {
    justify-content: center;
    text-align: center;
    right: 0;
  }

  .v1-product-card img {
    margin-top: 30px;
  }
}

@media(max-width:576px) {
  .v1-left-banner {
    height: 300px;
  }

  .v1-left-overlay {
    top: 100px;
    left: 0px;
    justify-content: center;
  }

  .v1-left-title {
    font-size: 22px;
  }

  .v1-left-overlay p {
    font-size: 15px;
  }

  .v1-product-card img {
    height: 220px;
    object-fit: contain;
  }

  .v1-product-card h5 {
    margin-top: 0px;
  }
}

/*----------- Home v1 Shop End ------*/
/*------------ Gallery-----*/
.v1-gallery {
  background: var(--light-bg);
}

.v1-gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
}

.v1-gallery-para {
  font-family: 'Poppins', sans-serif;
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* grid */
.v1-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 15px;
}

/* big left */
.v1-g-big {
  grid-row: span 3;
  position: relative;
  overflow: hidden;
}

/* small */
.v1-g-sm {
  position: relative;
  overflow: hidden;
}

/* bottom wide */
.v1-g-wide {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
}

.v1-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

/* overlay glass */
.v1-g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 15, 26, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .4s;
}

.v1-g-overlay span {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
}

/* hover */
.v1-gallery-grid div:hover img {
  transform: scale(1.1);
}

.v1-gallery-grid div:hover .v1-g-overlay {
  opacity: 1;
}

/* tablet */
@media(max-width:991px) {
  .v1-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .v1-g-big {
    display: none;
  }

  .v1-g-big {
    grid-row: span 1;
  }

  .v1-g-wide {
    grid-column: span 2;
  }
}

/* mobile */
@media(max-width:576px) {
  .v1-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .v1-g-big {
    display: inline;
  }

  .v1-g-wide {
    grid-column: span 1;
  }
}


/*------------ Gallery END-----*/
/*========================= Index.HTML END ==========================*/

/*========================= home.HTML START ==========================*/

:root {
  --v2-primary: #2c1a12;
  /* deep heritage brown */
  --v2-gold: #c8a96a;
  /* luxury gold */
  --v2-light: #f5f1ea;
  /* soft background */
}

.v2-hero {
  background: var(--v2-light);
  overflow: hidden;
}

/* LEFT IMAGE */
.v2-hero-img-wrap {
  position: relative;
  height: 100vh;
  min-height: 650px;
}

.v2-hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* floating image */
.v2-floating-img {
  position: absolute;
  right: -60px;
  top: 250px;
  background: #fff;
  border: 10px solid var(--primary-color);
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.v2-floating-img img {
  width: 180px;
  height: 220px;
  object-fit: cover;
}

/* button */
.v2-hero-btn {
  position: absolute;
  background: var(--primary-color);
  color: #FFF;
  border: none;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s;
}

.v2-hero-btn:hover {
  background:var(--secondary-color);
  color: #000;
}

/* RIGHT CONTENT */
.v2-hero-content {
  padding: 120px 100px;
}

.v2-subtitle {
  letter-spacing: 3px;
  font-size: 14px;
  color: #555;
}

.v2-title {
  font-size: 64px;
  font-weight: 500;
  color: var(--v2-primary);
  margin: 25px 0;
  line-height: 1.1;
  font-family: "Playfair Display", serif;
}

.v2-text {
  font-size: 16px;
  color: #666;
  max-width: 480px;
}

/* RESPONSIVE */
@media(max-width:991px) {

  .v2-hero-img-wrap {
    height: 500px;
  }

  .v2-floating-img {
display: none;
  }

  .v2-hero-content {
    padding: 90px 30px 60px 30px;
    text-align: center;
  }

  .v2-title {
    font-size: 40px;
  }
  .v2-text{
    margin: auto;
  }

  .v2-hero-btn {
   margin: auto;
   justify-content: center;
  }
}
@media(max-width:991px){

  .v2-hero-content{
    text-align:center;
  }

  .v2-hero-btn{
    display:block;
    margin:25px auto 0;
    position:relative; /* remove absolute */
  }

}

/*------Hero section END -----*/

/*--------Home v2 About us ------------*/

.v2-about {
  background: #FFF;
}



/* title */
.v2-about-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #1A1A1A;
  margin: 15px 0;
}

/* text */
.v2-about-text {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

/* list */
.v2-about-list li {
  margin: 10px 0;
  font-family: 'Poppins', sans-serif;
  color: #1A1A1A;
  font-weight: 500;
}

/* button */
.v2-about-btn {
  display: inline-block;
  margin-top: 20px;
  background: #6B0F1A;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  transition: .3s;
}

.v2-about-btn:hover {
  background: #D4AF37;
  color: #000;
}

/* image */
.v2-about-img {
  max-width: 90%;
}

/* responsive */
@media(max-width:768px) {
  .v2-about-title {
    font-size: 30px;
  }

  .v2-about {
    text-align: center;
  }
}

/*-------- Home v2 About us END ------------------*/

/*--------- Home V2 Stats Start ---------------------*/
.v2-stats{
  padding:15px 0;
  background:var(--light-bg);
  position:relative;
  overflow:hidden;
}

/* subtle gold line top */
.v2-stats::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(to right,transparent,var(--primary-color),transparent);
}

/* CARD */
.v2-stat-card{
  padding:40px 20px;
  border-radius:20px;
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  border:1px solid rgba(200,169,106,0.2);
  transition:all 0.5s ease;
  opacity:0;
  transform:translateY(60px);
}

/* Reveal */
.v2-stat-card.v2-visible{
  opacity:1;
  transform:translateY(0);
}

/* Hover */
.v2-stat-card:hover{
  transform:translateY(-12px);
  border-color:var(--primary-color);
  box-shadow:0 20px 50px rgba(200,169,106,0.15);
}

/* Icon wrap halo */
.v2-icon-wrap{
  width:80px;
  height:80px;
  margin:0 auto 25px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(200,169,106,0.08);
  border:1px solid rgba(200,169,106,0.3);
  transition:0.4s;
}

.v2-stat-card:hover .v2-icon-wrap{
  background:var(--primary-color);
  box-shadow:0 0 25px rgba(200,169,106,0.6);
}

.v2-stat-icon{
  font-size:32px;
  color:var(--primary-color);
  transition:0.4s;
}

.v2-stat-card:hover .v2-stat-icon{
  color:#FFF;
}

/* Number */
.v2-stat-number{
  font-size:34px;
  font-weight:600;
  color:#000;
  margin-bottom:10px;
  transition:0.4s;
}

/* Gold glow finish */
.v2-stat-number.v2-glow{
  color:var(--primary-color);
  text-shadow:0 0 20px rgba(200,169,106,0.7);
}

.v2-stat-text{
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#999;
}

/* Default spacing */
.v2-stats .row{
  row-gap:20px;
}

/* 320px small phones */
@media (max-width:340px){

  .v2-stats .col-12{
    width:100%;
  }

  .v2-stat-card{
    margin:0;
  }

}

/* 375px phones (modern iPhone etc) */
@media (min-width:350px) and (max-width:575px){

  .v2-stats .row{
    row-gap:24px;
    column-gap:14px;
    padding:0 14px;
  }

  .v2-stat-card{
    margin-bottom:0;
  }

}
@media(max-width:575px){

  .v2-stat-card{
    padding:35px 20px;
    border-radius:18px;
  }

}


/*--------- Home V2 Stats End ---------------------*/

/*--------- Home V2 Why Choose US Start ---------------------*/
.v2-why{
  padding:100px 0;
  background:#FFF;
}

.v2-why-img img{
  width:100%;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.v2-why-title{
  font-size:42px;
  margin-bottom:40px;
  color:#2c1a12;
  font-family:"Playfair Display", serif;
}

/* ITEM */
.v2-why-item{
  display:flex;
  align-items:flex-start;
  margin-bottom:30px;
  padding:15px;
  border-radius:12px;
  transition:0.4s ease;
}

.v2-why-icon{
  width:55px;
  height:55px;
  min-width:55px;
  border-radius:50%;
  background:rgba(139,0,0,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:20px;
  transition:0.4s ease;
}

.v2-why-icon i{
  font-size:22px;
  color:#8b0000; /* wine red */
  transition:0.4s ease;
}

.v2-why-item h5{
  font-size:18px;
  margin-bottom:8px;
  color:#2c1a12;
}

.v2-why-item p{
  font-size:14px;
  color:#666;
}

/* Hover */
.v2-why-item:hover{
  background:#fff;
  transform:translateX(8px);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.v2-why-item:hover .v2-why-icon{
  background:#8b0000;
}

.v2-why-item:hover .v2-why-icon i{
  color:#fff;
}

/* Responsive */
@media(max-width:991px){
  .v2-why{
    padding:70px 0;
  }

  .v2-why-title{
    text-align:center;
  }

  .v2-why-content{
    margin-top:40px;
  }
  .v2-why-title{
  font-size:30px;}
  
}

/*--------- Home V2 Why Choose US Start ---------------------*/

/*---------- Home v2 Procss Start -------------------*/
.v2-process{
  background:var(--light-bg);
  padding:30px 0;
}
.process-sub{
 display:block;
  text-align:center;
  margin-bottom:12px;
  letter-spacing:3px;
  color:var(--primary-color);
  font-size:13px;
  text-transform:uppercase;

}
  .process-title{
    font-size: 42px;
    text-align: center;
  }
  .process-text{
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 20px;
  }
.v2-process-card{
  position:relative;
  padding:80px 20px 20px;
  overflow:hidden;
  min-height:320px;
}

/* BIG OUTLINE NUMBER */
.v2-process-num{
  position:absolute;
  top:0;
  left:0;
  font-size:120px;
  font-weight:700;
  color:transparent;
  -webkit-text-stroke:1px #8b0000;
  opacity:0.5;
  transition:0.4s;
}

/* IMAGE HIDDEN */
.v2-process-img{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%) scale(0.8);
  width:220px;
  height:140px;
  object-fit:cover;
  border-radius:12px;
  opacity:0;
  transition:0.5s;
  z-index:2;
}

/* TEXT */
.v2-process-card h4{
  font-size:26px;
  margin-top:120px;
  color:#2c1a12;
}

.v2-process-card p{
  font-size:15px;
  color:#666;
  max-width:260px;
}

/* HOVER EFFECT */
.v2-process-card:hover .v2-process-img{
  opacity:1;
  transform:translateX(-50%) scale(1);
  top:-0px;
}

.v2-process-card:hover .v2-process-num{
  -webkit-text-stroke:1px #c8a96a;
  transform:translateY(20px);
  opacity:0.7;
}

/* Tablet = 2 */
@media(max-width:991px){
  .v2-process-card{
    margin-bottom:50px;
  }
  .process-title{
    font-size: 30px;
  }
}

/* Mobile = 1 */
@media(max-width:575px){

  .v2-process{
    padding:70px 0;
  }

  .v2-process-num{
    font-size:90px;
  }

  .v2-process-card h4{
    font-size:22px;
  }

}

/*---------- Home V2 Process End --------------------*/

/*========================= home.HTML END ==========================*/

/*========================= about.HTML Start ========================*/

/*---------- About Mission & Vision Start ---------------------*/
.ha-mission{
  background:#f5f1ea;
  padding:50px 0 150px 0;
}

.ha-mission-sub{
  display:block;
  letter-spacing:3px;
  font-size:14px;
  color:#8b0000; /* wine red */
  margin-bottom:10px;
}

.ha-mission-title{
  font-size:42px;
  font-family:"Playfair Display", serif;
  color:#2c1a12;
  margin-bottom:20px;
}

.ha-mission-text{
  color:#666;
  font-size:15px;
  line-height:1.7;
  margin-bottom:15px;
}

/* contact badge */
.ha-mission-contact{
  display:flex;
  align-items:center;
  margin-top:25px;
}

.ha-mission-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:rgba(200,169,106,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-right:15px;
}

.ha-mission-icon i{
  font-size:22px;
  color:#c8a96a; /* gold */
}

.ha-mission-contact span{
  font-size:12px;
  letter-spacing:2px;
  color:#8b0000;
}

.ha-mission-contact h4{
  margin:0;
  font-size:20px;
  color:#2c1a12;
}

/* Images Layout */
.ha-mission-images{
  position:relative;
  display:flex;
  gap:20px;
  justify-content:center;
}

.ha-mission-img-main{
  width:70%;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.ha-mission-img-side{
  width:40%;
  border-radius:20px;
  position:absolute;
  left:30px;
  top:170px;
  box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

@media(max-width:991px){

 
  .ha-mission-images{
    flex-direction:column;
    position:relative;
    margin-top: 30px;
  }

  .ha-mission-img-main,
  .ha-mission-img-side{
    width:100%;
    position:relative;
    top:0;
    left: 0;
  }

}

@media(max-width:575px){

  .ha-mission-title{
    font-size:30px;
  }

  .ha-mission-images{
    flex-direction:column;
    position:relative;
  }

  .ha-mission-img-main,
  .ha-mission-img-side{
    width:100%;
    position:relative;
    top:0;
    left: 0;
  }

}
/*---------- About Mission & Vision End -----------------------*/

/*---------- Our story Start ----------------------------------*/
    .ha-story{
  background:linear-gradient(135deg,#550a13,#1a1411);
  padding:50px 0;
  color:#fff;
}

.ha-story-img img{
  width:90%;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(0,0,0,0.4);
}

/* Right content */
.ha-story-content{
  padding-left:40px;
}

.ha-story-sub{
  letter-spacing:3px;
  font-size:13px;
  color:#c8a96a; /* gold */
  display:block;
  margin-bottom:10px;
}

.ha-story-title{
  font-size:44px;
  font-family:"Playfair Display", serif;
  margin-bottom:20px;
  color:#fff;
}

.ha-story-text{
  color:#bbb;
  font-size:15px;
  line-height:1.8;
  margin-bottom:15px;
}

/* Founder area */
.ha-story-founder{
  display:flex;
  align-items:center;
  margin-top:30px;
}

.ha-story-sign{
  font-family:cursive;
  font-size:26px;
  color:#c8a96a;
  margin-right:20px;
}

.ha-story-founder h5{
  margin:0;
  font-size:18px;
  color:#fff;
}

.ha-story-founder span{
  font-size:13px;
  letter-spacing:2px;
  color:#c8a96a;
}

@media(max-width:991px){

  .ha-story-content{
    padding-left:0;
    margin-top:50px;
  }
  .ha-story-img{
    justify-content: center;
    text-align: center;

  }

  .ha-story-title{
    font-size:32px;
  }

} 
/*---------- Our Story End ------------------------------------*/

/*---------- testimonial Start ------------------------------------*/
.ha-testimonial{
  padding: 0;
  background:#FFF;
}

.ha-testimonial-left{
  background:url('https://i.pinimg.com/1200x/ed/89/a1/ed89a16cdf3db895a7265fc70996c8d8.jpg')center/cover no-repeat;
  padding:108.4px 80px;
  position:relative;
  color:#fff;
}

.ha-testimonial-left::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.ha-testimonial-slider{
  position:relative;
  z-index:2;
  max-width:500px;
}

.ha-slide{
  display:none;
  animation:fadeIn 0.8s ease;
}

.ha-slide.active{
  display:block;
}

@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}

.ha-stars{
  color:#c8a96a;
  font-size:18px;
  margin-bottom:20px;
}

.ha-slide p{
  font-size:16px;
  line-height:1.8;
  margin-bottom:30px;
}

.ha-client{
  display:flex;
  align-items:center;
}

.ha-client img{
  width:55px;
  height:55px;
  border-radius:50%;
  margin-right:15px;
  border:2px solid #c8a96a;
}

.ha-client h6{
  margin:0;
}

.ha-client span{
  font-size:13px;
  color:#c8a96a;
}

/* Right box */
.ha-testimonial-box{
  background:#0f0c0a;
  color:#fff;
  padding:107px 60px;
}

.ha-testimonial-box h3{
  font-family:"Playfair Display", serif;
  font-size:34px;
  margin-bottom:20px;
}

.ha-testimonial-box p{
  color:#bbb;
  margin-bottom:30px;
}

.ha-btn{
  display:inline-block;
  padding:14px 30px;
  border:1px solid #c8a96a;
  color:#c8a96a;
  text-decoration:none;
  transition:0.3s;
}

.ha-btn:hover{
  background:#c8a96a;
  color:#0f0c0a;
}

@media(max-width:991px){

  .ha-testimonial-left{
    padding:80px 30px;
  }

  .ha-testimonial-box{
    padding:80px 30px;
  }

}
/* MOBILE + TABLET ORDER FIX */
@media (max-width:991px){
  .ha-testimonial{
    padding: 0 0;
  }

  .ha-testimonial .row{
    display:flex;
    flex-direction:column;
  }

  /* RIGHT BOX FIRST */
  .ha-testimonial .col-lg-5{
    order:1;
  }

  /* LEFT SLIDER SECOND */
  .ha-testimonial .col-lg-7{
    order:2;
  }

}




/*---------- testionial END ------------------------------------*/

/*---------- Team Section Start ---------------------------------*/
    .ha-experts{
  background:#FFF;
  padding:50px 0;
  color:#fff;
}

.ha-exp-sub{
  letter-spacing:3px;
  color:#c8a96a;
  font-weight: 540;
}

.ha-exp-title{
  font-size:42px;
  color: #000;
  font-family:"Playfair Display", serif;
  margin:10px 0 60px;
}

/* CARD */
.ha-exp-card{
  position:relative;
  overflow:hidden;
  margin-bottom:30px;
}

.ha-exp-img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:0.5s;
}

/* bottom info */
.ha-exp-info{
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  background:#f5f1ea;
  padding:18px 35px;
  text-align:center;
  width:80%;
  transition:0.4s;
}

.ha-exp-info h5{
  color:#2c1a12;
  margin:0;
}

.ha-exp-info span{
  font-size:13px;
  color:#8b0000;
}

/* overlay */
.ha-exp-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:30px;
  opacity:0;
  transition:0.4s;
}

.ha-exp-overlay h4{
  color:#fff;
  margin-bottom:5px;
}

.ha-exp-overlay span{
  color:#c8a96a;
  font-size:13px;
  margin-bottom:10px;
}

.ha-exp-overlay p{
  font-size:14px;
  color:#ccc;
  max-width:240px;
}

/* social */
.ha-exp-social i{
  margin:10px 8px 0;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

.ha-exp-social i:hover{
  color:#c8a96a;
}

/* HOVER */
.ha-exp-card:hover .ha-exp-overlay{
  opacity:1;
}

.ha-exp-card:hover .ha-exp-info{
  opacity:0;
}

.ha-exp-card:hover .ha-exp-img{
  transform:scale(1.1);
}
/* tablet = 2 */
@media(max-width:991px){
  .ha-exp-img{
    height:380px;
  }
}

/* mobile = 1 */
@media(max-width:575px){
  .ha-exp-title{
    font-size:28px;
  }
}

/*---------- Team Section END -----------------------------------*/

/*========================= about.HTML END ========================*/

/*========================= Shop.HTML Start ====================*/
.wc-shop{
padding:90px 0;
background:#FFF;
overflow:hidden;
}

.wc-shop-head h2{
font-size:42px;
margin-bottom:10px;
}
.wc-shop-head p{
color:#777;
margin-bottom:30px;
}

/* tabs */
.wc-tabs{
margin-bottom:40px;
}
.wc-tab{
border:none;
padding:12px 26px;
margin:5px;
background:#eee;
cursor:pointer;
font-weight:600;
}
.wc-tab.active{
background:#c8a96a;
color:#fff;
}

/* hide category */
.wc-category{display:none;}
.wc-category.active{display:block;}

.wc-slider{
position:relative;
overflow:hidden;
}

.wc-track{
display:flex;
transition:transform .7s cubic-bezier(.77,0,.18,1);
}

/* card */
.wc-card{
min-width:25%;
padding:20px;
text-align:center;
}
.wc-card img{
height:240px;
object-fit:contain;
transition:.4s;
}
.wc-card:hover img{
transform:translateY(-10px) scale(1.05);
}

.wc-card span{
color:#8b0000;
font-weight:700;
}

/* arrows */
.wc-arrow{
position:absolute;
top:40%;
background:#fff;
border:none;
width:45px;
height:45px;
border-radius:50%;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
z-index:5;
}
.wc-arrow.left{left:10px;}
.wc-arrow.right{right:10px;}

@media(max-width:991px){
.wc-card{min-width:50%;}
}
@media(max-width:575px){
.wc-card{min-width:100%;}
}

.wc-price{
  display:block;
  margin-bottom:12px;
  color:#8b0000;
  font-weight:700;
}

/* button */
.wc-cart-btn{
  padding:10px 18px;
  border:2px solid #c8a96a;
  background:transparent;
  font-weight:600;
  cursor:pointer;
  transition:.4s;
  position:relative;
  overflow:hidden;
}

/* gold hover fill */
.wc-cart-btn::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:0;
  height:100%;
  background:#c8a96a;
  z-index:-1;
  transition:.4s;
}

.wc-cart-btn:hover::before{
  width:100%;
}

.wc-cart-btn:hover{
  color:#fff;
}

/*-------------- Offer Start --------------*/
/* ================= DISCOUNT SECTION ================= */

.wc-discount{
  padding:80px 0;
  background:linear-gradient(135deg,#550a13,#1a1411);
  color:#fff;
}

.wc-discount-img{
  text-align:center;
}

.wc-discount-img img{
  max-width:420px;
  width:100%;
  transform:rotate(-8deg);
  transition:.4s;
}

.wc-discount-img img:hover{
  transform:rotate(0deg) scale(1.05);
}

/* content */
.wc-discount-sub{
  color:#c8a96a;
  letter-spacing:3px;
  font-size:13px;
  display:block;
  margin-bottom:10px;
}

.wc-discount-title{
  font-size:40px;
  font-family:"Playfair Display", serif;
  margin-bottom:20px;
}

.wc-discount-text{
  color:#ddd;
  line-height:1.7;
  margin-bottom:20px;
}

.wc-discount-price{
  color:#c8a96a;
  margin-bottom:25px;
}

.wc-discount-price del{
  color:#aaa;
  margin-right:10px;
}

/* countdown */
.wc-countdown{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

.wc-time{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(8px);
  padding:15px 18px;
  border-radius:12px;
  text-align:center;
  min-width:70px;
  border:1px solid rgba(200,169,106,0.3);
}

.wc-time span{
  display:block;
  font-size:22px;
  font-weight:700;
  color:#c8a96a;
}

.wc-time small{
  font-size:12px;
  color:#ddd;
}

/* button */
.wc-discount-btn{
  padding:14px 28px;
  border:2px solid #c8a96a;
  background:transparent;
  color:#c8a96a;
  font-weight:600;
  transition:.4s;
}

.wc-discount-btn:hover{
  background:#c8a96a;
  color:#550a13;
}

@media(max-width:991px){

  .wc-discount{
    text-align:center;
  }

  .wc-countdown{
    justify-content:center;
    flex-wrap:wrap;
  }

  .wc-discount-title{
    font-size:30px;
  }

  .wc-discount-img img{
    margin-bottom:40px;
  }

}

@media(max-width:575px){

  .wc-countdown{
    gap:10px;
  }

  .wc-time{
    min-width:60px;
    padding:12px;
  }

  .wc-time span{
    font-size:18px;
  }

}

/*========================= Shop.HTML END ======================*/

/*========================= Shop-detail.HTML Start ==============*/
 
 .hsd-container{
 width:90%;
 max-width:1250px;
 margin:auto;
 }
 
 /* TOP SECTION */
 .hsd-product-top{
 display:flex;
 gap:70px;
 padding:70px 0;
 align-items:center;
 flex-wrap:wrap;
 animation:hsdFade 1s ease;
 }
 
 @keyframes hsdFade{
 from{opacity:0;transform:translateY(40px)}
 to{opacity:1}
 }
 
 /* IMAGE */
 .hsd-product-img{
 flex:1;
 background:#eee;
 padding:60px;
 text-align:center;
 position:relative;
 overflow:hidden;
 }
 
 .hsd-product-img img{
width: 100%;
 transition:.5s;
 }
 
 .hsd-product-img:hover img{
 transform:scale(1.15) rotate(-2deg);
 }
 
 /* RIGHT */
 .hsd-product-info{
 flex:1;
 }
 
 .hsd-title{
 font-family:'Playfair Display',serif;
 font-size:38px;
 margin-bottom:10px;
 }
 
 .hsd-price{
 font-size:26px;
 color:var(--primary-color);
 font-weight:600;
 }
 .hsd-price span{
 text-decoration:line-through;
 color:#999;
 font-size:18px;
 margin-left:10px;
 }
 
 .hsd-rating{
 color:var(--secondary-color);
 margin:10px 0;
 }
 
 .hsd-desc{
 color:#555;
 line-height:1.7;
 margin:15px 0 25px;
 }
 
 /* QTY */
 .hsd-qty-cart{
 display:flex;
 gap:15px;
 align-items:center;
 margin-bottom:15px;
 flex-wrap:wrap;
 }
 
 .hsd-qty{
 display:flex;
 border:1px solid #ddd;
 }
 .hsd-qty button{
 background:#fff;
 border:none;
 padding:12px 16px;
 cursor:pointer;
 font-size:18px;
 }
 .hsd-qty input{
 width:50px;
 text-align:center;
 border:none;
 font-weight:600;
 }
 
 /* BUTTONS */
 .hsd-cart-btn{
  background:var(--primary-color);
  color:#fff;
  padding:14px 28px;
  border:none;
  font-weight:600;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  z-index:1;
  }
  
  /* gold slide */
  .hsd-cart-btn:before{
  content:"";
  position:absolute;
  left:-100%;
  top:0;
  width:100%;
  height:100%;
  background:var(--secondary-color);
  transition:.4s;
  z-index:-1;
  }
  
  .hsd-cart-btn:hover:before{
  left:0;
  }
  
  /* TEXT COLOR FIX */
  .hsd-cart-btn:hover{
  color:#000; /* text visible on gold */
  }
 
 .hsd-buy{
 width:100%;
 background:linear-gradient(45deg,var(--primary-color),#3d0008);
 color:#fff;
 padding:16px;
 border:none;
 font-weight:600;
 margin-top:15px;
 letter-spacing:1px;
 cursor:pointer;
 transition:.4s;
 }
 .hsd-buy:hover{
 background:var(--secondary-color);
 color:#000;
 }
 
 /* GLASS TABS */
 .hsd-tabs{
 margin-top:20px;
 margin-bottom: 50px;
 background:rgba(255,255,255,0.6);
 backdrop-filter:blur(10px);
 padding:35px;
 border-radius:12px;
 border:1px solid rgba(0,0,0,0.06);
 animation:hsdFade 1s ease;
 }
 
 .hsd-tab-buttons{
 display:flex;
 gap:10px;
 flex-wrap:wrap;
 margin-bottom:25px;
 }
 
 .hsd-tab-btn{
 padding:14px 24px;
 border:none;
 background:#eee;
 cursor:pointer;
 font-weight:600;
 transition:.3s;
 }
 
 .hsd-tab-btn.active{
 background:var(--primary-color);
 color:#fff;
 }
 
 .hsd-tab-btn:hover{
 background:var(--secondary-color);
 color:#000;
 }
 
 /* TAB CONTENT */
 .hsd-tab-content{display:none;}
 .hsd-tab-content.active{display:block;}
 
 .hsd-info-table{
 width:100%;
 border-collapse:collapse;
 }
 .hsd-info-table td{
 border:1px solid #eee;
 padding:14px;
 }
 
 /* REVIEWS */
 .hsd-review{
 border-bottom:1px solid #999;
 padding:15px 0;
 margin-bottom:20px;
 }
 .hsd-review strong{
  color: var(--secondary-color);
 }
 .hsd-review-form h3{
 font-family:'Playfair Display';
 margin-bottom:15px;
 }
 
 .hsd-form-row{
 display:flex;
 gap:15px;
 }
 .hsd-review-form input,
 .hsd-review-form textarea{
 width:100%;
 padding:14px;
 border:1px solid #ddd;
 margin-bottom:12px;
 }
 
 .hsd-submit{
 background:var(--primary-color);
 color:#fff;
 border:none;
 padding:14px 25px;
 font-weight:600;
 cursor:pointer;
 transition:.3s;
 }
 .hsd-submit:hover{
 background:var(--secondary-color);
 color:#000;
 }
 .hsd-tab-content{border-top: 2px solid #999;}
 .hsd-tab-content p{text-align: justify; margin-top: 20px;}
 
 /* MOBILE */
 @media(max-width:768px){
  .hsd-product-page{text-align: center; justify-content: center;}
 .hsd-product-top{flex-direction:column;padding:40px 0;}
 .hsd-product-img{padding:30px;}
 .hsd-title{font-size:28px;}
 .hsd-tabs{padding:20px;}
 .hsd-form-row{flex-direction:column;}
 .hsd-qty-cart{justify-content: center; margin: auto; margin-bottom: 20px; text-align: center;}
 .hsd-review{text-align: start;}
}
 @media (max-width:575px){
  .hsd-cart-btn{text-align: center; justify-content: center; margin: auto;}
  .hsd-qty-cart{justify-content: center; margin: auto; margin-bottom: 20px; text-align: center;}
  .hsd-qty{margin: auto;}
  .hsd-tab-btn{margin: auto; font-size: 15px; padding: 12px 20px; width: 100%; font-weight: 500;}
  
 }
/*------------------------Shop detail FAQ START -------------------*/
.hsd-faq-ultra{
  padding:90px 0;
  background:linear-gradient(to bottom,#fafafa,#f3f3f3);
  position:relative;
  overflow:hidden;
  }
  
  /* heading */
  .hsd-faq-ultra-title{
  font-family:'Playfair Display',serif;
  font-size:40px;
  text-align:center;
  margin-bottom:10px;
  }
  
  .hsd-faq-ultra-sub{
  text-align:center;
  color:#777;
  margin-bottom:60px;
  }
  
  /* wrapper */
  .hsd-faq-ultra-wrap{
  max-width:900px;
  margin:auto;
  }
  
  /* item */
  .hsd-faq-ultra-item{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(12px);
  border-radius:14px;
  margin-bottom:18px;
  border:1px solid rgba(0,0,0,0.06);
  transition:.4s;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  }
  
  .hsd-faq-ultra-item:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
  }
  
  /* question */
  .hsd-faq-ultra-q{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 25px;
  cursor:pointer;
  }
  
  .hsd-faq-ultra-q h4{
  margin:0;
  font-size:18px;
  font-weight:600;
  }
  
  /* gold icon */
/* ICON FIX */
.hsd-faq-icon{
  min-width:26px;
  min-height:26px;
  width:26px;
  height:26px;
  border-radius:50%;
  background:#6B0F1A;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0; /* IMPORTANT */
  transition:.4s;
  }
  
  /* minus & plus lines */
  .hsd-faq-icon:before,
  .hsd-faq-icon:after{
  content:"";
  position:absolute;
  background:#fff;
  border-radius:2px;
  }
  
  /* horizontal */
  .hsd-faq-icon:before{
  width:12px;
  height:2px;
  }
  
  /* vertical */
  .hsd-faq-icon:after{
  width:2px;
  height:12px;
  }
  
  /* active state */
  .hsd-faq-ultra-item.active .hsd-faq-icon{
  background:#D4AF37;
  transform:rotate(180deg);
  }
  .hsd-faq-ultra-item.active .hsd-faq-icon:after{
  display:none;
  }
  /* answer */
  .hsd-faq-ultra-a{
  max-height:0;
  overflow:hidden;
  padding:0 25px;
  color:#555;
  line-height:1.8;
  transition:.5s;
  }
  
  .hsd-faq-ultra-item.active .hsd-faq-ultra-a{
  max-height:200px;
  padding:0 25px 22px;
  }
  
  /* mobile */
  @media(max-width:768px){
  .hsd-faq-ultra{padding:60px 0;}
  .hsd-faq-ultra-title{font-size:28px;}
  .hsd-faq-ultra-q h4{font-size:16px;}
  }
  @media(max-width:768px){
    .hsd-faq-ultra-q{
    gap:15px;
    }
    
    .hsd-faq-ultra-q h4{
    font-size:15px;
    line-height:1.4;
    }
    }
/*------------------------Shop detail FAQ END ---------------------*/

/*========================= Shop-detail.HTML End ================*/

/*========================= Blog.HTML Start ========================*/
.hb-blog-ultimate{
  padding:90px 0;
  background:#fafafa;
  font-family:'Poppins',sans-serif;
  }
  
  .hb-container{
  width:90%;
  max-width:1300px;
  margin:auto;
  }
  
  /* header */
  .hb-blog-top{text-align:center;margin-bottom:60px;}
  .hb-blog-main-title{
  font-family:'Playfair Display',serif;
  font-size:48px;
  }
  .hb-blog-main-sub{color:#777;margin-top:10px;}
  
  /* featured */
  .hb-featured-post{
  display:flex;
  gap:40px;
  margin-bottom:80px;
  align-items:center;
  flex-wrap:wrap;
  }
  .hb-featured-img img{
  width:100%;
  border-radius:14px;
  }
  .hb-featured-img{flex:1;}
  .hb-featured-content{flex:1;}
  .hb-featured-tag{
  color:#D4AF37;
  font-weight:600;
  }
  .hb-featured-content h2{
  font-family:'Playfair Display',serif;
  font-size:32px;
  margin:15px 0;
  }
  .hb-featured-btn{
  display:inline-block;
  margin-top:15px;
  color:#6B0F1A;
  font-weight:600;
  }
  
  /* layout */
  .hb-blog-layout{
  display:grid;
  grid-template-columns:3fr 1.2fr;
  gap:60px;
  }
  
  /* grid */
  .hb-blog-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  }
  
  /* card */
  .hb-blog-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  transition:.3s;
  border:1px solid #eee;
  }
  .hb-blog-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.07);
  }
  .hb-blog-img img{
  width:100%;
  height:220px;
  object-fit:cover;
  }
  .hb-blog-content{padding:20px;}
  .hb-blog-date{color:#D4AF37;font-size:13px;}
  .hb-blog-content h3{
  font-family:'Playfair Display',serif;
  margin:10px 0;
  }
  .hb-blog-btn{color:#6B0F1A;font-weight:600;}
  
  /* sidebar */
  .hb-sidebar-card{
  background:#fff;
  padding:25px;
  border-radius:14px;
  margin-bottom:30px;
  border:1px solid #eee;
  }
  .hb-sidebar-card h4{
  font-family:'Playfair Display',serif;
  margin-bottom:15px;
  }
  .hb-sidebar-card input{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  }
  .hb-sidebar-card ul{
  list-style:none;
  padding:0;
  }
  .hb-sidebar-card li{
  margin-bottom:10px;
  }
  .hb-sidebar-card a{
  color:#6B0F1A;
  text-decoration:none;
  }
  
  /* trending */
  .hb-trend-item{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:12px;
  }
  .hb-trend-item img{
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:8px;
  }
  
  /* pagination */
  .hb-pagination{
  margin-top:40px;
  }
  .hb-page{
  display:inline-block;
  padding:8px 14px;
  margin-right:8px;
  background:#eee;
  color:#000;
  text-decoration:none;
  }
  .hb-page.active{
  background:#6B0F1A;
  color:#fff;
  }
  /* sticky sidebar */
.hb-blog-sidebar{
  position:sticky;
  top:120px;
  height:fit-content;
  }

  /* default desktop */
.hb-blog-sidebar{
  order:2;
  }
  .hb-blog-left{
  order:1;
  }
  .hb-featured-post{
  order:0;
  }
  .hb-category-option.active{
    background:#6B0F1A;
    color:#fff;
  }
  
  .hb-category-option.active:hover{
    background:#6B0F1A;
    color:#fff;
  }

  
  /* 📱 MOBILE + TABLET FIX */
  @media(max-width:992px){
  
  /* make layout flex */
  .hb-blog-layout{
  gap: 20px;
  display:flex;
  flex-direction:column;
  }
  
  /* sidebar first */
  .hb-blog-sidebar{
  order:-1;
  margin-bottom:30px;
  }
  
  /* featured after sidebar */
  .hb-featured-post{
  order:1;
  }
  
  /* blog grid last */
  .hb-blog-left{
  order:0;
  }
  .dis-no{
    display: none;
  }
  .dis-only{
    display: inline-block;
  }
  
  }
  @media (min-width:1199.98px) {
  .dis-only{
    display: none;
  }
}
  
  /* tablet */
  @media(max-width:992px){
  .hb-blog-layout{
  grid-template-columns:1fr;
  }
  .hb-blog-grid{
  grid-template-columns:1fr 1fr;
  }
  }
  
  /* mobile */
  @media(max-width:600px){
  .hb-blog-main-title{font-size:28px;}
  .hb-blog-grid{grid-template-columns:1fr;}
  .hb-featured-post{flex-direction:column;}
  }

  /* dropdown wrapper */
.hb-category-dropdown{
  position:relative;
  margin-top:15px;
  }
  
  /* selected box */
  .hb-category-selected{
  background:#fff;
  border:1px solid #ddd;
  padding:14px 18px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-radius:10px;
  font-weight:500;
  transition:.3s;
  }
  
  .hb-category-selected:hover{
  border-color:#6B0F1A;
  }
  
  /* arrow */
  .hb-cat-arrow{
  width:10px;
  height:10px;
  border-right:2px solid #6B0F1A;
  border-bottom:2px solid #6B0F1A;
  transform:rotate(45deg);
  transition:.3s;
  }
  
  /* open rotate */
  .hb-category-dropdown.active .hb-cat-arrow{
  transform:rotate(-135deg);
  }
  
  /* options */
  .hb-category-options{
  position:absolute;
  left:0;
  top:110%;
  width:100%;
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  overflow:hidden;
  max-height:0;
  transition:.4s;
  z-index:100;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  }
  
  .hb-category-dropdown.active .hb-category-options{
  max-height:300px;
  }
  
  /* option item */
  .hb-category-option{
  padding:14px 18px;
  cursor:pointer;
  transition:.3s;
  }
  
  .hb-category-option:hover{
  background:#6B0F1A;
  color:#fff;
  }

  /* make category full width like search */
@media(max-width:992px){

  .hb-sidebar-card{
  width:100%;
  }
  
  .hb-category-dropdown{
  width:100%;
  }
  
  .hb-category-selected{
  width:100%;
  padding:16px 18px;
  border-radius:12px;
  font-size:16px;
  }
  
  .hb-category-options{
  width:100%;
  left:0;
  }
  
  }

/*========================= Blog.HTML End ==========================*/

/*========================= Blog-detail.HTML Start ========================*/
.hbd-details-section{
  padding:40px 0 90px 0;
  background:#faf8f6;
  font-family:'Poppins',sans-serif;
}

.hbd-container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

.hbd-layout{
  display:grid;
  grid-template-columns:3fr 1.2fr;
  gap:60px;
}

/* MAIN */
.hbd-featured-img img{
  width:100%;
  border-radius:16px;
}

.hbd-title{
  font-family:'Playfair Display',serif;
  font-size:34px;
  margin:30px 0 10px;
}

.hbd-meta{
  color:#D4AF37;
  font-size:14px;
  margin-bottom:20px;
}

.hbd-content p{
  color:#555;
  line-height:1.8;
  margin-bottom:18px;
}

/* COMMENT */
.hbd-comment-box{
  margin-top:50px;
  background:#fff;
  padding:30px;
  border-radius:16px;
  border:1px solid #eee;
}

.hbd-comment-box textarea{
  width:100%;
  height:120px;
  padding:15px;
  border:1px solid #ddd;
  margin-bottom:15px;
}

.hbd-input-row{
  display:flex;
  gap:15px;
  margin-bottom:15px;
}

.hbd-input-row input{
  flex:1;
  padding:12px;
  border:1px solid #ddd;
}

.hbd-btn{
  background:#6B0F1A;
  color:#fff;
  padding:12px 25px;
  border:none;
  border-radius:6px;
}

/* SIDEBAR */
.hbd-card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  margin-bottom:20px;
  border:1px solid #eee;
}

.hbd-card h5{
  font-family:'Playfair Display',serif;
  margin-bottom:15px;
}

.hbd-card input{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
}

.hbd-card ul{
  list-style:none;
  padding:0;
}

.hbd-card li{
  padding:8px 0;
  border-bottom:1px solid #f1f1f1;
  color:#6B0F1A;
  cursor:pointer;
}

.hbd-mini-post{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:12px;
}

.hbd-mini-post img{
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:8px;
}

/* RESPONSIVE */
@media(max-width:992px){

  .hbd-layout{
    display:flex;
    flex-direction:column;
  }

  .hbd-sidebar{
    order:-1; /* sidebar first */
  }

  .hbd-main{
    order:1;
  }

}

@media(max-width:600px){
  .hbd-title{
    font-size:24px;
  }

  .hbd-input-row{
    flex-direction:column;
  }
}
/* ===== DEFAULT DESKTOP ===== */
.hbd-cat-list{
  display:block;
}

.hbd-cat-dropdown{
  display:none;
}

/* ===== TABLET + MOBILE ===== */
@media(max-width:992px){

.hbd-cat-list{
  display:none;
}

.hbd-cat-dropdown{
  display:block;
}

}

.hbd-category-dropdown{
  position:relative;
  margin-top:15px;
}

.hbd-category-selected{
  background:#fff;
  border:1px solid #ddd;
  padding:14px 18px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-radius:12px;
  font-weight:500;
}

.hbd-cat-arrow{
  width:10px;
  height:10px;
  border-right:2px solid #6B0F1A;
  border-bottom:2px solid #6B0F1A;
  transform:rotate(45deg);
  transition:.3s;
}

.hbd-category-options{
  position:absolute;
  left:0;
  top:110%;
  width:100%;
  background:#fff;
  border:1px solid #eee;
  border-radius:12px;
  overflow:hidden;
  max-height:0;
  transition:.4s;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  z-index:10;
}

.hbd-category-dropdown.active .hbd-category-options{
  max-height:300px;
}

.hbd-category-option{
  padding:14px 18px;
  cursor:pointer;
}

.hbd-category-option:hover{
  background:#6B0F1A;
  color:#fff;
}

.hbd-category-dropdown.active .hbd-cat-arrow{
  transform:rotate(-135deg);
}
/*========================= Blog-detail.HTML End ==========================*/

/*=============================================================================================================
                                        Main All Page Style END
================================================================================================================*/

/*--------------- GLOBAL CTA SECTION ---------*/
.cta-image-section {
  position: relative;
  padding: 20px 0;
  background: url('https://i.pinimg.com/1200x/8c/b7/3d/8cb73de875e48e55adf59bd3328d6be2.jpg') top center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(79, 25, 11, 0.95) 0%, rgba(39, 13, 5, 0.75) 45%, rgba(0, 2, 3, 0.2) 100%);
}

/* content above overlay */
.cta-image-section .container {
  position: relative;
  z-index: 2;
}

/* title */
.cta-image-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

/* text */
.cta-image-text {
  color: #dbeafe;
  font-size: 17px;
  max-width: 600px;
}

/* buttons */
.cta-btn-main {
  background: var(--secondary-color);
  color: #000;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
}

.cta-btn-main:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.cta-btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
}

.cta-btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
}

/* trust text */
.cta-trust {
  color: #fde68a;
  font-size: 14px;
  margin-top: 10px;
}

/* ===============================
   CTA TABLET FIX (768px)
================================*/
@media (max-width:991px) {

  .cta-image-section {
    text-align: center;
  }

  .cta-overlay {
    background: #0000008e;
  }

  .cta-image-title {
    font-size: 34px;
    line-height: 1.3;
    max-width: 700px;
    margin: auto;
  }

  .cta-image-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 620px;
    margin: 15px auto 0;
  }

  .cta-image-section .btn {
    margin-top: 10px;
  }

  .cta-trust {
    margin-top: 15px;
    display: block;
  }
}

/* mobile */
@media(max-width:768px) {
  .cta-image-section {
    padding: auto;
  }

  .cta-image-title {
    font-size: 22px;
  }

  .cta-image-section {
    text-align: center;
  }

  .cta-image-text {
    font-size: 15px;
  }

  .cta-btn-main {
    display: none;
  }
}

/*-------------- CTA END --------------*/
/*==================================
            Contact page
  =====================================*/
/* CONTACT PAGE */
.hc-contact-section{
  padding:90px 0 0;
  background:#faf8f6;
  font-family:'Poppins',sans-serif;
}

.hc-container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.hc-contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}

/* FORM */
.hc-form-title{
  font-family:'Playfair Display',serif;
  margin-bottom:25px;
}

.hc-input-group{
  margin-bottom:20px;
}

.hc-input-group label{
  display:block;
  margin-bottom:6px;
  font-weight:500;
}

.hc-input-group input,
.hc-input-group textarea{
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:8px;
  transition:.3s;
}

.hc-input-group input:focus,
.hc-input-group textarea:focus{
  border-color:#6B0F1A;
  outline:none;
}

.hc-input-group textarea{
  height:140px;
  resize:none;
}

.hc-btn{
  background:#D4AF37;
  color:#000;
  padding:14px 30px;
  border:none;
  border-radius:8px;
  font-weight:600;
  transition:.3s;
}

.hc-btn:hover{
  background:#6B0F1A;
  color:#fff;
}

/* INFO */
.hc-tag{
  color:#D4AF37;
  font-weight:600;
}

.hc-info-title{
  font-family:'Playfair Display',serif;
  margin:10px 0 20px;
}

.hc-info-text{
  color:#666;
  margin-bottom:25px;
  line-height:1.7;
}

.hc-info-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.hc-info-box h6{
  font-weight:600;
  color:#6B0F1A;
}

.hc-social{
  margin-top:30px;
}

.hc-social-icons i{
  background:#6B0F1A;
  color:#fff;
  padding:10px;
  margin-right:8px;
  border-radius:50%;
  transition:.3s;
}

.hc-social-icons i:hover{
  background:#D4AF37;
  color:#000;
}

/* MAP */
.hc-map iframe{
  width:100%;
  height:400px;
  border:0;
  margin-top:60px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .hc-contact-wrapper{
    grid-template-columns:1fr;
  }
  .hc-contact-section{
    padding: 30px 0;
  }
}
@media screen and (max-width:575px){
  .hc-info-box{
    grid-template-columns:1fr;
  }
  .hc-contact-info{
    text-align: center;
  }
  .hc-form-title{
    text-align: center;
  }
  .hc-btn{
    display: block;
    margin: auto;
  }

}
/* ===== MOBILE & TABLET ORDER FIX ===== */
@media(max-width:992px){

  .hc-contact-wrapper{
    display:flex;
    flex-direction:column;
  }

  .hc-contact-info{
    order:-1;   /* Move info to top */
  }

  .hc-contact-form{
    order:1;
  }

}

/*==================================
            Contact page END
  =====================================*/