/* ==========================================================================
   GLOBAL VARIABLES & RESETS (SHARED)
   ========================================================================== */
:root {
  --tbgfl-black: #111111;
  --tbgfl-black-alt: #161616;
  --tbgfl-gold: #b88a44;
  --tbgfl-green: #6c7b67;
  --tbgfl-blue: #56708a;
  --tbgfl-blue-alt: #4d6d8f;
  --tbgfl-off: #f8f6f1;
  --tbgfl-bg: #f8f6f1;
  --tbgfl-border: #e8dfd0;
  --tbgfl-border-alt: #e6ddd0;
  --tbgfl-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
  background: var(--tbgfl-off);
  font-family: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #333;
  line-height: 1.7;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.main-header {
  width: 100%;
  background: rgba(248, 246, 241, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 5px 0;
}

/* SCROLLED STATE */
.main-header.scrolled {
  top: 5px;
  width: 92%;
  left: 4%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 138, 68, 0.15);
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 4px 0;
}

.main-header.scrolled .logo img {
  width: 80px;
}


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

.logo img {
  width: 90px;
  height: auto;
  display: block;
}

.desktop-menu ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.desktop-menu ul li a {
  text-decoration: none;
  color: #111111;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
  letter-spacing: 0.2px;
}

.desktop-menu ul li a:hover {
  color: #b8860b;
}

.desktop-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #b8860b;
  transition: 0.3s ease;
}

.desktop-menu ul li a:hover::after {
  width: 100%;
}

/* ACTIVE STATE */
.desktop-menu ul li a.active {
  color: var(--tbgfl-gold);
}

.desktop-menu ul li a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #111111;
  border-radius: 10px;
  transition: 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #f8f6f1;
  padding: 60px 30px;
  transition: 0.4s ease;
  z-index: 1000;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.04);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 24px;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #111111;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
  color: var(--tbgfl-gold);
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 34px;
  color: #111111;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media(max-width:991px) {
  .desktop-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
}

/* =========================================
   HEADER ACTIONS (Cart & Auth)
   ========================================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-btn {
  position: relative;
  color: var(--tbgfl-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.cart-btn:hover {
  color: var(--tbgfl-gold);
  transform: translateY(-1px);
}

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

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--tbgfl-gold);
  color: white;
  font-size: 9px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--tbgfl-off);
}

.my-account-btn {
  text-decoration: none;
  background: var(--tbgfl-gold);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--tbgfl-gold);
}

.my-account-btn svg {
  width: 18px;
  height: 18px;
}

.my-account-btn:hover {
  background: transparent;
  color: var(--tbgfl-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 138, 68, 0.15);
}

/* MOBILE ACCOUNT */
.mobile-account {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-account-btn {
    text-decoration: none;
    background: var(--tbgfl-gold);
    color: white;
    padding: 15px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--tbgfl-gold);
}

.mobile-account-btn svg {
    width: 20px;
    height: 20px;
}

.mobile-account-btn:hover {
    background: transparent;
    color: var(--tbgfl-gold);
    box-shadow: 0 8px 25px rgba(184, 138, 68, 0.15);
}

@media (max-width: 1100px) {
    .header-actions {
        gap: 15px;
    }
    .my-account-btn {
        padding: 8px 18px;
    }
}

@media (max-width: 991px) {
    .header-actions {
        display: none;
    }
}

/* ==========================================================================
   SUPPORT SECTION (NEED ASSISTANCE)
   ========================================================================== */
.tbgfl-support-section {
  width: 100%;
  padding: 40px 20px;
  background: var(--tbgfl-black);
  position: relative;
  overflow: hidden;
}

.tbgfl-support-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 138, 68, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.tbgfl-support-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(108, 123, 103, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.tbgfl-support-container {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tbgfl-support-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(184, 138, 68, 0.1);
  border: 1px solid rgba(184, 138, 68, 0.2);
  border-radius: 50px;
  color: var(--tbgfl-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tbgfl-support-content h2 {
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.tbgfl-support-content p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  max-width: 620px;
}

.tbgfl-support-closing {
  font-style: italic;
  color: var(--tbgfl-gold) !important;
  margin-top: 20px;
  font-size: 19px !important;
}

.tbgfl-support-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tbgfl-support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tbgfl-support-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--tbgfl-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tbgfl-support-icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 138, 68, 0.1);
  border: 1px solid rgba(184, 138, 68, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbgfl-gold);
  transition: all 0.4s ease;
}

.tbgfl-support-card:hover .tbgfl-support-icon {
  background: var(--tbgfl-gold);
  color: var(--tbgfl-black);
}

.tbgfl-support-icon svg {
  width: 24px;
  height: 24px;
}

.tbgfl-support-info span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.tbgfl-support-info strong {
  display: block;
  font-size: 19px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .tbgfl-support-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .tbgfl-support-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .tbgfl-support-section {
    padding: 70px 20px;
  }
  .tbgfl-support-content h2 {
    font-size: 32px;
  }
  .tbgfl-support-card {
    padding: 24px 20px;
    gap: 16px;
  }
  .tbgfl-support-info strong {
    font-size: 16px;
  }
  .tbgfl-support-icon {
    width: 48px;
    height: 48px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.tbgfl-footer {
  width: 100%;
  background: var(--tbgfl-bg);
  position: relative;
  overflow: hidden;
  padding: 0 18px 20px;
  border-top: 1px solid var(--tbgfl-border);
}

.tbgfl-footer-top-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--tbgfl-gold), var(--tbgfl-green));
  opacity: 0.6;
}

.tbgfl-footer-container {
  width: 100%;
  max-width: 1240px;
  margin: auto;
}

.tbgfl-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  gap: 40px;
  align-items: flex-start;
}

.tbgfl-footer-logo {
  margin-bottom: 16px;
}

.tbgfl-footer-logo img {
  width: 110px;
  display: block;
  filter: brightness(0);
}

.tbgfl-footer-brand p {
  color: #555;
  font-size: 15px;
  line-height: 1.9;
  max-width: 320px;
  margin-bottom: 24px;
}

.tbgfl-footer-social {
  display: flex;
  gap: 14px;
}

.tbgfl-footer-social a {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid var(--tbgfl-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tbgfl-black);
  transition: all 0.3s ease;
  text-decoration: none;
}

.tbgfl-footer-social a:hover {
  background: var(--tbgfl-gold);
  border-color: var(--tbgfl-gold);
  color: #ffffff;
  transform: translateY(-3px);
}

.tbgfl-footer-social a svg {
  width: 18px;
  height: 18px;
}

.tbgfl-footer-links h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #333;
}

.tbgfl-footer-links h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 24px;
  height: 2px;
  background: var(--tbgfl-gold);
  border-radius: 50px;
  opacity: 0.8;
}

.tbgfl-footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tbgfl-footer-links ul li a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  transition: all .3s ease;
  line-height: 1.75;
}

.tbgfl-footer-links ul li a:hover {
  color: var(--tbgfl-gold);
  padding-left: 6px;
}

.tbgfl-contact-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tbgfl-contact-list li a svg {
  width: 16px;
  height: 16px;
  color: var(--tbgfl-gold);
  flex-shrink: 0;
}

.tbgfl-footer-divider {
  width: 100%;
  height: 1px;
  background: var(--tbgfl-border);
  margin: 30px 0 14px;
}

.tbgfl-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tbgfl-footer-bottom p {
  color: #777;
  font-size: 13px;
  line-height: 1.7;
}

.tbgfl-contact-list {
  list-style: none;
}

.tbgfl-contact-list li a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
}

@media (max-width: 991px) {
  .tbgfl-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .tbgfl-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   WHATSAPP STICKY
   ========================================= */
.whatsapp-sticky {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-sticky svg {
  width: 35px;
  height: 35px;
}

/* HIDE ON MOBILE AS PER REQUEST */
@media (max-width: 767px) {
  .whatsapp-sticky {
    display: none;
  }
}

/* =========================================
   FOOTER TRUST BAR
   ========================================= */
.tbgfl-footer-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 30px 0;
  width: 100%;
  box-sizing: border-box;
}

.tbgfl-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tbgfl-trust-item:hover {
  transform: translateY(-4px);
}

.tbgfl-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(184, 138, 68, 0.08);
  border: 1px solid rgba(184, 138, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.tbgfl-trust-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  border: 1px solid var(--tbgfl-gold);
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tbgfl-trust-item:hover .tbgfl-trust-icon {
  background: var(--tbgfl-gold);
  border-color: var(--tbgfl-gold);
  box-shadow: 0 10px 25px rgba(184, 138, 68, 0.25);
  transform: scale(1.05);
}

.tbgfl-trust-item:hover .tbgfl-trust-icon::after {
  opacity: 1;
  transform: scale(1.2);
}

.tbgfl-trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--tbgfl-gold);
  stroke-width: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tbgfl-trust-item:hover .tbgfl-trust-icon svg {
  stroke: white;
  animation: trustIconBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes trustIconBounce {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.25) rotate(-10deg); }
  60% { transform: scale(0.95) rotate(5deg); }
  100% { transform: scale(1.1) rotate(0deg); }
}

.tbgfl-trust-info h4 {
  font-family: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--tbgfl-black, #111);
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tbgfl-trust-info p {
  font-family: "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .tbgfl-footer-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .tbgfl-footer-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px 0;
  }

  .tbgfl-trust-item {
    gap: 10px;
  }

  .tbgfl-trust-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .tbgfl-trust-icon::after {
    border-radius: 8px;
  }

  .tbgfl-trust-icon svg {
    width: 18px;
    height: 18px;
  }

  .tbgfl-trust-info h4 {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .tbgfl-trust-info p {
    font-size: 11px;
    line-height: 1.35;
  }
}

/* =========================================
   FOOTER BOTTOM PAYMENT BADGES & TRUST
   ========================================= */
.tbgfl-payment-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.secured-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 123, 103, 0.06);
  border: 1px solid rgba(108, 123, 103, 0.18);
  padding: 4px 10px;
  border-radius: 6px;
  color: #4A5D45;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.secure-lock-icon {
  width: 12px;
  height: 12px;
  stroke: #4A5D45;
}

.payment-divider {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, 0.1);
}

.payment-icon {
  height: 22px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.payment-icon:hover {
  transform: translateY(-1.5px);
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .tbgfl-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .tbgfl-payment-badges {
    order: 2;
  }
  .payment-divider {
    display: none;
  }
}