/*
Theme Name: Regalia
Description: Regalia Luxury Watch Theme
Version: 1.0.0
Text Domain: regalia
*/

/* ===== Explore Collections Section ===== */
.explore-collections-section {
  padding: 100px 0 80px;
  background: var(--bg-primary, #ffffff);
}

.explore-collections-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.explore-collections-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary, #1a1a2e);
  margin-bottom: 20px;
}

.explore-collections-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary, #666);
  margin: 0;
}

.explore-collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.explore-collection-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.4s ease;
  animation-delay: var(--delay, 0s);
}

.explore-collection-card:hover {
  transform: translateY(-6px);
}

.explore-card-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 22px;
}

.explore-card-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.explore-collection-card:hover .explore-card-image {
  transform: scale(1.06);
}

.explore-card-info {
  padding: 0 4px;
}

.explore-card-name {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary, #1a1a2e);
  margin: 0 0 10px 0;
}

.explore-card-discover {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary, #1a1a2e);
  gap: 6px;
  cursor: pointer;
}

.explore-card-underline {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-gold, #255F38);
  transition: width 0.4s ease;
}

.explore-collection-card:hover .explore-card-underline {
  width: 52px;
}

/* CTA Button */
.explore-collections-cta {
  text-align: center;
  padding-top: 10px;
}

.explore-cta-btn {
  display: inline-block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary, #1a1a2e);
  padding: 16px 40px;
  border: 1.5px solid var(--text-primary, #1a1a2e);
  text-decoration: none;
  transition: all 0.35s ease;
  background: transparent;
}

.explore-cta-btn:hover {
  background: var(--text-primary, #1a1a2e);
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .explore-collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .explore-collections-section {
    padding: 70px 0 60px;
  }
}

@media (max-width: 575px) {
  .explore-collections-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .explore-collections-title {
    font-size: 1.5rem;
  }
  .explore-collections-section {
    padding: 50px 0 40px;
  }
}

/* ===== Partner Section ===== */
.partner-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.partner-image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.partner-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: var(--transition-slow);
}

.partner-image-wrapper:hover img {
  transform: scale(1.03);
}

.partner-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.partner-image-border {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
  border-radius: 2px;
}

.partner-perks {
  list-style: none;
  padding: 0;
  margin: 30px 0 40px 0;
}

.partner-perks li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.partner-perks li strong {
  color: var(--color-text-primary);
}

.perk-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Partner Inquiry Modal ===== */
.partner-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.partner-modal {
  background: #0d0d0d;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  width: 90%;
  max-width: 650px;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.partner-modal-overlay.active .partner-modal {
  transform: scale(1);
}

.partner-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #888;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.partner-modal-close:hover {
  color: var(--color-gold);
}

.partner-modal-header {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}

.partner-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 8px;
}

.partner-modal-header p {
  color: #888;
  font-size: 0.9rem;
}

.partner-modal-form .form-group {
  margin-bottom: 20px;
}

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

.partner-modal-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 8px;
}

.partner-modal-form input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.partner-modal-form input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(201, 168, 76, 0.02);
}

.form-status {
  margin-top: 15px;
  font-size: 0.88rem;
  display: none;
  padding: 10px;
  border-radius: 4px;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 25px;
}

.form-submit-btn .form-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

.form-submit-btn.loading .form-spinner {
  display: block;
}

.form-submit-btn.loading span {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state styles */
.partner-success-state {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.partner-success-state.active {
  display: block;
}

.success-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
}

.success-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.partner-success-state h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}

.partner-success-state p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .partner-image-wrapper img {
    height: 400px;
  }
}

@media (max-width: 575px) {
  .partner-modal-form .form-row-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .partner-modal {
    padding: 30px 20px;
  }
}

/* Hide mobile menu drawer on desktop */
.mobile-menu-drawer {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }

  .navbar-inner {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 !important;
    height: 80px !important;
    width: 100% !important;
  }

  .nav-top-row {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
  }

  .nav-search-container {
    display: none !important;
  }

  .nav-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    z-index: 10 !important;
  }

  .nav-logo-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .nav-logo-text {
    display: none !important;
  }

  .nav-bottom-row {
    display: none !important;
  }

  .nav-menu-toggle {
    display: flex !important;
    order: 1 !important;
    position: relative !important;
    z-index: 12 !important;
  }

  .nav-actions {
    display: flex !important;
    order: 2 !important;
    position: relative !important;
    z-index: 12 !important;
  }

  .nav-search-action-only {
    display: none !important;
  }

  /* ===== Mobile Menu Drawer ===== */
  .mobile-menu-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #0b0b0d !important;
    z-index: 99999 !important;
    transform: translateX(-100%) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .mobile-menu-drawer.open {
    transform: translateX(0) !important;
  }

  .mobile-menu-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 20px;
    flex-shrink: 0;
  }

  .mobile-menu-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
  }

  .mobile-menu-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
  }

  .mobile-menu-close:hover {
    border-color: #ffffff;
    transform: translateY(-50%) rotate(90deg);
  }

  .mobile-menu-close svg {
    width: 18px;
    height: 18px;
  }

  .mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px 50px;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .mobile-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .mobile-menu-item:hover {
    color: var(--color-gold-light, #c29b68);
    padding-left: 5px;
  }

  .mobile-menu-item .chevron-right {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
  }

  .mobile-menu-item:hover .chevron-right {
    transform: translateX(4px);
    color: var(--color-gold-light, #c29b68);
  }

  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
  }

  .mobile-footer-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }

  .mobile-footer-link:hover {
    color: #ffffff;
  }

  .mobile-footer-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold-light, #c29b68);
  }
}

/* ===== BRAND PROPOSITION SECTION ===== */
.brand-proposition-section {
  position: relative;
  background-color: #050505;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proposition-decor-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.proposition-decor-lines svg {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.brand-proposition-section .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.proposition-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.proposition-badge {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 5px;
  color: #c5a059;
  text-transform: uppercase;
  font-weight: 600;
}

.proposition-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.5px;
}

.proposition-title span {
  display: block;
}

.proposition-title .white-text {
  color: #ffffff;
}

.proposition-title .gold-text-italic {
  color: #c5a059;
  font-style: italic;
  font-family: var(--font-accent, serif);
  margin-top: 4px;
}

.proposition-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #a0a0a0;
  max-width: 680px;
  margin: 0;
}

.proposition-cta-group {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.proposition-cta-group .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.proposition-cta-group .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
}

/* Responsive adjustment */
@media (max-width: 767px) {
  .brand-proposition-section {
    padding: 70px 0;
  }
  .proposition-content {
    gap: 16px;
  }
  .proposition-badge {
    font-size: 0.68rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
  }
  .proposition-title {
    font-size: 1.85rem;
    line-height: 1.3;
  }
  .proposition-title .gold-text-italic {
    margin-top: 2px;
  }
  .proposition-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #909090;
    padding: 0;
    max-width: 100%;
  }
  .proposition-cta-group {
    flex-direction: row;
    width: 100%;
    gap: 10px;
    padding: 0;
    margin-top: 10px;
    justify-content: center;
  }
  .proposition-cta-group .btn {
    flex: 1;
    width: auto;
    padding: 12px 10px;
    font-size: 0.62rem;
    letter-spacing: 1px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* ===== CATEGORY BEZEL NAVIGATION ===== */
.category-bezel-section {
  padding: 80px 0 45px 0;
  background-color: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
}

.category-bezel-section + .collection-section {
  padding-top: 50px;
}

.category-bezel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.category-bezel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none !important;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 200px;
}

.bezel-frame-wrapper {
  width: 160px;
  height: 160px;
  padding: 2.5px;
  background: var(--gold-gradient, linear-gradient(135deg, #255F38 0%, #12331d 100%));
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bezel-frame-inner {
  width: 100%;
  height: 100%;
  background: #0b0b0d;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bezel-frame-img {
  width: 105% !important;
  height: 105% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
  filter: grayscale(15%) brightness(0.9);
}

.bezel-accent-line {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1.5px solid rgba(37, 95, 56, 0.25); /* Subtle forest green border */
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
  clip-path: polygon(0 0, 60% 0, 60% 100%, 0 100%); /* Semi-circular arc */
}

/* Hover Effects */
.category-bezel-card:hover .bezel-frame-wrapper {
  transform: translateY(-5px);
}

.category-bezel-card:hover .bezel-frame-img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}

.category-bezel-card:hover .bezel-accent-line {
  transform: rotate(360deg);
  border-color: var(--color-gold, #255F38);
}

.category-bezel-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  text-align: center;
}

.category-bezel-card:hover .category-bezel-label {
  color: var(--color-gold, #255F38);
}

.category-bezel-label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 1.5px;
  background: var(--color-gold, #255F38);
  transition: transform 0.3s ease;
}

.category-bezel-card:hover .category-bezel-label::after {
  transform: translateX(-50%) scaleX(1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .category-bezel-grid {
    gap: 20px;
  }
  .bezel-frame-wrapper {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .category-bezel-section {
    padding: 60px 0;
  }
  .category-bezel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .bezel-frame-wrapper {
    width: 130px;
    height: 130px;
  }
}

/* Make watch images in product cards appear larger */
.premium-card-text {
  flex: 1.05 !important;
}

.premium-card-image-wrapper {
  flex: 1.35 !important;
  overflow: visible !important;
}

.premium-product-image {
  transform: scale(1.12);
}

.premium-product-card:hover .premium-product-image {
  transform: scale(1.22) translateY(-6px) !important;
}

/* Adjust gender collections split banners to prevent watch image overlap */
@media (min-width: 769px) {
  .collection-split-card.men-card {
    padding-left: 3% !important;
  }
  .collection-split-card.women-card {
    padding-right: 3% !important;
  }
}

.collection-split-card .card-content {
  max-width: 320px !important;
}

.collection-split-card .card-title {
  max-width: 280px !important; /* Forces title to wrap: COLLECTION below gender name */
}

/* ===== NAVIGATION DROPDOWNS (DESKTOP & MOBILE) ===== */
/* Desktop Dropdown */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-chevron {
  transition: transform 0.3s ease;
}

.nav-dropdown-wrapper:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  min-width: 165px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1000;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px !important;
  color: var(--color-text-secondary) !important;
  font-size: 0.75rem !important;
  text-align: left;
  transition: var(--transition-fast) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: none !important;
}

.nav-dropdown-menu a::after {
  display: none !important; /* Remove bottom underline on hover */
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: #c5a059 !important;
  background-color: rgba(255, 255, 255, 0.03);
  padding-left: 24px !important;
}

/* Mobile Dropdown Wrapper inside mobile drawer */
.mobile-dropdown-wrapper {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.mobile-dropdown-trigger span {
  color: var(--color-text-secondary);
}

.mobile-dropdown-trigger .chevron-down {
  transition: transform 0.3s ease;
  color: var(--color-text-secondary);
}

.mobile-dropdown-wrapper.open .mobile-dropdown-trigger span {
  color: #c5a059;
}

.mobile-dropdown-wrapper.open .mobile-dropdown-trigger .chevron-down {
  transform: rotate(180deg);
  color: #c5a059;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.015);
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-dropdown-wrapper.open .mobile-dropdown-menu {
  max-height: 220px;
}

.mobile-menu-item.sub-item {
  padding-left: 40px !important;
  border-bottom: none !important;
  font-size: 0.8rem !important;
  background: transparent !important;
}

/* Safety quick-view modal hiding overrides to prevent layout leakage on load */
.quick-view-modal {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}
.quick-view-modal.active {
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ===== HOMEPAGE: INTERNATIONAL NETWORK SECTION ===== */
.network-section {
  background-color: #080808;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.network-header {
  max-width: 800px;
  margin: 0 auto 70px auto;
  padding: 0 20px;
}

.network-badge {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #c5a059;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
}

.network-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 20px 0;
}

.network-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #a0a0a0;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.network-column {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
}

.network-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

.network-col-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: #c5a059;
  margin: 0;
  font-weight: 400;
}

.network-col-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #8a96a3;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.network-col-status {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #c5a059;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Mobile & Tablet responsiveness */
@media (max-width: 991px) {
  .network-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0;
  }
  
  .network-column {
    padding: 15px 5px;
    gap: 8px;
  }
  
  .network-col-title {
    font-size: 2rem;
  }
  
  .network-col-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }
  
  .network-col-status {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 575px) {
  .network-section {
    padding: 60px 0;
  }
  
  .network-title {
    font-size: 1.8rem;
  }
  
  .network-desc {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .network-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0;
    padding: 0 10px;
  }
  
  .network-column {
    padding: 10px 4px;
    gap: 5px;
  }
  
  .network-col-title {
    font-size: 1.5rem;
  }
  
  .network-col-label {
    font-size: 0.52rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  
  .network-col-status {
    font-size: 0.48rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  
  .network-column::after {
    display: block !important;
    top: 20% !important;
    height: 60% !important;
  }
  
  .network-column:not(:last-child) {
    border-bottom: none !important;
    padding-bottom: 10px !important;
  }
}

/* ===== JOURNAL SECTION & CARDS ===== */
.homepage-journal-section {
  background-color: #030303;
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.journal-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px auto;
  padding: 0 20px;
}

.journal-badge {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #c5a059;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
}

.journal-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 20px 0;
}

.journal-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #a0a0a0;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* Journal Grid Layout */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Journal Card styling */
.journal-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.journal-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 95, 56, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.journal-card-image-link {
  display: block;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
}

.journal-card-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.journal-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.journal-card:hover .journal-card-image {
  transform: scale(1.08);
}

.journal-card-cat {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-gold-light, #255F38);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

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

.journal-card-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #888888;
  margin-bottom: 12px;
  display: block;
}

.journal-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 15px 0;
}

.journal-card-title a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.journal-card-title a:hover {
  color: var(--color-gold-light, #255F38);
}

.journal-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555555;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.journal-card-read {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
  width: fit-content;
}

.journal-card-read:hover {
  gap: 12px;
}

/* Journal Homepage CTA Button */
.journal-section-cta {
  text-align: center;
  margin-top: 60px;
}

.journal-cta-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  padding: 16px 36px;
  letter-spacing: 3px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
}

.journal-cta-btn:hover {
  background-color: #ffffff;
  color: #050505;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.08);
}

/* ===== JOURNAL SINGLE POST DETAIL STYLES ===== */
.journal-single-content h1,
.journal-single-content h2,
.journal-single-content h3,
.journal-single-content h4 {
  font-family: var(--font-display);
  color: #ffffff;
  margin: 40px 0 20px 0;
  font-weight: 400;
  line-height: 1.3;
}

.journal-single-content h2 { font-size: 2.2rem; }
.journal-single-content h3 { font-size: 1.7rem; }

.journal-single-content p {
  margin: 0 0 25px 0;
  color: #c0c0c0;
}

.journal-single-content blockquote {
  border-left: 2px solid #c5a059;
  padding: 10px 0 10px 30px;
  margin: 40px 0;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: #ffffff;
}

.journal-single-content blockquote p {
  margin: 0;
}

/* Pagination navigation */
.journal-pagination a,
.journal-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #a0a0a0;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.journal-pagination a:hover,
.journal-pagination span.current {
  border-color: #c5a059;
  color: #c5a059;
  background: rgba(197, 160, 89, 0.05);
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .homepage-journal-section .journal-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px;
  }
  
  .homepage-journal-section .journal-card-body {
    padding: 15px 12px;
  }
  
  .homepage-journal-section .journal-card-title {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  
  .homepage-journal-section .journal-card-excerpt {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

@media (max-width: 767px) {
  .homepage-journal-section {
    padding: 80px 0;
  }
  
  .journal-title {
    font-size: 2.2rem;
  }
  
  .journal-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .journal-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Horizontal Scroll Snap Carousel for Homepage Journal */
  .homepage-journal-section .journal-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 20px !important;
    padding: 20px 40px 40px 40px !important;
    scroll-padding: 0 40px !important;
    scrollbar-width: none !important;
  }
  
  .homepage-journal-section .journal-grid::-webkit-scrollbar {
    display: none !important;
  }
  
  .homepage-journal-section .journal-card {
    flex: 0 0 82% !important;
    width: 82% !important;
    scroll-snap-align: center !important;
    position: relative;
    border-radius: 8px !important;
    overflow: hidden;
  }
  
  .homepage-journal-section .journal-card-image-link {
    aspect-ratio: 2/3 !important;
    width: 100% !important;
    display: block !important;
  }
  
  .homepage-journal-section .journal-card-image-wrapper {
    height: 100% !important;
  }
  
  .homepage-journal-section .journal-card-image {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  
  .homepage-journal-section .journal-card-body {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 35px 20px 20px 20px !important;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 65%, rgba(0,0,0,0) 100%) !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  .homepage-journal-section .journal-card-date {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.7rem !important;
    margin-bottom: 6px !important;
    display: block !important;
  }
  
  .homepage-journal-section .journal-card-title {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }
  
  .homepage-journal-section .journal-card-title a {
    color: #ffffff !important;
  }
  
  .homepage-journal-section .journal-card-excerpt {
    display: none !important;
  }
  
  .homepage-journal-section .journal-card-read {
    font-size: 0.72rem !important;
    color: #c5a059 !important;
    letter-spacing: 1px !important;
  }
  
  .homepage-journal-section .journal-card-cat {
    font-size: 0.55rem !important;
    padding: 3px 8px !important;
    top: 12px !important;
    left: 12px !important;
    background-color: #c5a059 !important;
    color: #0a0a0a !important;
    letter-spacing: 0.5px !important;
  }
  
  .journal-single-title {
    font-size: 2.2rem !important;
  }
}

/* Homepage International Network Section White Theme overrides */
.network-section {
  background-color: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.network-badge {
  color: var(--color-gold-light, #255F38);
}

.network-title {
  color: #0a0a0a;
}

.network-desc {
  color: #555555;
}

.network-column:not(:last-child)::after {
  background-color: rgba(37, 95, 56, 0.12);
}

.network-col-title {
  color: var(--color-gold-light, #255F38);
}

.network-col-label {
  color: #566270;
}

.network-col-status {
  color: var(--color-gold-light, #255F38);
}

@media (max-width: 575px) {
  .network-column:not(:last-child) {
    border-bottom: 1px solid rgba(37, 95, 56, 0.08);
  }
}

/* Homepage Journal Section Dark Card overrides */
.homepage-journal-section .journal-card {
  background-color: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.homepage-journal-section .journal-card:hover {
  border-color: rgba(197, 160, 89, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.homepage-journal-section .journal-card-title a {
  color: #ffffff;
}

.homepage-journal-section .journal-card-title a:hover {
  color: #c5a059;
}

.homepage-journal-section .journal-card-excerpt {
  color: #909090;
}

.homepage-journal-section .journal-card-date {
  color: #707070;
}

.homepage-journal-section .journal-card-cat {
  background-color: #c5a059;
  color: #0a0a0a;
}

/* Journal Single Detail Page Light Theme overrides */
.journal-single-page .journal-single-title {
  color: #0a0a0a !important;
}

.journal-single-content {
  color: #3e444d !important;
}

.journal-single-content h1,
.journal-single-content h2,
.journal-single-content h3,
.journal-single-content h4 {
  color: #0a0a0a !important;
}

.journal-single-content p {
  color: #3e444d !important;
}

.journal-single-content blockquote {
  color: #0a0a0a !important;
  border-left: 2px solid var(--color-gold-light, #255F38) !important;
}

/* ===== COMPACT SPACING POLISH ===== */
/* Reduce top/bottom padding across all major homepage sections */
.explore-collections-section {
  padding: 65px 0 45px 0 !important;
}

.brand-proposition-section {
  padding: 70px 0 !important;
}

.category-bezel-section {
  padding: 50px 0 30px 0 !important;
}

.category-bezel-section + .collection-section {
  padding-top: 30px !important;
}

.collection-section {
  padding: 70px 0 !important;
}

.homepage-journal-section {
  padding: 70px 0 !important;
}

.network-section {
  padding: 70px 0 !important;
}

/* Tablet Spacing overrides */
@media (max-width: 991px) {
  .explore-collections-section {
    padding: 45px 0 35px 0 !important;
  }
  .brand-proposition-section {
    padding: 50px 0 !important;
  }
  .category-bezel-section {
    padding: 40px 0 20px 0 !important;
  }
  .collection-section {
    padding: 50px 0 !important;
  }
  .homepage-journal-section {
    padding: 50px 0 !important;
  }
  .network-section {
    padding: 50px 0 !important;
  }
}

/* Mobile Spacing overrides */
@media (max-width: 767px) {
  .explore-collections-section {
    padding: 35px 0 25px 0 !important;
  }
  .brand-proposition-section {
    padding: 40px 0 !important;
  }
  .category-bezel-section {
    padding: 30px 0 15px 0 !important;
  }
  .collection-section {
    padding: 35px 0 !important;
  }
  .homepage-journal-section {
    padding: 40px 0 !important;
  }
  .network-section {
    padding: 40px 0 !important;
  }
}










