@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap");
@import url("font-awesome.min.css");

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --gold: #C9A96E;
  --gold-light: #D4BC8B;
  --gold-dark: #A68B5B;
  --gold-glow: rgba(201, 169, 110, 0.3);
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --charcoal: #2D2D2D;
  --dark-card: #141414;
  --white: #F5F0E8;
  --white-pure: #ffffff;
  --gray: #8A8A8A;
  --gray-light: #3a3a3a;
  --danger: #c0392b;

  /* Added aliases used in new blade templates */
  --primary-gold: #d4af37;
  --dark-bg: #1a1a1a;
  --dark-surface: #2a2a2a;
}
/* ===== BASE STYLES ===== */
body {
  font-family: "Inter", sans-serif;
  color: var(--white);
  background-color: var(--black);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== LAYOUT UTILITIES ===== */
.layout_padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

/* ===== HEADING STYLES ===== */
.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading_container h2 {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 3px;
  position: relative;
}

.heading_container h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 15px;
}

.heading_container h2 span {
  color: var(--gold);
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== HEADER SECTION ===== */
.hero_area {
  padding: 0 45px;
}

.hero_area.sub_pages {
  height: auto;
}

#navbarSupportedContent {
  width: 100%;
  background: linear-gradient(135deg, var(--black-light) 0%, var(--charcoal) 100%);
  border: 1px solid rgba(201, 169, 110, 0.15);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
  border-radius: 15px 15px 0 0;
  backdrop-filter: blur(10px);
}

#navbarSupportedContent.innerpage_navbar {
  background-color: var(--black-light);
  border-radius: 10px;
  -webkit-box-shadow: 0 0 15px 0 var(--gold-glow);
          box-shadow: 0 0 15px 0 var(--gold-glow);
}

#navbarSupportedContent.innerpage_navbar .nav-item.active .nav-link {
  background-color: rgba(201, 169, 110, 0.1);
}

#navbarSupportedContent .navbar-nav .nav-link {
  padding: 5px 25px;
  color: var(--gray);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

#navbarSupportedContent .navbar-nav .nav-link:hover {
  color: var(--gold);
}

#navbarSupportedContent .nav-item.active .nav-link {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
  color: var(--gold);
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--gold);
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-brand {
  margin: 15px 0;
  padding: 0;
}

.navbar-brand span {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", serif;
}

.custom_nav-container .nav_search-btn {
  padding: 0;
  border: none;
  color: var(--gold);
}

.custom_nav-container {
  z-index: 99999;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: var(--gold);
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--gold);
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.user_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 25px;
}

.user_option a {
  margin-right: 25px;
  color: var(--gold);
  transition: all 0.3s ease;
}

.user_option a:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.user_option a span {
  margin-left: 5px;
}

/* ===== SLIDER / HERO SECTION ===== */
.slider_section .slider_container {
  color: var(--white);
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 50px 25px;
  border-radius: 0 0 15px 15px;
  position: relative;
  overflow: hidden;
}

.slider_section .slider_container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 45px;
}

.slider_section .img-box img {
  width: 275px;
  filter: drop-shadow(0 10px 30px rgba(201, 169, 110, 0.2));
  transition: transform 0.5s ease;
}

.slider_section .img-box img:hover {
  transform: scale(1.05);
}

.slider_section .detail-box {
  padding-left: 45px;
  margin: 45px 0;
}

.slider_section .detail-box h1 {
  font-weight: bold;
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider_section .detail-box p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  max-width: 500px;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 12px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-top: 25px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

.slider_section .detail-box a:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.slider_section .carousel_btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--black-light);
  border: 1px solid rgba(201, 169, 110, 0.2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: -25px;
  left: 5%;
  padding: 7px 10px;
  border-radius: 5px 5px 0 0;
}

.slider_section .carousel_btn-box img {
  margin: 0 10px;
}

.slider_section .carousel_btn-box .carousel-control-prev,
.slider_section .carousel_btn-box .carousel-control-next {
  position: unset;
  height: 25px;
  width: 25px;
  background-repeat: no-repeat;
  opacity: 1;
  background-position: center;
  color: var(--gold);
  font-size: 14px;
}

/* ===== SHOP / PRODUCTS SECTION ===== */
.shop_section {
  background-color: var(--black);
}

.shop_section .heading_container {
  margin-bottom: 20px;
}

.shop_section .box {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
  padding: 10px;
  margin-top: 25px;
  border-radius: 10px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.shop_section .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shop_section .box:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow);
}

.shop_section .box:hover::before {
  opacity: 1;
}

.shop_section .box a {
  color: var(--white);
}

.shop_section .box .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 30px;
  height: 245px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.03), transparent);
  border-radius: 8px;
}

.shop_section .box .img-box img {
  max-width: 100%;
  max-height: 145px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.shop_section .box:hover .img-box img {
  transform: scale(1.08);
}

.shop_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 5px;
}

.shop_section .box .detail-box h6 {
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

.shop_section .box .detail-box h6 span {
  color: var(--gold);
  font-weight: 700;
}

.shop_section .box .new {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--gold);
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  font-size: 15px;
  font-weight: 700;
}

.shop_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.shop_section .btn-box a {
  display: inline-block;
  padding: 10px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop_section .btn-box a:hover {
  background: transparent;
  color: var(--gold);
}

/* ===== PRODUCT ACTION BUTTONS ===== */
.shop_section .box .btn-danger {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.3s ease;
}

.shop_section .box .btn-danger:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 15px var(--gold-glow);
}

.shop_section .box .btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: 1px solid var(--gold);
  color: var(--black);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.3s ease;
}

.shop_section .box .btn-primary:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

/* ===== SAVING SECTION ===== */
.saving_section {
  padding-left: 45px;
  padding-right: 45px;
}

.saving_section .box {
  padding-top: 45px;
  background: linear-gradient(135deg, var(--charcoal), var(--black-light));
  color: var(--white);
  border-radius: 15px;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.saving_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.saving_section .img-box {
  padding: 15px 0 0 25px;
}

.saving_section .img-box img {
  width: 100%;
}

.saving_section .detail-box {
  padding: 0 25px;
}

.saving_section .detail-box p {
  margin-top: 5px;
  color: var(--gray);
}

.saving_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 35px -5px 0;
}

.saving_section .detail-box .btn-box a {
  width: 165px;
  text-align: center;
  margin: 5px;
}

.saving_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 0;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-weight: 600;
}

.saving_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: var(--gold);
}

.saving_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 0;
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.saving_section .detail-box .btn-box .btn2:hover {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ===== WHY SECTION ===== */
.why_section {
  background-color: var(--black);
}

.why_section .box {
  text-align: center;
  margin-top: 45px;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 35px 25px;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.why_section .box:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 15px var(--gold-glow);
}

.why_section .box .img-box {
  margin-bottom: 15px;
}

.why_section .box .img-box svg {
  width: 55px;
  height: auto;
  fill: var(--gold);
}

.why_section .box .detail-box h5 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 10px;
}

.why_section .box .detail-box p {
  color: var(--gray);
  font-size: 14px;
}

/* ===== GIFT SECTION ===== */
.gift_section {
  padding-left: 45px;
  padding-right: 45px;
}

.gift_section .box {
  background: linear-gradient(135deg, var(--charcoal), var(--black-light));
  border-radius: 15px;
  color: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.gift_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gift_section .img-box {
  padding: 60px 0 60px 25px;
}

.gift_section .img-box img {
  width: 100%;
}

.gift_section .detail-box {
  padding: 0 25px;
}

.gift_section .detail-box p {
  margin-top: 5px;
  color: var(--gray);
}

.gift_section .detail-box .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 35px -5px 0;
}

.gift_section .detail-box .btn-box a {
  width: 165px;
  text-align: center;
  margin: 5px;
}

.gift_section .detail-box .btn-box .btn1 {
  display: inline-block;
  padding: 10px 0;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  font-weight: 600;
}

.gift_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: var(--gold);
}

.gift_section .detail-box .btn-box .btn2 {
  display: inline-block;
  padding: 10px 0;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.gift_section .detail-box .btn-box .btn2:hover {
  background-color: var(--gold);
  color: var(--black);
}

/* ===== CONTACT SECTION ===== */
.contact_section {
  position: relative;
  background-color: var(--black);
}

.contact_section .container-bg {
  -webkit-box-shadow: 0 0 25px 0 rgba(201, 169, 110, 0.05);
          box-shadow: 0 0 25px 0 rgba(201, 169, 110, 0.05);
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.contact_section .heading_container {
  margin-bottom: 30px;
}

.contact_section .row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.contact_section form {
  padding-right: 35px;
  padding: 45px 20px;
}

.contact_section input {
  width: 100%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: rgba(201, 169, 110, 0.05);
  outline: none;
  color: var(--white);
  border-radius: 5px;
  font-family: "Inter", sans-serif;
  transition: border-color 0.3s ease;
}

.contact_section input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.contact_section input::-webkit-input-placeholder {
  color: var(--gray);
}

.contact_section input:-ms-input-placeholder {
  color: var(--gray);
}

.contact_section input::-ms-input-placeholder {
  color: var(--gray);
}

.contact_section input::placeholder {
  color: var(--gray);
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  display: inline-block;
  padding: 12px 45px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: 1px solid var(--gold);
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
  display: block;
  margin: 35px auto 0 auto;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Inter", sans-serif;
}

.contact_section button:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.contact_section .map_container {
  height: 100%;
  min-height: 375px;
}

.contact_section .map_container .map-responsive {
  height: 100%;
}

/* ===== CLIENT / TESTIMONIAL SECTION ===== */
.client_section {
  background-color: var(--black);
}

.client_section .heading_container {
  margin-bottom: 20px;
}

.client_section .box {
  margin: 15px 45px;
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.15);
  -webkit-box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 10px;
}

.client_section .box .client_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.client_section .box .client_info .client_name h5 {
  font-weight: 600;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: var(--gray);
  font-weight: normal;
  font-size: 15px;
  font-family: "Inter", sans-serif;
}

.client_section .box .client_info i {
  font-size: 24px;
  color: var(--gold);
  opacity: 0.5;
}

.client_section .box p {
  margin-top: 15px;
  color: var(--white);
  line-height: 1.8;
  font-style: italic;
}

.client_section .box .rating {
  margin-top: 10px;
}

.client_section .box .rating i {
  color: var(--gold);
  margin-right: 3px;
}

.client_section .carousel-control-prev,
.client_section .carousel-control-next {
  width: 45px;
  height: 125px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 1;
  font-size: 28px;
  font-weight: bold;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 5px;
}

.client_section .carousel-control-prev:hover,
.client_section .carousel-control-next:hover {
  box-shadow: 0 0 20px var(--gold-glow);
}

.client_section .carousel-control-prev {
  left: 0;
}

.client_section .carousel-control-next {
  right: 0;
}

/* ===== INFO / FOOTER SECTION ===== */
.info_section {
  position: relative;
  background: linear-gradient(135deg, var(--black-light) 0%, var(--charcoal) 100%);
  border: 1px solid rgba(201, 169, 110, 0.1);
  color: var(--white);
  margin: 0 45px 45px;
  border-radius: 0 0 15px 15px;
}

.info_section .social_container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
  margin-bottom: 30px;
}

.info_section .social_container .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info_section .social_container .social_box a {
  margin: 0 12px;
  color: var(--gold);
  font-size: 24px;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info_section .social_container .social_box a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--gold-glow);
}

.info_section .info_form form input {
  outline: none;
  width: 100%;
  padding: 10px 15px;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--white);
  border-radius: 5px;
}

.info_section .info_form form input::placeholder {
  color: var(--gray);
}

.info_section .info_form form button {
  padding: 10px 35px;
  outline: none;
  border: 1px solid var(--gold);
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.info_section .info_form form button:hover {
  background: transparent;
  color: var(--gold);
}

.info_section .row > div {
  margin-top: 25px;
}

.info_section a {
  text-transform: none;
}

.info_section h6 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  letter-spacing: 2px;
}

.info_section h5 {
  color: var(--gold);
}

.info_section p {
  color: var(--gray);
}

.info_section .info_link-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.info_section .info_link-box a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.info_section .info_link-box a i {
  color: var(--gold);
  margin-right: 10px;
  font-size: 18px;
  width: 20px;
  text-align: center;
}

.info_section .info_link-box a span {
  color: var(--gray);
  transition: color 0.3s ease;
}

.info_section .info_link-box a:hover span {
  color: var(--gold);
}

/* ===== FOOTER ===== */
.footer_section {
  margin-top: 45px;
  font-weight: 500;
}

.footer_section p {
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  width: 80%;
  color: var(--gray);
  font-size: 14px;
}

.footer_section a {
  color: var(--gold);
  transition: color 0.3s ease;
}

.footer_section a:hover {
  color: var(--gold-light);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 99999;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
}

/* ===== GOLD SHIMMER ANIMATION ===== */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

/* ===== GENERAL BUTTON STYLES ===== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: 1px solid var(--gold);
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ===== CARD STYLES ===== */
.dark-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.dark-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===== BUTTON OVERRIDES ===== */
.btn-primary,
.btn-primary:focus {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  color: var(--black) !important;
}

.btn-danger,
.btn-danger:focus {
  background-color: var(--danger) !important;
  border-color: var(--danger) !important;
  color: var(--white-pure) !important;
  font-weight: 600;
}
.btn-danger:hover {
  background-color: #a93226 !important;
  border-color: #a93226 !important;
  color: var(--white-pure) !important;
}

.btn-success,
.btn-success:focus {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 600;
}
.btn-success:hover {
  background-color: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  color: var(--black) !important;
}

/* Product card price text */
.detail-box h6 span {
  color: var(--gold) !important;
  font-weight: 700;
}