@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/* =========================================
   EXTRACTED FROM HEADER.PHP
   ========================================= */

/* --- MODERN STOREIFY STYLE HEADER CSS --- */
:root {
  --primary-color: #5a49e3; /* Purple/Blue from screenshot */
  --hover-color: #4333c9;
  --text-color: #111;
  --bg-color: #fff;
}

.header__section {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg-color);
}

.main__header {
  padding: 15px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Pushes Logo left, Menu center, Actions right */
  padding: 0 30px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* 1. LOGO AREA */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 10; /* Ensure clickable */
}
.logo-img {
  height: 32px;
  width: auto;
}
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  font-family: "Jost", sans-serif;
}

/* 2. NAVIGATION MENU (CENTER) */
.nav-menu-desktop {
  display: flex;
  gap: 30px;
}
.nav-link-item {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav-link-item:hover {
  color: var(--primary-color);
}

/* 3. CTA BUTTON & ACTIONS (RIGHT) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.btn-start-now {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s;
  white-space: nowrap;
}
.btn-start-now:hover {
  background-color: var(--hover-color);
  color: #fff;
  transform: translateY(-1px);
}

/* MOBILE TOGGLE DEFAULT HIDDEN */
.mobile-menu-trigger {
  display: none;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 991px) {
  .main__header {
    padding: 12px 0;
  }

  .header-container {
    padding: 0 20px;
  }

  /* Hide Desktop Menu & CTA */
  .nav-menu-desktop {
    display: none !important;
  }
  .btn-start-now {
    display: none !important;
  }

  /* Show Mobile Toggle */
  .mobile-menu-trigger {
    display: block;
  }

  /* Adjust Icon Size */
  .offcanvas__header--menu__open--btn svg {
    width: 30px;
    height: 30px;
    color: #333;
  }
}

/* =========================================
   EXTRACTED FROM HOME.PHP (Block 1)
   ========================================= */

/* --- GENERAL CARD STYLES --- */
.shop-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  margin-bottom: 30px;
  border: 1px solid #eee;
}
.shop-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.shop-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background-color: #f8f9fa;
}
@media (max-width: 768px) {
  .shop-card-img-wrapper {
    height: 220px;
  }
}

.shop-card-img-primary,
.shop-card-img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease;
}
.shop-card-img-secondary {
  opacity: 0;
  z-index: 2;
}
.shop-card-img-primary {
  z-index: 1;
}
.shop-card:hover .shop-card-img-secondary {
  opacity: 1;
}

.shop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  text-transform: uppercase;
  z-index: 5;
}
.action-btn-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 4;
}
.shop-card:hover .action-btn-wrapper {
  transform: translateY(0);
}
.enquire-btn-full {
  width: 100%;
  background: linear-gradient(to bottom, #222, #000);
  color: #fff;
  border: none;
  padding: 15px 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
.enquire-btn-full:hover {
  background: linear-gradient(to bottom, #d4af37, #b8860b);
  color: #fff;
}

.shop-content {
  padding: 20px 15px;
  text-align: center;
  background: #fff;
}
.shop-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shop-price {
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.shop-price del {
  color: #999;
  font-weight: 400;
  font-size: 13px;
  margin-left: 8px;
}
.specs-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 12px;
  border-top: 1px solid #f5f5f5;
  padding-top: 12px;
}
.specs-item {
  text-align: center;
  font-size: 12px;
  color: #666;
}
.specs-item span {
  display: block;
  font-weight: 700;
  color: #333;
  font-size: 13px;
}

/* --- UPDATED GALLERY COVERFLOW STYLES --- */
.gallery-section {
  padding: 80px 0;
  background: #fafafa;
  overflow: hidden;
}
.gallery-coverflow {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.gallery-coverflow .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  /* Initial state for un-active slides handled by swiper effect */
}
.gallery-coverflow .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-nav-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border: 2px solid #000;
  border-radius: 50%;
  color: #000;
  transition: all 0.3s;
  margin: 0 10px;
}
.gallery-nav-btn:hover {
  background: #000;
  color: #fff;
}
.gallery-nav-btn::after {
  font-size: 18px;
  font-weight: bold;
}
.gallery-nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .gallery-coverflow .swiper-slide {
    width: 250px;
    height: 350px;
  }
}

.section-header-small {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  font-family: "Playfair Display", serif;
}
.section-header-small::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #d4af37;
}

/* --- NEW MODERN ABOUT US STYLES --- */
.about-modern-section {
  background-color: #f2f2f2;
  overflow: hidden;
}
.about-modern-wrapper {
  position: relative;
}
.starburst-decoration {
  position: absolute;
  top: 50px;
  left: -40px;
  width: 90px;
  height: 90px;
  z-index: 5;
  color: #1a1a1a;
  animation: spin-slow 15s linear infinite;
}
@keyframes spin-slow {
  100% {
    transform: rotate(360deg);
  }
}
.about-img-modern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.about-content-modern {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.big-about-title {
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: #1a1a;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -2px;
}
.about-text-modern p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 90%;
  font-weight: 400;
}
.accent-rect-modern {
  width: 70px;
  height: 10px;
  background-color: #222;
  align-self: flex-end;
  margin-top: 30px;
  margin-right: 10%;
}
@media (max-width: 991px) {
  .about-content-modern {
    padding-left: 0;
    padding-top: 40px;
  }
  .big-about-title {
    font-size: 3.5rem;
  }
  .starburst-decoration {
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
  }
  .accent-rect-modern {
    margin-right: 0;
    align-self: flex-start;
  }
}

/* --- UPDATED MODERN DIRECTOR STYLES --- */
.director-modern-section {
  padding: 80px 0;
  overflow: hidden;
  background: #fff;
}
.director-modern-title {
  font-family: "Jost", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #111;
  letter-spacing: -1px;
}
.director-modern-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d4af37; /* Gold to match brand */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}
.director-modern-desc {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
  max-width: 95%;
}
.director-visual-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px; /* Adjust based on need */
}
/* Rotated Diamond Background Shape */
.director-shape {
  position: absolute;
  width: 320px;
  height: 320px;
  /* Gold Gradient */
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  border-radius: 40px;
  transform: rotate(45deg);
  z-index: 1;
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}
/* Image styling to mimic cutout/pop-out */
.director-img-overlay {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  /* Grayscale filter per design request */
  filter: grayscale(100%);
  transition: all 0.4s ease;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.director-img-overlay:hover {
  filter: grayscale(0%);
  transform: translateY(-5px);
}
@media (max-width: 991px) {
  .director-modern-title {
    font-size: 2.5rem;
  }
  .director-visual-area {
    margin-top: 50px;
  }
  .director-shape {
    width: 250px;
    height: 250px;
  }
  .director-img-overlay {
    width: 240px;
    height: 300px;
  }
}

/* --- REELS VIDEO SECTION STYLES --- */
.reels-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
}
.reels-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 10px;
}
.reels-title {
  font-family: "Jost", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
}
.btn-show-all-videos {
  padding: 10px 30px;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s;
  border-radius: 50px;
  font-size: 14px;
}
.btn-show-all-videos:hover {
  background: #000;
  color: #fff;
}
.reels-swiper {
  padding: 20px 10px 60px 10px;
}
.reel-card {
  position: relative;
  width: 100%;
  /* 9:16 Aspect Ratio = 177.77% height of width */
  padding-top: 177.77%;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.reel-card:hover {
  transform: translateY(-10px);
}
.reel-video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.reel-card:hover .reel-video-cover {
  opacity: 1; /* Keep visible on hover */
  transform: scale(1.05);
}
.reel-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  pointer-events: none; /* Let clicks pass through if needed */
}
.reel-card:hover .reel-play-overlay {
  background: #fff;
  color: #000;
  transform: translate(-50%, -50%) scale(1.1);
}
.reel-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
  transform: translateY(10px);
  transition: transform 0.3s;
}
.reel-card:hover .reel-info-overlay {
  transform: translateY(0);
}
.reel-item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reel-item-views {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 400;
}

/* --- MODERN TESTIMONIAL CARD STYLES --- */
.testimonial-card-modern {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  text-align: left; /* Align text to left as per modern design */
}
.testimonial-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.testimonial-quote-icon {
  font-size: 40px;
  color: #d4af37;
  line-height: 1;
  margin-bottom: 20px;
  font-family: serif;
}
.testimonial-text-modern {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 400;
  font-style: italic;
}
.testimonial-user-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #f5f5f5;
  padding-top: 20px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-info h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #000;
  text-transform: uppercase;
}
.testimonial-info span {
  font-size: 12px;
  color: #777;
  display: block;
}

@media (max-width: 768px) {
  .reels-title {
    font-size: 1.8rem;
  }
  .btn-show-all-videos {
    padding: 8px 20px;
    font-size: 12px;
  }
}

/* =========================================
   EXTRACTED FROM HOME.PHP (Block 2)
   ========================================= */

/* =========================================
   1. MODERN CARD & THEME VARIABLES
   ========================================= */
:root {
  --card-purple: #624aff; /* Primary Accent */
  --card-hover: #4a35cf;
  --card-bg-gradient: linear-gradient(180deg, #f0f2ff 0%, #ffffff 100%);
  --text-dark: #1a1a1a;
  --text-grey: #666;
}

body {
  font-family: "Jost", sans-serif;
}

/* HERO SLIDER */
.hero-center-section {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.hero-center-swiper .swiper-slide {
  width: 100%;
  height: 450px; /* final fixed height of slider */
  overflow: hidden;
}

.hero-center-swiper .swiper-slide img,
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center; /* center crop */
  display: block;
}

/* MODERN BRANDS SECTION */
.modern-brands-section {
  padding: 80px 0;
  background: var(--card-bg-gradient);
  position: relative;
  overflow: hidden;
}

.section-title-modern {
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--text-dark);
}

/* CARD STYLES */
.brand-card-modern {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(98, 74, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
}

.brand-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(98, 74, 255, 0.15);
}

.brand-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.brand-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brand-card-modern:hover .brand-card-img {
  transform: scale(1.05);
}

.brand-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: var(--card-purple);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.brand-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.brand-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.brand-card-desc {
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.brand-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f5f5f5;
  padding-top: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.author-text h6 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}
.author-text span {
  font-size: 11px;
  color: #888;
}

.btn-read-more {
  background: var(--card-purple);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background 0.3s;
}
.btn-read-more:hover {
  background: var(--card-hover);
  color: #fff;
}

/* SLIDER NAVIGATION */
.swiper-button-prev-brand,
.swiper-button-next-brand {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--card-purple);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.swiper-button-prev-brand:hover,
.swiper-button-next-brand:hover {
  background: var(--card-purple);
  color: #fff;
}
.swiper-button-prev-brand {
  left: 10px;
}
.swiper-button-next-brand {
  right: 10px;
}

@media (min-width: 1400px) {
  .swiper-button-prev-brand {
    left: -60px;
  }
  .swiper-button-next-brand {
    right: -60px;
  }
}

.swiper-pagination-brand {
  position: relative;
  margin-top: 40px;
  text-align: center;
}
.swiper-pagination-brand .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
}
.swiper-pagination-brand .swiper-pagination-bullet-active {
  background: var(--card-purple);
  width: 25px;
  border-radius: 10px;
}

/* =========================================
   2. IMPROVED CONTACT SECTION CSS
   ========================================= */
.contact-section {
  background-color: #fafafa;
}

.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-form-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: "Jost", sans-serif;
  color: var(--text-dark);
}

.contact-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fcfcfc;
  color: #333;
  transition: all 0.3s ease;
  font-size: 15px;
}

.contact-input:focus {
  border-color: var(--card-purple);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(98, 74, 255, 0.08);
  outline: none;
}

.contact-input::placeholder {
  color: #aaa;
}

.contact-btn {
  background: var(--card-purple);
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
}

.contact-btn:hover {
  background: var(--card-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(98, 74, 255, 0.3);
}

.map-wrapper {
  height: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =========================================
   3. OTHER SECTIONS (ABOUT, VIDEO, GALLERY)
   ========================================= */
/* (NOTE: Some of these were also in Block 1, but Block 2 had these repetitions or small overrides) */
.about-modern-section {
  background-color: #f2f2f2;
  overflow: hidden;
}
.big-about-title {
  font-family: "Jost", sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-transform: uppercase;
  line-height: 1;
}
.director-modern-section {
  padding: 80px 0;
  background: #fff;
}
.director-img-overlay {
  width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  filter: grayscale(100%);
  transition: all 0.4s;
}
.director-img-overlay:hover {
  filter: grayscale(0%);
}

.gallery-section {
  padding: 80px 0;
  background: #fafafa;
  overflow: hidden;
}
.gallery-coverflow {
  width: 100%;
  padding: 50px 0;
}
.gallery-coverflow .swiper-slide {
  width: 300px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
.gallery-coverflow .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #000;
  border-radius: 50%;
  color: #000;
  margin: 0 10px;
}
.gallery-nav-btn:hover {
  background: #000;
  color: #fff;
}
.gallery-nav-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.reels-section {
  padding: 80px 0;
  background: #fff;
}
.reel-card {
  position: relative;
  width: 100%;
  padding-top: 177.77%;
  background: #000;
  border-radius: 15px;
  overflow: hidden;
}
.reel-video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card-modern {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  height: 100%;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* =========================================
   EXTRACTED FROM HOME.PHP (Modal Popup)
   ========================================= */
#genModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}
#genModal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
#genBox {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
#genClose {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}
#genClose:hover {
  color: #000;
}

/* Header.php New Feature Css */
/* ==================== HEADER STYLES ==================== */
.header__section {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98),
    rgba(255, 255, 255, 0.95)
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.main__header {
  padding: 12px 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-wrapper {
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.05);
}

.nav-menu-desktop {
  display: none;
  gap: 32px;
  align-items: center;
}

.nav-link-item {
  color: #2c2c2c;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.nav-link-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4771f, #f4a261);
  transition: width 0.3s ease;
}

.nav-link-item:hover {
  color: #d4771f;
}

.nav-link-item:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Contact Icons Group - Sleek Jewelry Design */
.contact-icons-group {
  display: none;
  align-items: center;
  gap: 0;
  padding: 4px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 50px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 50%;
  color: #555;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.contact-icon-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4771f, #f4a261);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-icon-btn svg {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.contact-icon-btn:hover {
  color: white;
  transform: translateY(-2px);
}

.contact-icon-btn:hover::before {
  opacity: 1;
}

.contact-divider {
  width: 1px;
  height: 16px;
  background: linear-gradient(to bottom, transparent, #ddd, transparent);
  margin: 0 2px;
}

/* Cart Icon - Premium Jewelry Style */
.cart-icon-btn {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #555;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cart-icon-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4771f, #f4a261);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-icon-btn svg {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.cart-icon-btn:hover {
  border-color: #d4771f;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(212, 119, 31, 0.25);
}

.cart-icon-btn:hover::before {
  opacity: 1;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #d4771f, #f4a261);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Apply for Trademark Button - Luxury Jewelry Style */
.btn-apply-trademark {
  background: linear-gradient(135deg, #d4771f, #f4a261);
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(212, 119, 31, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-apply-trademark::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-apply-trademark:hover::before {
  left: 100%;
}

.btn-apply-trademark:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 119, 31, 0.35);
}

.btn-apply-trademark:active {
  transform: translateY(0);
}

.btn-apply-trademark svg {
  flex-shrink: 0;
}

.btn-apply-trademark.mobile-cta {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  margin-top: 20px;
}

/* Mobile Menu Trigger - Refined */
.mobile-menu-trigger {
  display: flex;
}

.offcanvas__header--menu__open--btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.offcanvas__header--menu__open--btn:hover {
  background: linear-gradient(135deg, #d4771f, #f4a261);
  border-color: #d4771f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 119, 31, 0.25);
}

.offcanvas__header--menu__open--svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.offcanvas__header--menu__open--btn:hover .offcanvas__header--menu__open--svg {
  transform: rotate(90deg);
}

/* ==================== ENQUIRY MODAL - PREMIUM DESIGN ==================== */
.enquiry-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.enquiry-modal-overlay.active {
  display: flex;
}

/* ==================== HIDE SCROLLBAR FOR MODAL ==================== */
.enquiry-modal-content {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  padding: 40px 35px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.enquiry-modal-content::-webkit-scrollbar {
  display: none;
}

/* Also hide scrollbar for offcanvas menu */
.offcanvas__inner {
  padding: 25px;
  height: 100%;
  overflow-y: auto;

  /* Hide scrollbar */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.offcanvas__inner::-webkit-scrollbar {
  display: none;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enquiry-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f5f5f5;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.enquiry-modal-close:hover {
  background: #d4771f;
  color: white;
  transform: rotate(90deg);
}

.enquiry-modal-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 30px 0;
  color: #2c2c2c;
  text-align: center;
  letter-spacing: -0.5px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4771f;
  box-shadow: 0 0 0 3px rgba(212, 119, 31, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.enquiry-submit-btn {
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.enquiry-submit-btn:hover {
  background: linear-gradient(135deg, #d4771f, #f4a261);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 119, 31, 0.35);
}

.enquiry-submit-btn:active {
  transform: translateY(0);
}

/* ==================== OFFCANVAS MENU - LUXURY DESIGN ==================== */
.offcanvas__header {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  z-index: 10001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.offcanvas__header.active {
  right: 0;
}

.offcanvas__inner {
  padding: 25px;
  height: 100%;
  overflow-y: auto;
}

.offcanvas__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8e8e8;
}

.offcanvas__close--btn {
  background: #f5f5f5;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.offcanvas__close--btn:hover {
  background: #d4771f;
  color: white;
  transform: rotate(90deg);
}

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

.offcanvas__menu ul li {
  margin-bottom: 8px;
}

.offcanvas__menu ul li a {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding: 12px 16px;
  transition: all 0.3s ease;
  border-radius: 8px;
  letter-spacing: 0.3px;
}
.offcanvas__menu ul li a:hover {
  background: linear-gradient(135deg, #d4771f, #f4a261);
  color: white;
  transform: translateX(5px);
}
.offcanvas__account--items {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #e8e8e8;
}
/* ==================== DESKTOP RESPONSIVE ==================== */
@media (min-width: 992px) {
  .nav-menu-desktop {
    display: flex;
  }
  .contact-icons-group {
    display: flex;
  }

  .cart-icon-btn {
    display: flex;
  }

  .mobile-menu-trigger {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header-container {
    gap: 40px;
  }
  .nav-menu-desktop {
    gap: 36px;
  }

  .nav-link-item {
    font-size: 15px;
  }
}
/* ==================== TABLET RESPONSIVE ==================== */
@media (max-width: 991px) {
  .header-container {
    gap: 15px;
  }
  .logo-img {
    height: 42px;
  }

  .contact-icons-group {
    display: flex;
    padding: 3px;
  }

  .contact-icon-btn {
    width: 30px;
    height: 30px;
  }

  .contact-divider {
    height: 14px;
  }
}
/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 767px) {
  .main__header {
    padding: 10px 0;
  }
  .header-container {
    padding: 0 15px;
    gap: 12px;
  }

  .logo-img {
    height: 38px;
  }

  .contact-icons-group {
    display: none;
  }

  .cart-icon-btn {
    display: flex;
    width: 36px;
    height: 36px;
  }

  .cart-icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .cart-badge {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  .enquiry-modal-content {
    padding: 30px 20px;
    margin: 10px;
    border-radius: 12px;
  }

  .enquiry-modal-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .enquiry-form {
    gap: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 14px;
    font-size: 14px;
  }

  .enquiry-submit-btn {
    padding: 12px 28px;
    font-size: 14px;
  }

  .offcanvas__header {
    width: 280px;
  }

  .offcanvas__inner {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .logo-img {
    height: 34px;
  }
  .enquiry-modal-content {
    padding: 25px 18px;
  }

  .enquiry-modal-title {
    font-size: 20px;
  }

  .offcanvas__header {
    width: 260px;
  }
}
/* ==================== UTILITY CLASSES ==================== */
.d-none {
  display: none !important;
}
.d-lg-block {
  display: none !important;
}
.d-lg-flex {
  display: none !important;
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
.w-100 {
  width: 100% !important;
}
.text-center {
  text-align: center !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Side Bar */

/* FIXED Premium Light Mode Sidebar - HIDDEN BY DEFAULT */
.tankras-sidebar {
  position: fixed;
  top: 0;
  right: -100vw;
  /* FIXED: Use viewport width for perfect hiding */
  width: 440px;
  max-width: 90vw;
  /* Responsive width limit */
  height: 100vh;
  background: linear-gradient(165deg, #ffffff 0%, #fafafa 50%, #f8f8f8 100%);
  border-left: 2px solid #d4771f;
  box-shadow: -20px 0 60px rgba(212, 119, 31, 0.12);
  display: flex;
  flex-direction: column;
  transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 10000;
  font-family: "Montserrat", sans-serif;
  color: #2c2c2c;
  overflow-y: auto;
  visibility: hidden;
  /* FIXED: Extra layer of hiding */
  opacity: 0;
  /* FIXED: Fade in effect */
}

/* Elegant gold accent pattern */
.tankras-sidebar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(212, 119, 31, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(244, 162, 97, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.tankras-sidebar.show {
  right: 0 !important;
  /* FIXED: Force show */
  visibility: visible !important;
  opacity: 1 !important;
  box-shadow: -25px 0 80px rgba(212, 119, 31, 0.18);
}

/* Elegant Header */
.sidebar-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 32px 32px 24px;
  position: sticky;
  top: 0;
  border-bottom: 1px solid rgba(212, 119, 31, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  box-shadow: 0 2px 20px rgba(212, 119, 31, 0.08);
}

.sidebar-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 119, 31, 0.15));
  transition: all 0.4s ease;
}

.sidebar-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(212, 119, 31, 0.25));
}

.sidebar-close {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border: 2px solid rgba(212, 119, 31, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #d4771f;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  padding: 0;
  box-shadow: 0 2px 8px rgba(212, 119, 31, 0.1);
}

.sidebar-close:hover {
  background: linear-gradient(135deg, #d4771f 0%, #f4a261 100%);
  border-color: #d4771f;
  color: white;
  transform: rotate(90deg);
  box-shadow: 0 4px 16px rgba(212, 119, 31, 0.3);
}

/* Elegant Navigation */
.sidebar-nav {
  padding: 40px 32px;
  flex: 1;
}

.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav li {
  margin: 0;
  position: relative;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  color: #2c2c2c;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  user-select: none;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid rgba(212, 119, 31, 0.1);
  position: relative;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.sidebar-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d4771f 0%, #f4a261 100%);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 4px 4px 0;
}

.sidebar-nav a:hover::before,
.sidebar-nav a:focus::before {
  transform: scaleY(1);
}

.sidebar-nav a:hover,
.sidebar-nav a:focus {
  background: rgba(212, 119, 31, 0.08);
  color: #d4771f;
  transform: translateX(6px);
  border-color: rgba(212, 119, 31, 0.25);
  box-shadow: 0 4px 20px rgba(212, 119, 31, 0.15);
  outline: none;
}

.sidebar-nav a .nav-icon {
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: #d4771f;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.sidebar-nav a:hover .nav-icon,
.sidebar-nav a:focus .nav-icon {
  transform: scale(1.15);
  color: #d4771f;
}

/* Luxury Footer */
.sidebar-footer {
  padding: 32px;
  border-top: 1px solid rgba(212, 119, 31, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(212, 119, 31, 0.08);
}

.sidebar-cta {
  background: linear-gradient(135deg, #d4771f 0%, #f4a261 100%);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  padding: 16px 28px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 119, 31, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  border: none;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sidebar-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.sidebar-cta:hover::before {
  left: 100%;
}

.sidebar-cta:hover,
.sidebar-cta:focus {
  background: linear-gradient(135deg, #b86419 0%, #d4771f 100%);
  box-shadow: 0 8px 28px rgba(212, 119, 31, 0.35);
  transform: translateY(-2px);
  outline: none;
}

.sidebar-cta:active {
  transform: translateY(0);
}

.sidebar-footer-text {
  margin: 12px 0 0;
  font-size: 13px;
  color: #888;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
  text-align: center;
  font-weight: 400;
}

/* Scroll lock overlay */
body.sidebar-open {
  overflow: hidden;
}

body.sidebar-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9998;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Mobile toggle button */
.mobile-toggle-container {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (max-width: 991.98px) {
  .mobile-toggle-container {
    display: flex;
  }

  .tankras-sidebar {
    width: 85vw;
    /* FIXED: Responsive viewport width */
    max-width: 440px;
    right: -85vw;
    /* FIXED: Match width */
  }
}

@media (max-width: 576px) {
  .tankras-sidebar {
    width: 95vw;
    right: -95vw;
  }

  .sidebar-header,
  .sidebar-nav,
  .sidebar-footer {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

.sidebar-toggle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1.5px solid rgba(212, 119, 31, 0.2);
  border-radius: 12px;
  color: #d4771f;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(212, 119, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.sidebar-toggle:hover {
  background: linear-gradient(135deg, #d4771f, #f4a261);
  border-color: #d4771f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 119, 31, 0.3);
}

/* Custom Scrollbar */
.tankras-sidebar::-webkit-scrollbar {
  width: 6px;
}

.tankras-sidebar::-webkit-scrollbar-track {
  background: rgba(212, 119, 31, 0.05);
}

.tankras-sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4771f, #f4a261);
  border-radius: 10px;
}

.tankras-sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #b86419, #d4771f);
}
