/* ===== DROPDOWN SUBMENU - FIXED Feb 6, 2026 ===== */
.dropdown-submenu {
    display: none !important;
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 91px !important;
    width: 90% !important;
    max-width: 1445px !important;
    height: auto !important;
    max-height: 80vh !important;
    background: white;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    border-radius: 15px;
    padding: 32px 31px;
    z-index: 10000 !important;
    overflow-y: auto;
}
.dropdown-submenu.active {
    display: flex !important;
    justify-content: space-between !important;
    gap: 16px;
}
.dropdown-submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to bottom, #D0003A, #B51151, #AB2379);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    z-index: 1;
}
.dropdown-submenu.resources-dropdown {
    max-width: 1000px !important;
    max-height: 500px !important;
}
.dropdown-submenu.products-dropdown .dropdown-box {
    flex: 1;
    min-width: 0;
}
/* Auto-size products dropdown based on visible columns */
.dropdown-submenu.products-dropdown {
    width: fit-content !important;
    max-width: calc(100vw - 100px) !important;
    padding: 24px 30px 24px 50px !important;
}
.dropdown-submenu.products-dropdown .dropdown-box:first-child {
    flex: 0 0 260px;
    max-width: 260px;
}
.dropdown-submenu.products-dropdown .dropdown-box:not(:first-child) .dropdown-list {
    gap: 14px 18px;
}
.dropdown-submenu.products-dropdown .dropdown-list-item {
    font-size: 13.5px;
    line-height: 1.3;
}
@media (max-width: 600px) {
    .dropdown-submenu {
        top: 65px !important;
    }
}

/* Home dropdown should stay compact */
#home-dropdown.dropdown-submenu {
    width: 360px !important;
    max-width: 92vw !important;
    height: auto !important;
    max-height: none !important;
    padding: 16px 18px !important;
    overflow: visible !important;
}

#home-dropdown.dropdown-submenu.active {
    display: block !important;
}

#home-dropdown .dropdown-box {
    width: 100% !important;
    flex: none !important;
}

/* FINAL home dropdown compact fix */
#home-dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
    width: max-content !important;
    min-width: 260px !important;
    max-width: 360px !important;
    height: auto !important;
    max-height: none !important;
    padding: 12px !important;
    border-radius: 8px !important;
    overflow: visible !important;
    z-index: 10001 !important;
}

/* Product pages baseline (professional + low-saturation) */
.product-detail-section h1,
.product-detail-section h2,
.product-detail-section h3 {
  font-family: "Literata", serif !important;
  color: #1f1f25 !important;
  letter-spacing: -0.01em;
}

.product-detail-section p,
.product-detail-section li,
.product-detail-section .subtitle {
  font-family: "Roboto", sans-serif !important;
  color: #43434d !important;
}

.product-detail-section h1 { font-size: clamp(34px, 3.4vw, 46px) !important; line-height: 1.14 !important; }
.product-detail-section h2 { font-size: clamp(28px, 2.6vw, 36px) !important; line-height: 1.2 !important; }
.product-detail-section h3 { font-size: clamp(21px, 1.9vw, 26px) !important; line-height: 1.25 !important; }
.product-detail-section p,
.product-detail-section li { font-size: clamp(16px, 1.1vw, 19px) !important; line-height: 1.7 !important; }

.product-detail-section .why-choose-section,
.product-detail-section .features-section,
.product-detail-section .cta-section {
  background: #ffffff !important;
  border: 1px solid #ececf1 !important;
  box-shadow: 0 8px 24px rgba(15, 15, 20, 0.06) !important;
}

.product-detail-section .feature-icon {
  background: #f3f4f8 !important;
  color: #B51151 !important;
  box-shadow: none !important;
}

.product-detail-section .cta-button {
  background: #B51151 !important;
  color: #fff !important;
}
.product-detail-section .cta-button:hover {
  background: #9f1048 !important;
}
