/* ============================================
   REFERENCE HEADER STYLES
   Strict alignment with Le Vieux Marin Image
   ============================================ */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* White coastal rock background texture */
    background-image: url('/images/background.jpg');
    background-attachment: fixed;
    background-size: contain;
    color: var(--navy-dark);
    font-family: var(--font-body);
}

.header-logo-section {
    background-image: url('/images/header_background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--cream);
    border-bottom: 2px solid var(--gold);
    position: relative;
    /* Top border blue decoration from image */
    border-top: 5px solid var(--navy-dark);
}

/* Header Social Icons */
.header-social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 768px) {
    .header-social-icons {
        justify-content: flex-start;
    }
}

.header-social-icons .social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    color: var(--sand);
    border: 1px solid var(--gold);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-social-icons .social-link:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* Header Contact Info */
.header-contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

@media (min-width: 768px) {
    .header-contact-info {
        align-items: flex-end;
    }
}

.header-contact-info .contact-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.header-contact-info .contact-link i {
    color: var(--gold);
    font-size: 0.8rem;
}

.header-contact-info .contact-link:hover {
    color: var(--navy-dark);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-heading);
    color: var(--navy-dark);
    font-size: 2.2rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    border-bottom: 3px double var(--gold);
    padding-bottom: 5px;
    display: inline-block;
}

/* Ship Wheel Icon Styling */
.fa-dharmachakra {
    color: var(--navy-dark);
    filter: drop-shadow(2px 2px 0 var(--gold));
}

/* Decoration Lines */
.header-decoration-line {
    height: 2px;
    background: var(--gold);
    width: 100%;
    position: absolute;
    bottom: 0;
}

/* Navigation Bar */
.nav-bar-reference {
    background:
        linear-gradient(rgba(26, 38, 64, 0.9), rgba(26, 38, 64, 0.9)),
        url('https://www.transparenttextures.com/patterns/dark-matter.png');
    /* Texture placeholder */
    background-color: var(--navy-dark);
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--gold);
}

.nav-menu li a {
    color: var(--sand);
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

/* Search Box Reference Style */
.search-box-reference {
    position: relative;
}

.search-box-reference input {
    background: var(--sand);
    border: 1px solid var(--gold);
    /* Thin gold border */
    border-radius: 4px;
    /* Slight rounding as per image input box */
    padding: 6px 12px 6px 35px;
    font-size: 0.85rem;
    width: 200px;
    color: var(--navy-dark);
    font-family: var(--font-body);
}

.search-box-reference input:focus {
    outline: none;
    background: white;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy-dark);
    font-size: 0.8rem;
}

.user-icon {
    color: var(--sand);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.user-icon:hover {
    color: var(--gold);
}

/* ============================================
   MAIN LAYOUT GRID STYLES
   Strict alignment with Reference Image
   ============================================ */

.main-content-grid {
    background: url('https://www.transparenttextures.com/patterns/aged-paper.png'), var(--sand-light);
    background-blend-mode: multiply;
}

/* Vintage Panel Container */
.vintage-panel {
    background: url('https://www.transparenttextures.com/patterns/cream-paper.png'), #fdfbf7;
    border: 1px solid #d4c4a8;
    /* Sepia border */
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 0 0 1px #fff inset;
    /* Inner white highlight */
    padding: 20px;
    position: relative;
}

/* Panel Header with lines */
.panel-header {
    text-align: center;
    position: relative;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--sepia);
    padding-bottom: 15px;
}

.panel-header h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
    z-index: 1;
    background: #fdfbf7;
    /* Match panel bg to cover line if needed */
    padding: 0 15px;
    margin: 0;
}

/* Decoration line behind header text if desired, or simple underline */
.header-decoration {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto 0;
}

/* ============================================
   BOUTIQUE GRID 3x3
   ============================================ */
.category-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid-item {
    background: #f4f0e6;
    /* Light beige card */
    border: 1px solid #e0d5c1;
    text-align: center;
    padding: 15px 5px;
    text-decoration: none;
    color: var(--navy-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
}

.grid-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--gold);
}

.item-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--navy);
    /* Try to simulate hand-drawn look with text-shadow or SVG filters later if needed */
}

/* Promotion Item Special Style */
.promo-item {
    border: 1px dashed var(--gold);
    background: #fff9e6;
}

.promo-item span {
    color: #c0392b;
    /* Vintage Red */
    font-weight: 700;
}

.promo-item small {
    font-size: 0.7rem;
    color: #7f8c8d;
}

/* Reference Button Style */
.btn-vintage-brown {
    background: linear-gradient(to bottom, #8e735b, #705842);
    border: 1px solid #5a4533;
    color: #fffac0;
    /* Light cream text */
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 30px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 3px 6px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    /* Slight round or straight? Reference looks straightish */
}

.btn-vintage-brown:hover {
    background: linear-gradient(to bottom, #7a604a, #5e4835);
    color: #fff;
}

/* Contact Question Block */
.contact-question-block {
    background: var(--navy-dark);
    /* Blue gradient in image */
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: #fff;
    padding: 20px;
    border: 2px solid var(--gold);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-question-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.contact-details p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.contact-details i {
    color: var(--gold);
    width: 20px;
}

/* ============================================
   BLOG PANEL STYLES
   ============================================ */


.border-end-vintage {
    border-right: 1px dashed var(--sepia);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--navy-dark);
    border-bottom: 1px solid #e0d5c1;
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-weight: 700;
}

.vintage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vintage-list li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.vintage-list li a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.vintage-list li a:hover {
    color: var(--navy);
}

.vintage-list li a i {
    font-size: 0.7rem;
    color: var(--gold);
}

/* Lighthouse Image Background Hint for Right Column */
.lighthouse-bg-container {
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=500') no-repeat bottom right;
    /* Lighthouse placeholder */
    background-size: contain;
    /* Blend with panel bg */
}

.paper-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-vintage-navy {
    background: var(--navy-dark);
    color: #fff;
    border: 1px solid var(--navy);
    padding: 6px 15px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-vintage-navy:hover {
    background: var(--navy);
    color: var(--gold);
}

/* ============================================
   TEAM PANEL
   ============================================ */
.team-panel {
    background: #fdfbf7;
    border: 1px solid var(--sepia);
    padding: 15px;
}

.team-title {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy-dark);
    margin: 0;
}

.header-decoration-short {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin-top: 5px;
    margin-bottom: 15px;
}

.team-photo-card {
    position: relative;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.vintage-photo {
    width: 100%;
    display: block;
    filter: sepia(0.2) contrast(1.1);
    /* Slight vintage photo effect */
}

.photo-caption-overlay {
    background: #f4f0e6;
    padding: 10px;
    border-top: 1px solid #ddd;
}

/* ============================================
   REFERENCE FOOTER
   ============================================ */
.footer-reference {
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png'), var(--navy-dark);
    background-color: var(--navy-dark);
    color: #fff;
    padding: 40px 0 20px;
    border-top: 4px double var(--gold);
    margin-top: 40px;
}

.footer-logo-container {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-logo-container {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .category-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .border-end-vintage {
        border-right: none;
        border-bottom: 1px dashed var(--sepia);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

.footer-logo-text {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    color: #fff;
}

.social-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-icon-box:hover {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.newsletter-box-reference {
    background: rgba(255, 255, 255, 0.05);
    /* Very slight highlight box */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vintage-input {
    background: #e3e3e3;
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
}

.btn-vintage-navy-solid {
    background: var(--navy);
    color: #fff;
    border: 1px solid #4a5d75;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-vintage-navy-solid:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   Mobile-first approach with Bootstrap breakpoints
   ============================================ */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {

    /* Header */
    .header-logo-section {
        padding: 15px 0 !important;
    }

    .logo-text {
        font-size: 1.4rem !important;
        letter-spacing: 1px;
    }

    .fa-dharmachakra {
        font-size: 2rem !important;
    }

    .header-social-icons .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .header-contact-info .contact-link {
        font-size: 0.75rem;
    }

    /* Navigation */
    .nav-bar-reference {
        padding: 10px 0;
    }

    .nav-bar-reference .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 10px !important;
    }

    .nav-menu li a {
        font-size: 0.8rem !important;
        padding: 5px 10px;
    }

    .search-box-reference input {
        width: 150px;
        padding: 5px 10px 5px 30px;
        font-size: 0.75rem;
    }

    /* Main Content Grid */
    .main-content-grid {
        padding: 20px 0 !important;
    }

    .vintage-panel {
        padding: 15px;
        margin-bottom: 15px;
    }

    .panel-header h2 {
        font-size: 1.4rem;
    }

    /* Category Grid - 2 columns on mobile */
    .category-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .grid-item {
        min-height: 90px;
        padding: 10px 5px;
        font-size: 0.75rem;
    }

    .item-icon {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    /* Blog Panel */
    .blog-panel .row {
        flex-direction: column;
    }

    .border-end-vintage {
        border-right: none !important;
        border-bottom: 1px dashed var(--sepia);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .category-title {
        font-size: 1rem;
    }

    .vintage-list li a {
        font-size: 0.85rem;
    }

    /* Team Panel */
    .team-panel {
        margin-top: 15px !important;
    }

    .team-title {
        font-size: 1rem;
    }

    /* Contact Block */
    .contact-question-block {
        padding: 15px;
        margin-top: 15px !important;
    }

    .contact-question-block h3 {
        font-size: 1rem;
    }

    /* Footer */
    .footer-reference {
        padding: 30px 0 15px;
        margin-top: 30px;
    }

    .footer-logo-text {
        font-size: 1.2rem !important;
    }

    .social-icon-box {
        width: 35px;
        height: 35px;
    }

    .newsletter-box-reference {
        padding: 15px !important;
    }

    .newsletter-box-reference p {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn-vintage-brown,
    .btn-vintage-navy {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

/* Small Devices (landscape phones, 576px - 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .logo-text {
        font-size: 1.6rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px !important;
    }

    .category-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .grid-item {
        min-height: 100px;
    }

    .vintage-panel {
        padding: 18px;
    }
}

/* Medium Devices (tablets, 768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .logo-text {
        font-size: 1.8rem;
    }

    .category-grid-3x3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .grid-item {
        min-height: 100px;
        font-size: 0.8rem;
    }

    /* Make left/right columns stack on tablet */
    .main-content-grid .col-lg-5,
    .main-content-grid .col-lg-7 {
        width: 100%;
        max-width: 100%;
    }

    .vintage-panel {
        margin-bottom: 20px;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .logo-text {
        font-size: 2.2rem;
    }

    .category-grid-3x3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .grid-item {
        min-height: 110px;
    }

    /* Side-by-side layout for Boutique/Blog */
    .main-content-grid .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .main-content-grid .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .logo-text {
        font-size: 2.4rem;
        letter-spacing: 3px;
    }

    .grid-item {
        min-height: 120px;
        padding: 18px 8px;
    }

    .item-icon {
        font-size: 2rem;
    }
}

/* ============================================
   MOBILE NAVIGATION STYLES
   ============================================ */

/* Mobile Toggle Button */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--sand);
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle.active {
    background: var(--gold);
    color: var(--navy-dark);
}

.mobile-nav-toggle i {
    font-size: 1.2rem;
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .nav-menu-wrapper {
        display: block !important;
    }

    .nav-menu {
        display: flex;
        gap: 1.5rem;
    }
}

/* Mobile Search Box */
.search-box-mobile {
    position: relative;
    width: 100%;
}

.search-box-mobile input {
    width: 100%;
    background: var(--sand);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 10px 15px 10px 40px;
    font-size: 0.9rem;
    color: var(--navy-dark);
}

.search-box-mobile .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy-dark);
}

/* ============================================
   MOBILE RESPONSIVE BREAKPOINT (< 992px)
   ============================================ */
@media (max-width: 991.98px) {
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Menu Wrapper */
    .nav-menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        border-top: 1px solid rgba(201, 169, 98, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-menu-wrapper.active {
        display: block;
    }

    /* Mobile Menu List */
    .nav-menu {
        flex-direction: column;
        gap: 0 !important;
        padding: 0;
    }

    .nav-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu > li > a,
    .nav-menu > li > .dropdown-toggle-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    /* Mobile Dropdown Arrow */
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .dropdown.show > .dropdown-toggle-link .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Mobile Dropdown Menu */
    .nav-menu .dropdown-menu {
        position: static !important;
        display: none;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        min-width: 100%;
    }

    .nav-menu .dropdown.show > .dropdown-menu {
        display: block;
    }

    /* Mobile Dropdown Items */
    .nav-menu .dropdown-menu .dropdown-item,
    .nav-menu .dropdown-menu .dropdown-toggle-custom {
        padding: 12px 20px 12px 35px !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu .dropdown-menu .dropdown-item:hover,
    .nav-menu .dropdown-menu .dropdown-toggle-custom:hover {
        padding-left: 40px !important;
        background-color: rgba(201, 169, 98, 0.15);
    }

    /* Mobile Submenu */
    .nav-menu .dropdown-submenu {
        position: static;
    }

    .nav-menu .dropdown-submenu > .dropdown-menu {
        position: static !important;
        left: 0 !important;
        top: 0 !important;
        margin: 0;
        display: none;
    }

    .nav-menu .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }

    /* Nested submenu items - add more padding */
    .nav-menu .dropdown-submenu .dropdown-menu .dropdown-item,
    .nav-menu .dropdown-submenu .dropdown-menu .dropdown-toggle-custom {
        padding-left: 50px !important;
    }

    .nav-menu .dropdown-submenu .dropdown-menu .dropdown-item:hover,
    .nav-menu .dropdown-submenu .dropdown-menu .dropdown-toggle-custom:hover {
        padding-left: 55px !important;
    }

    /* Third level nesting */
    .nav-menu .dropdown-submenu .dropdown-submenu .dropdown-menu .dropdown-item,
    .nav-menu .dropdown-submenu .dropdown-submenu .dropdown-menu .dropdown-toggle-custom {
        padding-left: 65px !important;
    }

    /* Submenu Arrow rotation */
    .dropdown-submenu > .dropdown-toggle-custom .fa-chevron-right {
        transition: transform 0.3s ease;
    }

    .dropdown-submenu.show > .dropdown-toggle-custom .fa-chevron-right {
        transform: rotate(90deg);
    }

    /* Nav Bar relative for dropdown positioning */
    .nav-bar-reference {
        position: relative;
    }

    .nav-bar-reference .container {
        position: relative;
    }
}

/* ============================================
   SMALL MOBILE (< 768px)
   ============================================ */
@media (max-width: 767.98px) {
    /* Stack header elements vertically on mobile */
    .header-logo-section .row {
        flex-direction: column;
    }

    .header-logo-section .col-md-3,
    .header-logo-section .col-md-6 {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Center all header elements on mobile */
    .header-social-icons {
        justify-content: center;
    }

    .header-contact-info {
        align-items: center;
    }

    /* Adjust nav wrapper position */
    .nav-wrapper {
        flex-wrap: wrap;
    }

    .header-actions-right {
        order: 2;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (< 576px)
   ============================================ */
@media (max-width: 575.98px) {
    .nav-menu > li > a,
    .nav-menu > li > .dropdown-toggle-link {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }

    .nav-menu .dropdown-menu .dropdown-item,
    .nav-menu .dropdown-menu .dropdown-toggle-custom {
        padding: 10px 15px 10px 30px !important;
        font-size: 0.85rem !important;
    }

    .nav-menu .dropdown-submenu .dropdown-menu .dropdown-item,
    .nav-menu .dropdown-submenu .dropdown-menu .dropdown-toggle-custom {
        padding-left: 45px !important;
    }
}