/* Page fade-in on load */
body.fade-in {
  opacity: 0;
  animation: fadeIn ease-in 1s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  /* line-height: 1.6; */
  color: #333;
  background: #fff;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  color: #6b4f4f;
}

/* Navbar */
/* Beautiful Glassy Navigation Bar */
/* Glassy Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.navbar .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 1px;
}

.logo img{
  width: 80px;
  vertical-align: middle;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  transition: all 0.3s ease;
}

.nav-links li a {
  color: #080808;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #d4af37;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #d4af37;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  transition: transform 0.3s ease;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Animation: Hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo {
    font-size: 1rem !important;
  }

  .navbar .container {
    width: 100% !important;
  }

  .nav-links {
    position: absolute;
    top: 100% !important;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    display: none;
    text-align: center;
    padding: 0;
    overflow: hidden;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
  }

  .nav-links li {
    margin: 12px 0 !important;
  }

  .nav-links.show {
    display: flex;
    padding: 20px 0 !important;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li a {
    font-size: 0.9rem !important;
  }

  .hamburger {
    display: flex !important;
  }
}

/* Base Navbar (Transparent on top) */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  /* background: rgba(255, 255, 255, 0.05); */
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Scrolled Navbar Style */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links a {
  color: #333;
}

.navbar.scrolled .logo {
  color: #d4af37;
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 16px;
  }

  .navbar.scrolled .nav-links a {
    color: #ffffff;
  }

  .logo {
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .nav-links {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    align-items: center;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.4s ease-in-out;
  }

  .nav-links.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links li a {
    font-size: 0.95rem;
    color: #fff;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .scrolled .hamburger span {
    width: 24px;
    height: 3px;
    background-color: #9c9c9c;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}



/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  padding-top: 80px;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.btn {
  background: #d4af37;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Responsive Hero Slider */
@media (max-width: 1024px) {
  .caption {
    padding: 40px 30px !important;
  }

  .caption h1 {
    font-size: 2.5rem !important;
  }

  .caption p {
    font-size: 1.1rem !important;
  }

  .caption .btn {
    padding: 10px 25px !important;
    font-size: 0.95rem !important;
  }

  .slider-btn {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.8rem !important;
  }
}

@media (max-width: 768px) {
  .caption {
    padding: 30px 20px !important;
    max-width: 90% !important;
  }

  .caption h1 {
    font-size: 2rem !important;
    ;
    margin-bottom: 10px !important;
    ;
  }

  .caption p {
    font-size: 1rem !important;
    ;
    margin-bottom: 20px !important;
    ;
  }

  .caption .btn {
    padding: 10px 20px !important;
    ;
    font-size: 0.9rem !important;
    ;
  }

  .slider-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.6rem !important;
  }

  .slider-btn.prev {
    left: 15px !important;
  }

  .slider-btn.next {
    right: 15px !important;
  }
}

@media (max-width: 480px) {
  .caption h1 {
    font-size: 1.5rem !important;
  }

  .caption p {
    font-size: 0.95rem !important;
  }

  .caption .btn {
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
  }

  .slider-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.4rem !important;
  }
}


/* Sections */
.section {
  padding: 40px 20px;
  text-align: center;
  max-width: 85%;
  margin: auto;
}

.about p,
.contact p {
  max-width: 600px;
  margin: auto;
}


/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 60px;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 10px;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gorgeous Caption */
.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 40px;
  border-radius: 15px;
  max-width: 700px;
  animation: fadeInUp 1s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.caption h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.caption p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-family: 'Open Sans', sans-serif;
}

.caption .btn {
  background: #d4af37;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.caption .btn:hover {
  background: #c0982b;
}

/* Slider Buttons */
/* Enhanced Hero Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #d4af37;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 25px;
}

.slider-btn.next {
  right: 25px;
}


/* Gorgeous About Section */
/* About Section: Base Layout */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-text {
  flex: 1 1 400px;
  color: #333;
  font-family: 'Open Sans', sans-serif;
}

/* Typography */
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #6b4f4f;
  font-family: 'Playfair Display', serif;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-text .btn {
  background-color: #d4af37;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.about-text .btn:hover {
  background-color: #b8942e;
}

/* Tablet and Below */
@media (max-width: 1024px) {
  .about-container {
    padding: 40px 20px;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

/* Mobile (below 768px) */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 0;
  }

  .about {
    padding: 30px 0;
  }

  .about-image {
    flex: 0;
    text-align: center;
  }

  .about-text {
    padding: 0 15px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-text .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Small phones (below 480px) */
@media (max-width: 480px) {
  .about-text h2 {
    font-size: 1.7rem;
  }

  .about-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .about-text .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}




/* Section Title */
.section-title {
  font-size: 2.5rem;
  color: #6b4f4f;
  margin-bottom: 30px;
}

/* Product Slider Styles */


/* Products */
.products {
  background: khaki;
  margin: 0;
  max-width: 100%;
}

.product-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-card {
  background: #f9f7f4;
  border-radius: 10px;
  padding: 20px;
  width: 360px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
  max-width: 100%;
  border-radius: 10px;
}

.product-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0px 56px;
  width: 85%;
  margin: auto;
}

.product-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-card {
  background: #fefcf8;
  border-radius: 15px;
  padding: 20px;
  min-width: 250px;
  flex: 0 0 auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin-bottom: 8px;
  color: #6b4f4f;
  font-size: 1.2rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Arrows */
/* Elegant Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 1.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
  background-color: #d4af37;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.slider-arrow.left {
  left: 15px;
}

.slider-arrow.right {
  right: 15px;
}

/* Responsive Product Slider Adjustments */

/* Tablets */
@media (max-width: 1024px) {
  .product-card {
    min-width: 220px;
    padding: 18px;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }

  .product-card p {
    font-size: 0.9rem;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .product-slider-wrapper {
    padding: 0;
    width: 100%;
    margin: 30px auto;
  }

  .product-card {
    min-width: 75%;
    padding: 16px;
    width: 100%;
    margin: 21px auto;
  }

  .product-card img {
    width: 100%;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.85rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .slider-arrow.left {
    left: 10px;
  }

  .slider-arrow.right {
    right: 10px;
  }
}

/* Very small screens */
@media (max-width: 480px) {
  .product-card {
    min-width: 90%;
    padding: 14px;
  }

  .product-card h3 {
    font-size: 0.95rem;
  }

  .product-card p {
    font-size: 0.8rem;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .slider-arrow.left,
  .slider-arrow.right {
    top: 45%;
  }
}


/* New Arrival Slider */
.new-arrival {
  padding: 60px 20px;
  background: #fefcf8;
  text-align: center;
  max-width: 100%;
  margin: 0;
}
.arrival-slider-wrapper {
  position: relative;
  width: 80%;
  margin: auto;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.slider-arrow.left {
  left: -40px;
}

.slider-arrow.right {
  right: -40px;
}

.slider-arrow:hover {
  background-color: gold;
  color: white;
}


.arrival-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.arrival-slider {
  display: flex;
  gap: 23px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.arrival-slider::-webkit-scrollbar {
  display: none;
}

/* Slider Card */
.arrival-card {
  position: relative;
  flex: 0 0 calc(25% - 22.5px);
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.arrival-card:hover {
  transform: scale(1.04);
}

.arrival-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(0.85);
}

.arrival-card:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

/* Overlay Text */
.x-arrival-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.15));
  color: #fff;
  text-align: left;
}

.x-arrival-overlay h3 {
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 5px;
}

.x-arrival-overlay p {
  font-size: 0.95rem;
  margin: 0;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #d4af37;
  color: #2e1f1f;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.slider-arrow:hover {
  background: #fff;
  color: #d4af37;
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

/* Responsive Slider */
@media (max-width: 1200px) {
  .arrival-card {
    flex: 0 0 calc(33.33% - 20px);
  }
}

@media (max-width: 900px) {
  .arrival-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .arrival-card {
    flex: 0 0 100%;
  }
}



/* Tab Section with x- prefix */
.x-tab-section {
  background: #fff7ec;
  padding: 60px 20px;
  text-align: center;
  max-width: 100%;
}

.x-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.x-tab-button {
  padding: 12px 25px;
  border: 2px solid #d4af37;
  background: transparent;
  color: #6b4f4f;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.x-tab-button.active,
.x-tab-button:hover {
  background: #d4af37;
  color: #fff;
}

.x-tab-content {
  margin-top: 20px;
  max-width: 82%;
  margin: auto;
}

.x-tab-pane {
  display: none;
  animation: x-fadeIn 0.5s ease-in-out;
}

.x-tab-pane.active {
  display: block;
}

.x-tab-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin-top: 20px;
}

.x-tab-img {
  width: 370px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.x-tab-img:hover {
  transform: scale(1.05);
}

/* Tablets and below */
@media (max-width: 1024px) {
  .x-tab-img {
    width: 300px;
  }

  .x-tab-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Mobile devices (below 768px) */
@media (max-width: 768px) {
  .x-tab-grid {
    gap: 20px;
  }

  .x-tab-img {
    width: 90%;
    max-width: 100%;
  }

  .x-tab-button {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .x-tabs {
    gap: 10px;
    margin-bottom: 25px;
  }

  .x-tab-content {
    max-width: 95%;
  }
}

/* Small screens (below 480px) */
@media (max-width: 480px) {
  .x-tab-button {
    font-size: 0.85rem;
    padding: 6px 16px;
  }

  .x-tab-img {
    width: 100%;
    border-radius: 10px;
  }

  .x-tab-grid {
    gap: 15px;
  }
}



/* Elegant Footer */
.x-footer {
  background-color: #2e1f1f;
  color: #f3e6d8;
  padding: 60px 20px 30px;
  font-family: 'Open Sans', sans-serif;
}

.x-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.x-footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.x-footer-logo h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.x-footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #d4af37;
}

.x-footer-column ul {
  list-style: none;
  padding: 0;
}

.x-footer-column ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.x-footer-column a {
  text-decoration: none;
  color: #f3e6d8;
  transition: color 0.3s;
}

.x-footer-column a:hover {
  color: #d4af37;
}

.x-footer-contact i {
  margin-right: 8px;
  color: #d4af37;
  width: 20px;
}

.x-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  padding-top: 20px;
  color: #aaa;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .x-footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .x-footer-column {
    width: 100%;
  }

  .x-footer-logo h2 {
    text-align: center;
  }

  .x-footer-bottom {
    font-size: 0.85rem;
  }
}

/* Social Button Styles */
.x-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.x-social-btn {
  width: 40px;
  height: 40px;
  background: #d4af37;
  color: #2e1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.x-social-btn:hover {
  background: #fff;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Optional color variations */
.x-social-btn.fb {
  background: #3b5998;
  color: #fff;
}

.x-social-btn.ig {
  background: #e1306c;
  color: #fff;
}

.x-social-btn.tw {
  background: #1da1f2;
  color: #fff;
}

.x-social-btn.yt {
  background: #ff0000;
  color: #fff;
}

.x-social-btn.wa {
  background: #25D366;
  color: #fff;
}

.x-social-btn.map {
  background: #d4af37;
  color: #2e1f1f;
}

/* Responsive Footer Enhancements */

@media (max-width: 1024px) {
  .x-footer-column {
    flex: 1 1 45%;
  }

  .x-footer-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .x-footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 25px;
  }

  .x-footer-column {
    width: 100%;
  }

  .x-footer-logo h2 {
    text-align: left;
    font-size: 1.4rem;
  }

  .x-footer-column h3 {
    font-size: 1rem;
  }

  .x-footer-column ul li {
    font-size: 0.9rem;
  }

  .x-footer-contact li {
    font-size: 0.9rem;
  }

  .x-footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .x-footer {
    padding: 40px 15px 20px;
  }

  .x-footer-column {
    padding-bottom: 20px;
  }

  .x-footer-logo h2 {
    font-size: 1.2rem;
  }

  .x-footer-bottom {
    font-size: 0.8rem;
    padding-top: 15px;
  }

  .x-social-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}


/* Banner Section */
.x-banner-section {
  line-height: 0;
}

.x-banner-section img {
  width: 100%;
}







@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  /* Adjust padding and wrapper */
  .arrival-slider-wrapper {
    padding: 0;
  }

  .arrival-slider {
    gap: 20px;
    padding: 15px 0;
  }
}

/* Responsive Overlay Text */
@media (max-width: 768px) {
  .x-arrival-overlay h3 {
    font-size: 1rem;
  }

  .x-arrival-overlay p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .x-arrival-overlay {
    padding: 15px;
  }

  .x-arrival-overlay h3 {
    font-size: 0.95rem;
  }

  .x-arrival-overlay p {
    font-size: 0.8rem;
  }
}

/* Adjust slider arrows for smaller screens */
@media (max-width: 768px) {
  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .slider-arrow.left {
    left: 5px;
  }

  .slider-arrow.right {
    right: 5px;
  }
}

@media (max-width: 480px) {
  .slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
}


/* contact us  */

.contact-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #fffaf3, #f9f5ef);
  font-family: 'Canela', serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: stretch;
}

.contact-map {
  flex: 1 1 50%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
  flex: 1 1 40%;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.form-title {
  font-size: 2rem;
  color: #3e2723;
  margin-bottom: 10px;
}

.form-subtitle {
  color: #777;
  margin-bottom: 25px;
  font-size: 1rem;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  background-color: #fefefe;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
  outline: none;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
}

.form-btn {
  background-color: #d4af37;
  color: white;
  padding: 14px 28px;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.form-btn:hover {
  background-color: #b89a2e;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column-reverse;
  }

  .contact-form-wrapper,
  .contact-map {
    width: 100%;
  }
}

.x-tab-img {
  transition: transform 0.3s ease;
  border-radius: 10px;
  cursor: pointer;
}
.x-tab-img:hover {
  transform: scale(1.05);
}
  