html, body, div, span, applet,
object, iframe, h5, h6,
blockquote, pre, a, abbr, acronym, address,
big, cite, code, del, dfn, em,
img, ins, kbd, q, s, samp, small, strike,
strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav,
output, ruby, section, summary,
time, mark, audio, video, h1, h2, h3, p {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption,
figure, footer, header, hgroup,
menu, nav, section {
  display: block;
}

ol,
ul {
  list-style: none;
}

div:focus {
  outline: none;
}

a, a:visited {
  color: inherit;
  text-decoration: none;
}

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

textarea, select, input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  border: none;
  text-align: left;
  font-size: 1em;
  vertical-align: middle;
  padding: 10px 15px;
  margin-bottom: 12px;
}

input, textarea {
  box-shadow: none !important;
  border-radius: 0;
}

input:focus, textarea:focus, select:focus, option:focus {
  outline: none;
}

p {
  margin-bottom: 15px;
}

body {
  color: #000;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  overflow-x: hidden !important;
}

body.hide_scroll {
  padding-right: 17px;
  overflow-y: hidden !important;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.clear {
  clear: both;
}

.upper {
  text-transform: uppercase;
}

.lower {
  text-transform: lowercase !important;
}

.posrel {
  position: relative;
}

.posabs {
  position: absolute;
}

.mar0auto {
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.no-padding {
  padding-left: 0px;
  padding-right: 0px;
}

.no-margin {
  margin-left: 0px;
  margin-right: 0px;
}

.maze_o {
  color: #ff9600;
}

.maze_b {
  color: #000;
}

.text_main_color {
  color: #000;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::-moz-selection { /* Code for Firefox */
  color: #000;
  background: #000;
}

::selection {
  color: #fff;
  background: #000;
}

:focus {
  outline: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1000;
  padding: 0;
  height: 80px;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: #d4a574;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 70px;
}
.site-header.scrolled .site-logo .logo-text .brand-name,
.site-header.scrolled .main-navigation .nav-menu li a,
.site-header.scrolled .header-actions .header-icons .header-icon {
  color: #fff;
}
.site-header.scrolled .main-navigation .nav-menu li.menu-item-has-children::after {
  border-top-color: #fff;
}
.site-header.scrolled .header-actions .mobile-menu-toggle span {
  background: #fff;
}
.site-header .header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  z-index: 1;
  position: relative;
}
@media (max-width: 991px) {
  .site-header .header-container {
    padding: 0 20px;
  }
}
.site-header .site-logo .logo-text {
  text-decoration: none;
}
.site-header .site-logo .logo-text .brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}
.site-header .site-logo img {
  max-height: 40px;
  width: auto;
}
.site-header .main-navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .site-header .main-navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: left 0.3s ease;
    z-index: 999;
    padding: 80px 20px 40px 20px;
    transform: none;
    overflow-y: auto;
    z-index: 10;
  }
  .site-header .main-navigation.active {
    left: 0;
  }
}
.site-header .main-navigation .nav-menu {
  display: flex;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
@media (max-width: 991px) {
  .site-header .main-navigation .nav-menu {
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
.site-header .main-navigation .nav-menu li {
  position: relative;
}
.site-header .main-navigation .nav-menu li a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 25px 0;
  display: block;
}
@media (max-width: 991px) {
  .site-header .main-navigation .nav-menu li a {
    padding: 20px 40px;
    font-size: 20px;
    border-bottom: none;
    color: #000;
    text-align: center;
    width: 100%;
  }
}
.site-header .main-navigation .nav-menu li a:hover {
  color: #d4a574;
}
.site-header .main-navigation .nav-menu li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  transition: border-color 0.3s ease;
}
@media (max-width: 991px) {
  .site-header .main-navigation .nav-menu li.menu-item-has-children::after {
    display: none;
  }
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-header .header-actions .header-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}
.site-header .header-actions .header-icons .header-icon {
  position: relative;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-header .header-actions .header-icons .header-icon:hover {
  color: #d4a574;
}
.site-header .header-actions .header-icons .header-icon.cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #d4a574;
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.site-header .header-actions .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 20px;
}
@media (max-width: 991px) {
  .site-header .header-actions .mobile-menu-toggle {
    display: flex;
  }
}
.site-header .header-actions .mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 1px;
}
.site-header .header-actions .mobile-menu-toggle.active {
  z-index: 12;
}
.site-header .header-actions .mobile-menu-toggle.active span {
  background: #000;
}
.site-header .header-actions .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.site-header .header-actions .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.site-header .header-actions .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

body.menu-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

body.menu-open .site-header .site-logo,
body.menu-open .site-header .header-icons {
  opacity: 0;
  visibility: hidden;
}

.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider .hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-slider .hero-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider .hero-swiper .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slider .hero-swiper .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-slider .hero-swiper .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slider .hero-swiper .slide-content .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}
@media (max-width: 991px) {
  .hero-slider .hero-swiper .slide-content .container {
    padding: 0 20px;
  }
}
.hero-slider .hero-swiper .slide-content .content-wrapper {
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero-slider .hero-swiper .slide-content .content-wrapper {
    max-width: 100%;
  }
}
.hero-slider .hero-swiper .slide-content .slide-subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease forwards 0.3s;
}
.hero-slider .hero-swiper .slide-content .slide-title {
  font-size: 64px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease forwards 0.6s;
}
@media (max-width: 768px) {
  .hero-slider .hero-swiper .slide-content .slide-title {
    font-size: 42px;
  }
}
@media (max-width: 576px) {
  .hero-slider .hero-swiper .slide-content .slide-title {
    font-size: 36px;
  }
}
.hero-slider .hero-swiper .slide-content .slide-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease forwards 0.9s;
}
@media (max-width: 768px) {
  .hero-slider .hero-swiper .slide-content .slide-description {
    font-size: 16px;
  }
}
.hero-slider .hero-swiper .slide-content .slide-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease forwards 1.2s;
}
.hero-slider .hero-swiper .swiper-pagination {
  bottom: 30px !important;
}
.hero-slider .hero-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}
.hero-slider .hero-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}
.hero-slider .hero-swiper .swiper-button-next,
.hero-slider .hero-swiper .swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  margin-top: -25px;
}
.hero-slider .hero-swiper .swiper-button-next::after,
.hero-slider .hero-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 300;
}
.hero-slider .hero-swiper .swiper-button-next:hover,
.hero-slider .hero-swiper .swiper-button-prev:hover {
  opacity: 0.7;
}
.hero-slider .hero-swiper .swiper-button-next {
  right: 30px;
}
.hero-slider .hero-swiper .swiper-button-prev {
  left: 30px;
}

.btn-white {
  background: #fff;
  color: #1a1a1a;
  padding: 16px 40px;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn.btn-primary {
  background: #d4a574;
  color: #fff;
}
.btn.btn-primary:hover {
  background: #c39463;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}
.btn.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}
.btn.btn-secondary:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-2px);
}
.btn.btn-light {
  background: #fff;
  color: #1a1a1a;
}
.btn.btn-light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.features-section {
  padding: 80px 20px;
  background: #fff;
}
.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 991px) {
  .features-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
}
.features-section .feature-item {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
}
.features-section .feature-item:hover {
  transform: translateY(-10px);
}
.features-section .feature-item:hover .feature-icon {
  background: #d4a574;
  color: #fff;
}
.features-section .feature-item .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #fff5f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #d4a574;
  transition: all 0.3s ease;
}
.features-section .feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.features-section .feature-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

.about-section {
  padding: 100px 20px;
  background: #f8f9fa;
}
.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-section .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991px) {
  .about-section .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.about-section .about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.about-section .about-text .section-subtitle {
  display: inline-block;
  color: #d4a574;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}
.about-section .about-text .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .about-section .about-text .section-title {
    font-size: 32px;
  }
}
.about-section .about-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-section .about-text .btn {
  margin-top: 10px;
}

.products-section {
  padding: 100px 20px;
  background: #fff;
}
.products-section .container {
  max-width: 1400px;
  margin: 0 auto;
}
.products-section .section-header {
  text-align: left;
  margin-bottom: 60px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .products-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.products-section .section-header .section-subtitle {
  display: block;
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
  margin-bottom: 10px;
}
.products-section .section-header .section-title {
  font-size: 42px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}
@media (max-width: 768px) {
  .products-section .section-header .section-title {
    font-size: 32px;
  }
}
.products-section .section-header .view-all-link {
  color: #1a1a1a;
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.3s ease;
  font-weight: 400;
}
.products-section .section-header .view-all-link:hover {
  color: #d4a574;
}
.products-section .mobile-products {
  display: none;
}
@media (max-width: 991px) {
  .products-section .desktop-products {
    display: none !important;
  }
  .products-section .mobile-products {
    display: block;
  }
}
.products-section .products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}
@media (max-width: 1200px) {
  .products-section .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 991px) {
  .products-section .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .products-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.products-section .product-card {
  background: #fff;
  transition: all 0.3s ease;
  position: relative;
}
.products-section .product-card .product-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}
.products-section .product-card .product-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.products-section .product-card .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}
.products-section .product-card .product-image .hover-image {
  opacity: 0;
}
.products-section .product-card:hover .product-image .main-image {
  opacity: 0;
}
.products-section .product-card:hover .product-image .hover-image {
  opacity: 1;
}
.products-section .product-card .product-actions {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.products-section .product-card:hover .product-actions {
  opacity: 1;
}
.products-section .product-card .action-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #2c2c2c;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}
.products-section .product-card .action-btn:hover {
  background: #1a1a1a;
  transform: scale(1.1);
}
.products-section .product-card .product-info {
  padding: 20px 10px;
  text-align: left;
}
.products-section .product-card .product-vendor {
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.products-section .product-card .product-title {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 8px;
}
.products-section .product-card .product-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.products-section .product-card .product-title a:hover {
  color: #d4a574;
}
.products-section .product-card .product-price-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.products-section .product-card .product-price {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}
.products-section .product-card .product-price del {
  color: #999;
  font-weight: 400;
  margin-right: 5px;
}
.products-section .product-card .product-price ins {
  text-decoration: none;
  color: #e74c3c;
}
.products-section .products-swiper {
  position: relative;
  padding-bottom: 50px;
}
.products-section .products-swiper .swiper-pagination {
  bottom: 0;
}
.products-section .products-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ddd;
  opacity: 1;
}
.products-section .products-swiper .swiper-pagination-bullet-active {
  background: #2c2c2c;
}
.products-section .section-footer {
  text-align: center;
}

.testimonials-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff5f7 0%, #f8f9fa 100%);
}
.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-section .section-header .section-subtitle {
  display: inline-block;
  color: #d4a574;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}
.testimonials-section .section-header .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .testimonials-section .section-header .section-title {
    font-size: 32px;
  }
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 991px) {
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials-section .testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.testimonials-section .testimonial-card .testimonial-rating {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 20px;
}
.testimonials-section .testimonial-card .testimonial-rating i {
  margin-right: 3px;
}
.testimonials-section .testimonial-card .testimonial-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonials-section .testimonial-card .testimonial-author strong {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
}

.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #d4a574 0%, #c39463 100%);
  color: #fff;
}
.cta-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.cta-section .cta-content {
  text-align: center;
}
.cta-section .cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cta-section .cta-content h2 {
    font-size: 32px;
  }
}
.cta-section .cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Page Header Styles */
.page-header {
  padding: 150px 20px 80px;
  background: linear-gradient(135deg, #d4a574 0%, #c39463 100%);
  color: #fff;
  text-align: center;
}
.page-header .container {
  max-width: 800px;
  margin: 0 auto;
}
.page-header .page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .page-header .page-title {
    font-size: 36px;
  }
}
.page-header .page-subtitle {
  font-size: 18px;
  opacity: 0.95;
  margin: 0;
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 20px;
  background: #f9f9f9;
}
.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section .contact-form-wrapper,
.contact-section .contact-info-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}
@media (max-width: 991px) {
  .contact-section .contact-form-wrapper {
    margin-bottom: 30px;
  }
}
.contact-section .section-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.contact-section .section-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}
.contact-section .contact-form .form-group {
  margin-bottom: 25px;
}
.contact-section .contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.contact-section .contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}
.contact-section .contact-form .form-control:focus {
  outline: none;
  border-color: #d4a574;
}
.contact-section .contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}
.contact-section .contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.contact-section .contact-info-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-section .contact-info-item .info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4a574 0%, #c39463 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-section .contact-info-item .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.contact-section .contact-info-item .info-content p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.contact-section .contact-info-item .info-content a {
  color: #d4a574;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-section .contact-info-item .info-content a:hover {
  color: #c39463;
}
.contact-section .social-links {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
}
.contact-section .social-links h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.contact-section .social-links .social-icons {
  display: flex;
  gap: 15px;
}
.contact-section .social-links .social-icon {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-section .social-links .social-icon:hover {
  background: linear-gradient(135deg, #d4a574 0%, #c39463 100%);
  color: #fff;
  transform: translateY(-3px);
}

/* Map Section Styles */
.map-section {
  padding: 0 20px 80px;
  background: #f9f9f9;
}
.map-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.map-section .map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.map-section .map-wrapper iframe {
  display: block;
}

/* About Content Section Styles */
.about-content-section {
  padding: 80px 20px;
  background: #fff;
}
.about-content-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-content-section .about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .about-content-section .about-image {
    margin-bottom: 30px;
  }
}
.about-content-section .about-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-content-section .about-text .section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.about-content-section .about-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Values Section Styles */
.values-section {
  padding: 80px 20px;
  background: #f9f9f9;
}
.values-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.values-section .section-header {
  margin-bottom: 50px;
}
.values-section .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.values-section .section-description {
  font-size: 18px;
  color: #666;
}
.values-section .value-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}
.values-section .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.values-section .value-card .value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4a574 0%, #c39463 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
}
.values-section .value-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}
.values-section .value-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Team Section Styles */
.team-section {
  padding: 80px 20px;
  background: #fff;
}
.team-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.team-section .section-header {
  margin-bottom: 50px;
}
.team-section .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.team-section .section-description {
  font-size: 18px;
  color: #666;
}
.team-section .team-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.team-section .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.team-section .team-card .team-image {
  position: relative;
  overflow: hidden;
  height: 350px;
}
.team-section .team-card .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.team-section .team-card:hover .team-image img {
  transform: scale(1.05);
}
.team-section .team-card .team-info {
  padding: 30px 25px;
  text-align: center;
}
.team-section .team-card .team-info h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 5px;
}
.team-section .team-card .team-info .team-role {
  font-size: 14px;
  color: #d4a574;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.team-section .team-card .team-info .team-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
#searchToggle{
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.wc-block-components-checkout-place-order-button{
  border: 1px solid hsla(0,0%,7%,.11) !important;
  background-color: transparent !important;
}