/** Shopify CDN: Minification failed

Line 1819:0 Expected "}" to go with "{"

**/
/* B2B / B2C Custom Premium Stylesheet */

/* Visibility Control based on Mode */
body.shopping-mode-retail .business-only,
body.shopping-mode-retail .business-announcement-only,
body.shopping-mode-retail .business-menu-only {
  display: none !important;
}

body.shopping-mode-business .retail-only,
body.shopping-mode-business .retail-announcement-only,
body.shopping-mode-business .retail-menu-only {
  display: none !important;
}

body.shopping-mode-retail .retail-only {
  display: block;
}
body.shopping-mode-retail .retail-announcement-only {
  display: flex !important;
}
body.shopping-mode-retail .retail-menu-only {
  display: block !important;
}

body.shopping-mode-business .business-only {
  display: block;
}
body.shopping-mode-business .business-announcement-only {
  display: flex !important;
}
body.shopping-mode-business .business-menu-only {
  display: block !important;
}

/* Home Section visibility helpers */
body.shopping-mode-retail .b2b-vis-business {
  display: none !important;
}
body.shopping-mode-business .b2b-vis-retail {
  display: none !important;
}

/* Smooth Transitions & Overlay */
#b2b-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
body.loading-mode-switch #b2b-loader-overlay {
  opacity: 1;
  pointer-events: auto;
}
.b2b-loader-spinner-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.b2b-loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: #000000;
  border-radius: 50%;
  animation: b2b-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.b2b-loader-circle-inner {
  position: absolute;
  width: 70%;
  height: 70%;
  border: 3px solid transparent;
  border-bottom-color: #cda240;
  border-radius: 50%;
  animation: b2b-spin-reverse 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.b2b-loader-logo {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  z-index: 2;
  animation: b2b-pulse-logo 1.5s ease-in-out infinite;
}
.b2b-loader-text-title {
  font-family: var(--g-font-1, sans-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #111111;
  margin-top: 10px;
  text-transform: uppercase;
}
.b2b-loader-text-sub {
  font-family: var(--g-font-2, sans-serif);
  font-size: 14px;
  color: #666666;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

@keyframes b2b-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes b2b-spin-reverse {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}
@keyframes b2b-pulse-logo {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Header Right Controls Spacing & Interactive Aesthetics */
.header-bottom__right {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.header-bottom__right .site-header__icon,
.header-bottom__right .block-cart,
.header-bottom__right .block-wishlist,
.header-bottom__right .header-login,
.header-bottom__right .header-search {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 4px !important;
  padding-right: 4px !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease !important;
}

.header-bottom__right .site-header__icon:hover,
.header-bottom__right .block-cart:hover,
.header-bottom__right .block-wishlist:hover,
.header-bottom__right .header-login:hover,
.header-bottom__right .header-search:hover {
  transform: translateY(-2px) scale(1.06) !important;
}

.block-cart {
  position: relative !important;
  margin-right: 6px !important;
}

/* Premium Switcher Toggle in Header with Interactive Gold Glow */
.b2b-toggle-container {
  display: inline-flex !important;
  align-items: center !important;
  background: #f4f5f7 !important;
  border-radius: 30px !important;
  padding: 5px !important;
  margin-left: 45px !important; /* Increased generous space between Cart & Switcher */
  margin-right: 6px !important;
  border: 1.5px solid #e2e8f0 !important;
  cursor: pointer !important;
  user-select: none !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.b2b-toggle-container:hover {
  border-color: #cda240 !important;
  transform: translateY(-1px) scale(1.03) !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 6px 18px rgba(205, 162, 64, 0.22) !important;
}

.b2b-toggle-btn {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 7px 18px !important;
  border-radius: 20px !important;
  color: #64748b !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  white-space: nowrap !important;
}

body.shopping-mode-retail .b2b-toggle-btn.mode-retail,
body.mode-retail .b2b-toggle-btn.mode-retail {
  background: #0f172a !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25) !important;
}

body.shopping-mode-business .b2b-toggle-btn.mode-business,
body.mode-business .b2b-toggle-btn.mode-business,
html.b2b-active .b2b-toggle-btn.mode-business {
  background: linear-gradient(135deg, #cda240 0%, #b88e2d 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(205, 162, 64, 0.35) !important;
}

/* Modal Experience Switcher */
#b2b-experience-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#b2b-experience-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.b2b-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 750px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
#b2b-experience-modal.active .b2b-modal-content {
  transform: scale(1);
}
.b2b-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888888;
  transition: color 0.2s ease;
}
.b2b-modal-close:hover {
  color: #000000;
}
.b2b-modal-header {
  text-align: center;
  margin-bottom: 35px;
}
.b2b-modal-title {
  font-family: var(--g-font-1, sans-serif);
  font-size: 26px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
}
.b2b-modal-subtitle {
  font-size: 14px;
  color: #666666;
}
.b2b-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 650px) {
  .b2b-modal-grid {
    grid-template-columns: 1fr;
  }
}
.b2b-modal-card {
  border: 2px solid #eeeeee;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.b2b-modal-card:hover {
  border-color: #000000;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.b2b-modal-card.active {
  border-color: #cda240;
  background: rgba(205, 162, 64, 0.02);
}
.b2b-modal-card-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333333;
}
.b2b-modal-card.active .b2b-modal-card-icon {
  color: #cda240;
}
.b2b-modal-card-title {
  font-family: var(--g-font-1, sans-serif);
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 10px;
}
.b2b-modal-card-desc {
  font-size: 13px;
  color: #777777;
  margin-bottom: 20px;
  line-height: 1.4;
  min-height: 40px;
}
.b2b-modal-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
  font-size: 13px;
  color: #555555;
  flex-grow: 1;
}
.b2b-modal-card-list li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.b2b-modal-card-list li::before {
  content: "✓";
  color: #cda240;
  font-weight: bold;
  margin-right: 10px;
  font-size: 14px;
}
.b2b-modal-select-btn {
  width: 100%;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #111111;
  background: transparent;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: auto;
}
.b2b-modal-card.active .b2b-modal-select-btn {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}
.b2b-modal-card.active:hover .b2b-modal-select-btn {
  background: #cda240;
  border-color: #cda240;
}

/* Header Inquiry Button Styling */
.b2b-inquiry-header-btn {
  background: #cda240;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-left: 12px;
  box-shadow: 0 4px 12px rgba(205, 162, 64, 0.2);
  border: none;
}
.b2b-inquiry-header-btn:hover {
  background: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* Product Page specifications */
.b2b-product-specs-container {
  background: #fcfbfa;
  border: 1px solid rgba(205, 162, 64, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 25px;
}
.b2b-specs-header {
  font-family: var(--g-font-1, sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: #cda240;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.b2b-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 15px;
}
.b2b-spec-item {
  font-size: 13px;
  color: #666666;
}
.b2b-spec-label {
  font-weight: 500;
  color: #111111;
  margin-right: 4px;
}
.b2b-spec-value {
  color: #333333;
}
.b2b-price-badge {
  background: rgba(205, 162, 64, 0.1);
  color: #cda240;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Wholesale Tier Table */
.b2b-tiers-table-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.b2b-tiers-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eeeeee;
}
.b2b-tiers-table th, .b2b-tiers-table td {
  padding: 10px 12px;
  text-align: center;
  font-size: 12px;
}
.b2b-tiers-table th {
  background: #f7f7f5;
  color: #666666;
  font-weight: 600;
  border-bottom: 1px solid #eeeeee;
}
.b2b-tiers-table td {
  color: #333333;
  border-bottom: 1px solid #f9f9f9;
}
.b2b-tiers-table tr.highlighted td {
  background: rgba(205, 162, 64, 0.06);
  font-weight: 600;
  color: #cda240;
}

/* Savings and Calculator dynamic elements */
.b2b-savings-box {
  background: rgba(40, 167, 69, 0.07);
  border: 1px solid rgba(40, 167, 69, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #28a745;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.b2b-savings-amount {
  font-size: 15px;
  font-weight: 700;
}
.b2b-moq-warning {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #dc3545;
  font-weight: 500;
  display: none;
}
.b2b-moq-warning.active {
  display: block;
}

/* Corporate details fields in Cart */
.b2b-cart-business-details {
  border-top: 1px solid #e5e5e5;
  padding-top: 25px;
  margin-top: 25px;
}
.b2b-cart-business-details h5 {
  font-family: var(--g-font-1, sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.b2b-cart-field-group {
  margin-bottom: 15px;
}
.b2b-cart-field-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #444444;
  margin-bottom: 6px;
}
.b2b-cart-field-group input, .b2b-cart-field-group select {
  width: 100%;
  height: 42px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 13px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}
.b2b-cart-field-group input:focus, .b2b-cart-field-group select:focus {
  border-color: #cda240;
}
.b2b-cart-savings-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(40, 167, 69, 0.07);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  color: #28a745;
  font-size: 14px;
}

/* MOQ error blocks on items */
.b2b-item-moq-error {
  color: #dc3545;
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
}

/* Premium Business Form Pages */
.b2b-form-section {
  max-width: 750px;
  margin: 50px auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid #eeeeee;
}
.b2b-form-header {
  text-align: center;
  margin-bottom: 40px;
}
.b2b-form-header h2 {
  font-family: var(--g-font-1, sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}
.b2b-form-header p {
  font-size: 14px;
  color: #666666;
}
.b2b-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .b2b-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }
}
.b2b-form-group {
  margin-bottom: 20px;
}
.b2b-form-group.full-width {
  grid-column: 1 / -1;
}
.b2b-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}
.b2b-form-group input[type="text"],
.b2b-form-group input[type="email"],
.b2b-form-group input[type="tel"],
.b2b-form-group select,
.b2b-form-group textarea {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  background: #ffffff;
  outline: none;
  transition: all 0.3s ease;
}
.b2b-form-group input:focus,
.b2b-form-group select:focus,
.b2b-form-group textarea:focus {
  border-color: #cda240;
  box-shadow: 0 0 8px rgba(205, 162, 64, 0.15);
}
.b2b-form-file-upload {
  border: 2px dashed #cccccc;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
}
.b2b-form-file-upload:hover {
  border-color: #cda240;
  background: rgba(205, 162, 64, 0.01);
}
.b2b-form-file-upload input[type="file"] {
  display: none;
}
.b2b-form-file-icon {
  font-size: 24px;
  color: #888888;
  margin-bottom: 8px;
}
.b2b-form-file-label {
  font-size: 13px;
  color: #666666;
}
.b2b-form-submit-btn {
  width: 100%;
  background: #000000;
  color: #ffffff;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.b2b-form-submit-btn:hover {
  background: #cda240;
  box-shadow: 0 4px 15px rgba(205, 162, 64, 0.2);
}

/* Dealer Landing Page Layout */
.b2b-landing-hero {
  text-align: center;
  padding: 80px 20px;
  background: #fafafa;
  border-bottom: 1px solid #eeeeee;
}
.b2b-landing-hero h1 {
  font-family: var(--g-font-1, sans-serif);
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 15px;
}
.b2b-landing-hero p {
  font-size: 16px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}
.b2b-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}
@media (max-width: 850px) {
  .b2b-landing-grid {
    grid-template-columns: 1fr;
  }
}
.b2b-landing-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}
.b2b-landing-card-icon {
  font-size: 32px;
  color: #cda240;
  margin-bottom: 15px;
}
.b2b-landing-card h3 {
  font-family: var(--g-font-1, sans-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111111;
}
.b2b-landing-card p {
  font-size: 13px;
  color: #777777;
  line-height: 1.5;
}
.b2b-cta-btn {
  display: inline-block;
  background: #cda240;
  color: #ffffff !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(205, 162, 64, 0.2);
}
.b2b-cta-btn:hover {
  background: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.b2b-cta-secondary-btn {
  display: inline-block;
  background: transparent;
  color: #000000 !important;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  border: 1.5px solid #000000;
  transition: all 0.3s ease;
  margin-left: 15px;
}
.b2b-cta-secondary-btn:hover {
  background: #000000;
  color: #ffffff !important;
}

/* FAQ section */
.b2b-faq-accordion {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}
.b2b-faq-item {
  border-bottom: 1px solid #eeeeee;
  padding: 18px 0;
}
.b2b-faq-question {
  font-family: var(--g-font-1, sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.b2b-faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: #888888;
}
.b2b-faq-item.active .b2b-faq-question::after {
  content: "-";
}
.b2b-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-top: 0;
}
.b2b-faq-item.active .b2b-faq-answer {
  max-height: 500px;
  margin-top: 10px;
  transition: max-height 0.5s ease-in-out;
}

/* ==========================================================================
   Luxury Interactive About Us Page Styles
   ========================================================================== */
.about-luxury-wrapper {
  background: #fafafa;
  overflow: hidden;
}

/* Hero Section */
.about-luxury-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.about-luxury-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.about-luxury-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #ffffff;
}
.about-luxury-hero-content h1 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff;
}
.about-luxury-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Statistics Grid */
.about-stats-container {
  padding: 80px 0;
  background: #ffffff;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}
.about-stat-card {
  background: rgba(250, 248, 245, 0.7);
  border: 1px solid rgba(205, 162, 64, 0.1);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}
.about-stat-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #cda240;
  box-shadow: 0 15px 35px rgba(205, 162, 64, 0.08);
}
.about-stat-number {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #cda240;
  margin-bottom: 10px;
  line-height: 1;
}
.about-stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666666;
  font-weight: 500;
}

/* Heritage Timeline */
.about-timeline-container {
  background: #fafafa;
  padding: 100px 0;
  position: relative;
}
.about-timeline-title {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Center Line */
.about-timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: rgba(205, 162, 64, 0.25);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
@media (max-width: 767px) {
  .about-timeline::after {
    left: 31px;
  }
}
/* Timeline Node Group */
.about-timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .about-timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
  }
}
.about-timeline-item-left {
  left: 0;
}
.about-timeline-item-right {
  left: 50%;
}
@media (max-width: 767px) {
  .about-timeline-item-right {
    left: 0;
  }
}
/* Timeline central dot */
.about-timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  top: 32px;
  background: #ffffff;
  border: 3px solid rgba(205, 162, 64, 0.4);
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
}
.about-timeline-item-right .about-timeline-dot {
  left: -8px;
  right: auto;
}
@media (max-width: 767px) {
  .about-timeline-dot {
    left: 22px !important;
    right: auto !important;
    top: 32px;
  }
}
.about-timeline-item:hover .about-timeline-dot {
  background: #cda240;
  border-color: #cda240;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(205, 162, 64, 0.5);
}
/* Timeline Box Content */
.about-timeline-content {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 24px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.about-timeline-item:hover .about-timeline-content {
  transform: translateY(-4px);
  border-color: rgba(205, 162, 64, 0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}
.about-timeline-year {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #cda240;
  margin-bottom: 8px;
}
.about-timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 10px;
}
.about-timeline-content p {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   Luxury Glassmorphic Contact Us Page Styles
   ========================================================================= */
.contact-luxury-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .contact-luxury-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Left side: Luxury Corporate details */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-luxury-header h2 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #111111;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.contact-luxury-header p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 25px;
}
.contact-info-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(205, 162, 64, 0.25);
  box-shadow: 0 8px 25px rgba(205, 162, 64, 0.05);
}
.contact-info-icon-wrapper {
  background: rgba(205, 162, 64, 0.1);
  color: #cda240;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info-content p {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
}
.contact-info-content a {
  color: #cda240;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-info-content a:hover {
  color: #000000;
}

/* Right side: Glassmorphic Contact Form */
.contact-luxury-form-container {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 575px) {
  .contact-luxury-form-container {
    padding: 25px;
  }
}
.contact-luxury-form-container h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Luxury minimal underline input forms */
.contact-luxury-form .field {
  position: relative;
  margin-bottom: 30px;
}
.contact-luxury-form .field__input {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #dddddd;
  border-radius: 0;
  padding: 10px 0;
  font-size: 14px;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
  color: #111111;
  box-shadow: none !important;
}
.contact-luxury-form .field__input:focus {
  border-color: #cda240;
}
.contact-luxury-form .field__label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 13px;
  color: #888888;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-luxury-form .field__input:focus ~ .field__label,
.contact-luxury-form .field__input:not(:placeholder-shown) ~ .field__label {
  top: -15px;
  font-size: 10px;
  color: #cda240;
  font-weight: 600;
}
.contact-luxury-form textarea.field__input {
  min-height: 100px;
  resize: vertical;
}

.contact-luxury-submit-btn {
  background: #000000;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 35px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-luxury-submit-btn:hover {
  background: #cda240;
  box-shadow: 0 4px 15px rgba(205, 162, 64, 0.2);
  transform: translateY(-1px);
}
.contact-luxury-submit-btn i {
  transition: transform 0.2s ease;
}
.contact-luxury-submit-btn:hover i {
  transform: translateX(4px);
}

/* Map Section */
.contact-luxury-map-container {
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}
.contact-luxury-map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.02);
  height: 450px;
}
.contact-luxury-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   B2B UI Polish Details
   ========================================================================== */
#b2b-loader-overlay {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px) saturate(120%);
  -webkit-backdrop-filter: blur(25px) saturate(120%);
}
.b2b-loader-circle {
  border-top-color: #cda240;
  box-shadow: 0 0 15px rgba(205, 162, 64, 0.15);
}
.b2b-modal-content {
  border: 1.5px solid rgba(205, 162, 64, 0.15);
  box-shadow: 0 30px 70px rgba(205, 162, 64, 0.08);
}
.b2b-modal-card.active {
  border-color: #cda240;
  box-shadow: 0 10px 30px rgba(205, 162, 64, 0.08);
}
.b2b-unit-price-val {
  font-weight: 700;
  color: #cda240;
}
.b2b-price-badge {
  background: linear-gradient(135deg, rgba(205, 162, 64, 0.15), rgba(176, 133, 38, 0.15));
  border: 1px solid rgba(205, 162, 64, 0.25);
  box-shadow: 0 2px 8px rgba(205, 162, 64, 0.05);
}
.b2b-moq-warning {
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
  transition: all 0.3s ease;
}

/* Hide currency converter floating widgets, disclosures, flags and popups */
localization-form,
.localization-form,
.localization-selector,
.disclosure,
.disclosure__button,
.disclosure__list-wrapper,
#FooterCountryForm,
#HeaderCountryForm,
#HeaderCountryFormMobile,
.country-flag,
.shopify-localization-form,
.doubly-wrapper,
#doubly-currencies,
.currency-switcher,
.currency-picker,
.currency-selector,
.transcy-switcher,
.transcy-wrapper,
#shopify-user-location,
#hextom_curr_switcher,
.avada-m-picker,
[class*="avada-currency"],
[id*="avada-currency"],
[class*="mleda-currency"],
[id*="mleda-currency"],
[id*="CountryForm"],
[id*="CountryList"],
#shopify-section-geolocation,
.shopify-geolocation-popup {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Header Gold Pill Region & Currency Selector */
.b2b-region-selector-wrapper {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}
.b2b-region-pill-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: #ffffff !important;
  border: 1.5px solid #cda240 !important;
  border-radius: 30px !important;
  padding: 6px 30px 6px 14px !important;
  box-shadow: 0 4px 15px rgba(205, 162, 64, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}
.b2b-region-pill-box:hover {
  border-color: #b08526 !important;
  box-shadow: 0 6px 20px rgba(205, 162, 64, 0.18);
  transform: translateY(-1px);
}
.b2b-region-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}
.b2b-region-selected-text {
  font-family: var(--g-font-1, sans-serif);
  font-weight: 700;
  font-size: 13px;
  color: #111111;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.b2b-region-caret-arrow {
  position: absolute;
  right: 14px;
  font-size: 8px;
  color: #888888;
  pointer-events: none;
}
.b2b-region-native-select {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 10 !important;
  appearance: none !important;
}
/* Dot & Key Style Shop By Concern Cards */
.b2b-concern-card-wrapper {
  position: relative;
  width: 100%;
}
.b2b-concern-card {
  position: relative;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  background: #111111;
  aspect-ratio: 4/5;
}
.b2b-concern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}
.b2b-concern-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease !important;
  filter: brightness(0.95);
}
.b2b-concern-card:hover img {
  transform: scale(1.08) !important;
  filter: brightness(1);
}
.b2b-concern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.88) 100%) !important;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}
.b2b-concern-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.b2b-concern-title {
  color: #ffffff !important;
  font-family: var(--g-font-1, sans-serif);
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.b2b-concern-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none !important;
}
.b2b-concern-card:hover .b2b-concern-btn {
  background: #ffffff !important;
  color: #111111 !important;
  transform: scale(1.12);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* Cart Drawer Product Item Clipping & Visibility Fix (Matching Img 3) */
.mini-cart-content {
  padding-top: 15px !important;
  overflow-y: auto !important;
}
.mini-cart-header {
  padding-bottom: 12px !important;
  margin-bottom: 12px !important;
}
.js-mini-cart-content {
  padding-top: 15px !important;
  overflow-y: visible !important;
  min-height: 120px !important;
}
.mini-cart-item,
.cart__row_drawer,
.js-mini-cart-content .product-card-buywith,
.js-mini-cart-content tr {
  padding: 12px 0 !important;
  margin-bottom: 8px !important;
  overflow: visible !important;
}
/* Interactive Luxury Contact Us Polish */
.contact-info-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.contact-info-card:hover {
  transform: translateX(8px) translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: #cda240 !important;
}
.contact-info-icon-wrapper {
  transition: transform 0.4s ease, background 0.3s ease !important;
}
.contact-info-card:hover .contact-info-icon-wrapper {
  transform: scale(1.18) rotate(6deg) !important;
  background: #cda240 !important;
  color: #ffffff !important;
}
.contact-luxury-submit-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease !important;
}
.contact-luxury-submit-btn:hover {
  background: #111111 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px) !important;
}

/* Interactive About Us Polish */
.about-stat-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
}
.about-stat-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 15px 35px rgba(205, 162, 64, 0.18) !important;
  border-color: #cda240 !important;
}
.about-timeline-content {
  transition: all 0.4s ease !important;
}
.about-timeline-item:hover .about-timeline-content {
  transform: translateY(-5px) !important;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1) !important;
  border-color: #cda240 !important;
}
.about-timeline-dot {
  transition: all 0.4s ease !important;
}
.about-timeline-item:hover .about-timeline-dot {
  background: #cda240 !important;
  transform: scale(1.4) !important;
  box-shadow: 0 0 15px rgba(205, 162, 64, 0.5) !important;
/* ----------------------------------------
   Bundler App Visibility & Slot Placement
   ---------------------------------------- */
.b2b-bundler-slot {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  margin-top: 15px;
  margin-bottom: 15px;
  width: 100%;
}
body.shopping-mode-business .b2b-bundler-slot,
body.mode-business .b2b-bundler-slot,
html.b2b-active .b2b-bundler-slot {
  display: block !important;
}
body:not(.shopping-mode-business):not(.mode-business) .b2b-bundler-slot,
html:not(.b2b-active) .b2b-bundler-slot {
  display: none !important;
}

/* Aggressively Hide Bundler App Widgets in Retail / FOR ME Mode */
body:not(.shopping-mode-business):not(.mode-business) [class*="bundler"],
body:not(.shopping-mode-business):not(.mode-business) [id*="bundler"],
body:not(.shopping-mode-business):not(.mode-business) .bundler-target-element,
body:not(.shopping-mode-business):not(.mode-business) .bk-summary,
body:not(.shopping-mode-business):not(.mode-business) [data-bundler-container],
body:not(.shopping-mode-business):not(.mode-business) iframe[src*="bundler"],
html:not(.b2b-active) [class*="bundler"],
html:not(.b2b-active) [id*="bundler"],
html:not(.b2b-active) .bundler-target-element,
html:not(.b2b-active) .bk-summary,
html:not(.b2b-active) [data-bundler-container],
html:not(.b2b-active) iframe[src*="bundler"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Show Bundler App Widgets ONLY in B2B / FOR BUSINESS Mode */
body.shopping-mode-business [class*="bundler"],
body.shopping-mode-business [id*="bundler"],
body.shopping-mode-business .bundler-target-element,
body.shopping-mode-business .bk-summary,
body.shopping-mode-business [data-bundler-container],
body.shopping-mode-business iframe[src*="bundler"],
body.mode-business [class*="bundler"],
body.mode-business [id*="bundler"],
body.mode-business .bundler-target-element,
body.mode-business .bk-summary,
body.mode-business [data-bundler-container],
body.mode-business iframe[src*="bundler"],
html.b2b-active [class*="bundler"],
html.b2b-active [id*="bundler"],
html.b2b-active .bundler-target-element,
html.b2b-active .bk-summary,
html.b2b-active [data-bundler-container],
html.b2b-active iframe[src*="bundler"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
}

/* Hide header Business Enquiry button */
.b2b-inquiry-header-btn {
  display: none !important;
}

/* ----------------------------------------
   Luxury Product Description & Key Benefits Styling
   ---------------------------------------- */
.nav-tab-info {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.nav-tab-info .nav-tabs {
  border-bottom: 2px solid #eef0f2 !important;
  justify-content: center !important;
  gap: 30px !important;
  margin-bottom: 35px !important;
}

.nav-tab-info .nav-tabs .nav-link {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #718096 !important;
  border: none !important;
  background: transparent !important;
  padding: 12px 24px !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

.nav-tab-info .nav-tabs .nav-link.active,
.nav-tab-info .nav-tabs .nav-link:hover {
  color: #1a202c !important;
}

.nav-tab-info .nav-tabs .nav-link.active::after {
  content: '' !important;
  position: absolute !important;
  bottom: -2px !important;
  left: 0 !important;
  width: 100% !important;
  height: 3px !important;
  background: linear-gradient(90deg, #cda240 0%, #e6c875 100%) !important;
  border-radius: 3px !important;
}

/* Product Description Container Card */
.nav-tab-info .tab-content .tab-pane {
  background: #ffffff !important;
  border: 1px solid #eef0f2 !important;
  border-radius: 20px !important;
  padding: 45px 50px !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #334155 !important;
}

/* Paragraphs & Intro Highlights */
.nav-tab-info .tab-content p {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #475569 !important;
  margin-bottom: 20px !important;
}

.nav-tab-info .tab-content p strong {
  color: #0f172a !important;
  font-weight: 700 !important;
}

/* Section Headings (e.g. KEY BENEFITS) */
.nav-tab-info .tab-content h1,
.nav-tab-info .tab-content h2,
.nav-tab-info .tab-content h3,
.nav-tab-info .tab-content h4 {
  font-size: 22px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #0f172a !important;
  margin-top: 40px !important;
  margin-bottom: 25px !important;
  padding-left: 16px !important;
  border-left: 4px solid #cda240 !important;
  display: flex !important;
  align-items: center !important;
}

/* Luxury Grid Transformation for Key Benefits Bullet Lists */
.nav-tab-info .tab-content ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-top: 25px !important;
  margin-bottom: 30px !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 16px !important;
}

.nav-tab-info .tab-content ul li {
  position: relative !important;
  background: #fafafb !important;
  border: 1px solid #eef0f2 !important;
  border-radius: 14px !important;
  padding: 16px 20px 16px 48px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
}

.nav-tab-info .tab-content ul li:hover {
  transform: translateY(-3px) !important;
  background: #ffffff !important;
  border-color: #cda240 !important;
  box-shadow: 0 10px 25px rgba(205, 162, 64, 0.15) !important;
}

.nav-tab-info .tab-content ul li::before {
  content: '✨' !important;
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 16px !important;
}

/* Premium Header Navigation & Aesthetics */
.site-nav__link {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #1e293b !important;
  padding: 8px 16px !important;
  position: relative !important;
  transition: color 0.3s ease !important;
}

.site-nav__link:hover {
  color: #cda240 !important;
}

.site-nav__item.site-nav--active .site-nav__link {
  color: #cda240 !important;
}

.site-nav__item.site-nav--active .site-nav__link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 16px !important;
  right: 16px !important;
  height: 2.5px !important;
  background: linear-gradient(90deg, #cda240 0%, #e6c875 100%) !important;
  border-radius: 2px !important;
}

/* Header Container Box Shadow & Smooth Backdrop */
header.site-header,
.header-wrap,
.header-bottom {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
  background: #ffffff !important;
}










