:root {
    --background: #FFF9F8;
    --surface-panel: #FFFFFF;
    --primary-coral: #FF7F70;
    --secondary-coral: #FFB5A7;
    --accent-deep: #E56B5D;
    --text-primary: #2D2422;
    --text-muted: #6B5E5B;
    --border-color: #FEE2E0;
    --shadow-color: rgba(229, 107, 93, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.text-muted {
    color: var(--text-muted) !important;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.floating-panel {
    background: var(--surface-panel);
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -15px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.btn-coral {
    background: var(--primary-coral);
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px -5px rgba(255, 127, 112, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-coral:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -8px rgba(255, 127, 112, 0.4);
}

.btn-outline-coral {
    background: #FFFFFF;
    color: var(--primary-coral);
    border: 1px solid var(--border-color);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-coral:hover {
    transform: translateY(-4px);
    background: #FFF9F8;
    border-color: var(--primary-coral);
}

/* ===== header ===== */
.floating-header .nav-container {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-header .js-dropdown-menu.is-active {
    visibility: visible;
    opacity: 1;
    transform: translateY(-8px);
}

.floating-header .js-mobile-sidebar.is-active {
    visibility: visible;
}

.floating-header .js-mobile-sidebar.is-active .js-mobile-content {
    transform: translateX(0);
}

.floating-header .js-dropdown-trigger i {
    transition: transform 0.3s ease;
}

.floating-header .js-dropdown-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.floating-header .nav-link-active {
    color: #FF7F70;
}

@media (max-width: 767px) {
    .floating-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ===== hero ===== */
.hero-block {
    background: linear-gradient(135deg, #1a0f0e 0%, #2D2422 100%);
    position: relative;
}

.hero-block .hero-bg-glow {
    background: radial-gradient(circle at 70% 30%, #FF7F70 0%, transparent 70%);
}

.hero-block .hero-floating-panel {
    backdrop-filter: blur(8px);
}

.hero-block .animate-float {
    animation: heroFloat 4s ease-in-out infinite;
}

.hero-block .animate-float-delayed {
    animation: heroFloat 4s ease-in-out 1.5s infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-block .benefit-card:hover {
    border-color: rgba(255, 127, 112, 0.4);
    transform: translateY(-8px);
}

.hero-block .hero-btn-primary {
    box-shadow: 0 10px 20px -5px rgba(255, 127, 112, 0.4);
}

.hero-block .hero-btn-primary:hover {
    box-shadow: 0 15px 30px -5px rgba(255, 127, 112, 0.6);
}

.hero-block .Montserrat {
    font-family: 'Montserrat', sans-serif;
}

.hero-block .benefit-card h3 {
    color: #FFFFFF !important;
}

.hero-block .benefit-card i {
    filter: drop-shadow(0 0 8px rgba(255, 127, 112, 0.3));
}

@media (max-width: 767px) {
    .hero-block .js-floating-badge-1 {
        right: 0 !important;
    }

    .hero-block .js-floating-badge-2 {
        left: 0 !important;
    }
}

/* ===== featured-case ===== */
.featured-case-block {
    font-family: 'Inter', sans-serif;
}

.featured-case-block h2,
.featured-case-block h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2D2422;
}

.featured-case-block .featured-panel {
    position: relative;
    z-index: 10;
}

.featured-case-block .option-card ul li i {
    flex-shrink: 0;
}

.featured-case-block .js-case-cta {
    box-shadow: 0 10px 20px -5px rgba(255, 127, 112, 0.4);
}

.featured-case-block .verdict-panel {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.featured-case-block .featured-panel:hover .verdict-panel {
    background-color: #FFFFFF;
    border-color: #FFB5A7;
}

@media (max-width: 767px) {
    .featured-case-block h2 {
        line-height: 1.3;
    }

    .featured-case-block .featured-panel {
        border-radius: 20px;
    }
}

/* ===== case-collections ===== */
.case-collections .collection-card {
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px -15px rgba(229, 107, 93, 0.12);
}

.case-collections .collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -20px rgba(229, 107, 93, 0.18);
    border-color: #FFB5A7;
}

.case-collections .collection-card img {
    transform-origin: center;
}

.case-collections .bx {
    line-height: 1;
}

@media (max-width: 767px) {
    .case-collections .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ===== cases-grid ===== */
.cases-grid-block .case-card {
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 400ms;
}

.cases-grid-block .case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(229, 107, 93, 0.18);
}

.cases-grid-block .container {
    max-width: 1280px;
}

.cases-grid-block h2,
.cases-grid-block h3 {
    color: #2D2422;
}

.cases-grid-block p {
    line-height: 1.6;
    hyphens: auto;
}

/* ===== problem-solution ===== */
.problem-solution-block .font-Montserrat {
    font-family: 'Montserrat', sans-serif;
}

.problem-solution-block .font-Inter {
    font-family: 'Inter', sans-serif;
}

.problem-solution-block .js-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.problem-solution-block .js-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.problem-solution-block .container {
    max-width: 1280px;
}

/* ===== tariffs ===== */
.lr-tariffs-block .lr-tariff-card.is-active {
    border-color: #FF7F70;
    border-width: 2px;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(229, 107, 93, 0.25);
}

.lr-tariffs-block input::placeholder,
.lr-tariffs-block textarea::placeholder {
    color: #6B5E5B;
    opacity: 0.6;
}

.lr-tariffs-block .lr-tariff-card:hover .lr-plan-btn {
    background-color: #FF7F70;
    color: white;
    border-color: #FF7F70;
}

@media (max-width: 767px) {
    .lr-tariffs-block .lr-tariff-card.scale-[1.05] {
        scale: 1;
    }

    .lr-tariffs-block .grid {
        gap: 40px;
    }
}

/* ===== common-mistakes ===== */
.common-mistakes-section .mistake-panel {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), shadow 0.4s ease;
}

.common-mistakes-section .js-filter-btn {
    cursor: pointer;
    white-space: nowrap;
}

.common-mistakes-section .js-filter-btn.active {
    background-color: #FF7F70;
    color: #FFFFFF;
    border-color: #FF7F70;
    box-shadow: 0 4px 12px rgba(255, 127, 112, 0.2);
}

.common-mistakes-section .mistake-panel img {
    object-fit: cover;
    background-color: #FEE2E0;
}

/* ===== numbers ===== */
.numbers-section .number-panel-card {
    border: 1px solid #FEE2E0;
    box-shadow: 0 20px 40px -15px rgba(229, 107, 93, 0.08);
    position: relative;
    overflow: hidden;
}

.numbers-section .number-panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #FF7F70;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.numbers-section .number-panel-card:hover::before {
    opacity: 1;
}

.numbers-section .number-value {
    color: #2D2422;
    letter-spacing: -0.02em;
}

.numbers-section .icon-container {
    transition: transform 0.4s ease;
}

.numbers-section .number-panel-card:hover .icon-container {
    transform: scale(1.1);
}

/* ===== support ===== */
.support-section .support-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-section .support-grid-item {
    height: 100%;
}

.support-section h2,
.support-section h3 {
    color: #2D2422 !important;
}

.support-section .js-support-cta:hover {
    background-color: #E56B5D;
}

@media (max-width: 768px) {
    .support-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .support-section .support-card {
        padding: 1.5rem;
    }

    .support-section img {
        max-height: 250px;
    }
}

/* ===== footer ===== */
.footer-block {
    font-family: 'Inter', sans-serif;
}

.footer-block h3 {
    font-family: 'Montserrat', sans-serif;
}

.footer-disclaimer-wrapper {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-disclaimer-wrapper:hover {
    transform: translateY(-4px);
}

.footer-main-panel {
    position: relative;
    z-index: 10;
}

.footer-link {
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FF7F70;
    transition: width 0.3s ease;
}

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

.footer-disclaimer-icon {
    box-shadow: 0 8px 16px -4px rgba(255, 127, 112, 0.2);
}

@media (max-width: 767px) {
    .footer-block {
        padding-bottom: 60px;
    }

    .footer-disclaimer-wrapper {
        margin-left: 10px;
        margin-right: 10px;
    }

    .footer-main-panel {
        margin-left: 10px;
        margin-right: 10px;
        padding: 24px;
    }

    .footer-legal-links {
        gap: 12px;
    }
}

.floating-header .nav-container {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-header .js-dropdown-menu.is-active {
    visibility: visible;
    opacity: 1;
    transform: translateY(-8px);
}

.floating-header .js-mobile-sidebar.is-active {
    visibility: visible;
}

.floating-header .js-mobile-sidebar.is-active .js-mobile-content {
    transform: translateX(0);
}

.floating-header .js-dropdown-trigger i {
    transition: transform 0.3s ease;
}

.floating-header .js-dropdown-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.floating-header .nav-link-active {
    color: #FF7F70;
}

.category-header-section h1 {
    font-family: 'Montserrat', sans-serif;
}

.category-grid-section article h2 {
    font-family: 'Montserrat', sans-serif;
}

.category-grid-section article p {
    font-family: 'Inter', sans-serif;
}

.footer-block {
    font-family: 'Inter', sans-serif;
}

.footer-block h3 {
    font-family: 'Montserrat', sans-serif;
}

.footer-disclaimer-wrapper {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-disclaimer-wrapper:hover {
    transform: translateY(-4px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FF7F70;
    transition: width 0.3s ease;
}

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

@media (max-width: 767px) {
    .floating-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-block {
        padding-bottom: 60px;
    }
}


/* ===== PAGE: about ===== */
.about-intro-section .about-intro-card {
  position: relative;
  z-index: 2;
}
.about-intro-section .feature-item {
  transition: transform 0.3s ease;
}
.about-intro-section .feature-item:hover {
  transform: translateY(-2px);
}
.about-intro-section .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.about-intro-section .mission-panel {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.about-intro-section .mission-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(229, 107, 93, 0.12);
}
.about-intro-section .image-container img {
  transition: scale 0.8s ease;
}
.about-intro-section .image-container:hover img {
  scale: 1.05;
}

/* ===== PAGE: sweet-home-3d ===== */
.detailed-case-block .Montserrat { font-family: 'Montserrat', sans-serif; }
.detailed-case-block input::placeholder, .detailed-case-block textarea::placeholder {
    color: #6B5E5B;
    opacity: 0.7;
    font-family: 'Inter', sans-serif;
}
.detailed-case-block table td, .detailed-case-block table th {
    transition: background-color 0.3s ease;
}
.detailed-case-block table tr:hover td {
    background-color: rgba(254, 226, 224, 0.3);
}
@media (max-width: 767px) {
    .detailed-case-block .detailed-case-block__panel, .detailed-case-block .detailed-case-block__analysis {
        padding: 24px 16px;
    }
    .detailed-case-block h2 {
        line-height: 1.3;
    }
}

/* ===== PAGE: contact ===== */
.contact-section .contact-card { position: relative; transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1); } .contact-section .form-group input:focus, .contact-section .form-group textarea:focus { box-shadow: 0 0 0 4px rgba(255, 127, 112, 0.1); } .contact-section select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FF7F70' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.2em; } .contact-section .js-contact-form button:active { transform: scale(0.98); }

/* ===== PAGE: privacy ===== */
.privacy-content { overflow: hidden; } .privacy-content .privacy-panel { position: relative; z-index: 10; transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); } .privacy-content .policy-item h2 { color: #2D2422; line-height: 1.3; } .privacy-content .policy-item p { color: #6B5E5B; line-height: 1.6; } .privacy-content .policy-item strong { color: #2D2422; font-weight: 600; } .privacy-content a { text-decoration: none; border-bottom: 1px solid transparent; } .privacy-content a:hover { border-bottom-color: #FF7F70; } @media (max-width: 767px) { .privacy-content .privacy-panel { padding: 2rem; margin: 0 0.5rem; } }

/* ===== PAGE: terms ===== */
.terms-content .terms-content__panel {
  position: relative;
  z-index: 10;
}

.terms-content .terms-content__body h2 {
  letter-spacing: -0.02em;
}

.terms-content .js-scroll-link {
  position: relative;
  display: inline-block;
}

.terms-content .js-scroll-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF7F70;
  transition: width 0.3s ease;
}

.terms-content .js-scroll-link:hover::after {
  width: 100%;
}

.terms-content .terms-content__body p {
  margin-bottom: 1.5rem;
}

.terms-content .terms-content__nav li {
  list-style: none;
}

@media (max-width: 767px) {
  .terms-content .terms-content__panel {
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .terms-content .terms-content__nav {
    padding: 16px;
  }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-section .disclaimer-panel {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.disclaimer-section .disclaimer-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(229, 107, 93, 0.18);
}

.disclaimer-section .disclaimer-item h3 {
  letter-spacing: -0.01em;
}

.disclaimer-section .disclaimer-body a {
  font-weight: 500;
}

@media (max-width: 767px) {
  .disclaimer-section .disclaimer-panel {
    padding: 1.5rem;
    border-radius: 1.25rem;
  }
  .disclaimer-section .disclaimer-body {
    hyphens: auto;
  }
}

.main-comment-box {
    box-shadow: 0 20px 40px -15px rgba(229, 107, 93, 0.12);
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #FFFFFF;
}

.reply-comment-box {
    box-shadow: 0 10px 25px -10px rgba(229, 107, 93, 0.1);
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    object-fit: cover;
    flex-shrink: 0;
}


/* ===== PAGE TEMPLATE: typologies ===== */
.detail-template .hero-block {
    background: linear-gradient(135deg, #1a0f0e 0%, #2D2422 100%);
}

.detail-template .hero-bg-glow {
    background: radial-gradient(circle at 70% 30%, #FF7F70 0%, transparent 70%);
}

.detail-template .Montserrat {
    font-family: 'Montserrat', sans-serif;
}

.detail-template .prose-coral h2,
.detail-template .prose-coral h3 {
    color: #2D2422 !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-template .prose-coral h2 {
    font-size: 1.5rem;
}

.detail-template .prose-coral h3 {
    font-size: 1.25rem;
}

.detail-template .prose-coral p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.detail-template .prose-coral ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.detail-template .prose-coral ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.detail-template .js-tab-trigger.active {
    color: #FF7F70;
    border-bottom-color: #FF7F70;
}

.floating-header .nav-container {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-header .js-dropdown-menu.is-active {
    visibility: visible;
    opacity: 1;
    transform: translateY(-8px);
}

.floating-header .js-mobile-sidebar.is-active {
    visibility: visible;
}

.floating-header .js-mobile-sidebar.is-active .js-mobile-content {
    transform: translateX(0);
}

.floating-header .js-dropdown-trigger i {
    transition: transform 0.3s ease;
}

.floating-header .js-dropdown-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.floating-header .nav-link-active {
    color: #FF7F70;
}

@media (max-width: 767px) {
    .floating-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FF7F70;
    transition: width 0.3s ease;
}

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

/* ===== PAGE TEMPLATE: psychology ===== */
.detail-template .hero-block {
    background: linear-gradient(135deg, #1a0f0e 0%, #2D2422 100%);
}

.detail-template .hero-bg-glow {
    background: radial-gradient(circle at 70% 30%, #FF7F70 0%, transparent 70%);
}

.detail-template .Montserrat {
    font-family: 'Montserrat', sans-serif;
}

.detail-template .prose-coral h2,
.detail-template .prose-coral h3 {
    color: #2D2422 !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-template .prose-coral h2 {
    font-size: 1.5rem;
}

.detail-template .prose-coral h3 {
    font-size: 1.25rem;
}

.detail-template .prose-coral p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.detail-template .prose-coral ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.detail-template .prose-coral ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.detail-template .js-tab-trigger.active {
    color: #FF7F70;
    border-bottom-color: #FF7F70;
}

.floating-header .nav-container {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-header .js-dropdown-menu.is-active {
    visibility: visible;
    opacity: 1;
    transform: translateY(-8px);
}

.floating-header .js-mobile-sidebar.is-active {
    visibility: visible;
}

.floating-header .js-mobile-sidebar.is-active .js-mobile-content {
    transform: translateX(0);
}

.floating-header .js-dropdown-trigger i {
    transition: transform 0.3s ease;
}

.floating-header .js-dropdown-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.floating-header .nav-link-active {
    color: #FF7F70;
}

@media (max-width: 767px) {
    .floating-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FF7F70;
    transition: width 0.3s ease;
}

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

/* ===== PAGE TEMPLATE: cases ===== */
.detail-template .hero-block {
    background: linear-gradient(135deg, #1a0f0e 0%, #2D2422 100%);
}

.detail-template .hero-bg-glow {
    background: radial-gradient(circle at 70% 30%, #FF7F70 0%, transparent 70%);
}

.detail-template .Montserrat {
    font-family: 'Montserrat', sans-serif;
}

.detail-template .prose-coral h2,
.detail-template .prose-coral h3 {
    color: #2D2422 !important;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.detail-template .prose-coral h2 {
    font-size: 1.5rem;
}

.detail-template .prose-coral h3 {
    font-size: 1.25rem;
}

.detail-template .prose-coral p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.detail-template .prose-coral ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.detail-template .prose-coral ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.detail-template .js-tab-trigger.active {
    color: #FF7F70;
    border-bottom-color: #FF7F70;
}

.floating-header .nav-container {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-header .js-dropdown-menu.is-active {
    visibility: visible;
    opacity: 1;
    transform: translateY(-8px);
}

.floating-header .js-mobile-sidebar.is-active {
    visibility: visible;
}

.floating-header .js-mobile-sidebar.is-active .js-mobile-content {
    transform: translateX(0);
}

.floating-header .js-dropdown-trigger i {
    transition: transform 0.3s ease;
}

.floating-header .js-dropdown-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.floating-header .nav-link-active {
    color: #FF7F70;
}


@media (max-width: 767px) {
    .detail-template .hero-floating-panel {
        padding: 1.5rem;
    }
}