/* =========================================================
   NAVBAR + MEGA MENU RESPONSIVE CSS
   ========================================================= */


/* =========================================================
   LARGE DESKTOP — 1400px+
   ========================================================= */

@media (min-width: 1400px) {

     .container{
    max-width: 1360px;
  }

    .mega-menu .container {
        max-width: 1200px;
    }

    .mega-intro {
        padding: 30px 32px;
    }

    .mega-column {
        padding: 30px 26px 22px;
    }
}


/* =========================================================
   DESKTOP — 1200px to 1399px
   ========================================================= */

@media (min-width: 1200px) and (max-width: 1399.98px) {

    .container{
    max-width: 1260px;
}

    .mega-menu .container {
        max-width: 1200px;
    }

    .mega-intro {
        padding: 28px 28px;
    }

    .mega-column {
        padding: 28px 22px 20px;
    }

    .mega-intro h3 {
        font-size: 24px;
    }
}


/* =========================================================
   LAPTOP — 992px to 1199px
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199.98px) {

    .container{
    max-width: 1260px;
}


    .mega-menu-item {
        position: static !important;
    }

    .mega-menu-item > .nav-link {
        position: relative;
    }

    .mega-menu-item > .nav-link::after {
        margin-left: 5px;
    }

    .mega-menu {
        width: 100%;
        left: 0 !important;
        right: 0 !important;
        top: 100%;

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;
        border-top: 1px solid var(--theme-border);

        border-radius: 0 0 16px 16px !important;

        background: #fffaf3;

        box-shadow:
            0 20px 40px rgba(45, 25, 15, .14);

        overflow: hidden;

        display: block;
        visibility: hidden;
        opacity: 0;

        transform: translateY(8px);

        transition:
            opacity .2s ease,
            transform .2s ease,
            visibility .2s;
    }

    .mega-menu .container {
        max-width: 100%;
    }

    /* Intro */

    .mega-intro {
        padding: 24px 22px;
        min-height: 270px;

        background:
            radial-gradient(
                circle at 100% 0,
                rgba(217, 173, 103, .25),
                transparent 38%
            ),
            linear-gradient(
                145deg,
                #fff7ec,
                #f8e9dc
            );

        border-right: 1px solid var(--theme-border);
    }

    .mega-kicker {
        display: inline-block;

        color: var(--theme-primary);

        font-size: 8px;
        letter-spacing: 1.5px;

        font-weight: 800;

        margin-bottom: 8px;
    }

    .mega-intro h3 {
        font-family: var(--font-heading);

        color: var(--theme-text-dark);

        font-size: 22px;
        line-height: 1.2;

        margin-bottom: 9px;
    }

    .mega-intro p {
        color: var(--theme-text-muted);

        font-size: 10px;
        line-height: 1.7;

        max-width: 220px;

        margin-bottom: 16px;
    }

    .mega-cta {
        display: inline-flex;
        align-items: center;

        gap: 7px;

        padding: 9px 15px;

        border-radius: 50px;

        background: var(--theme-primary);
        border: 1px solid var(--theme-primary);

        color: #fff !important;

        font-size: 9px;
        font-weight: 700;

        transition: .25s;
    }

    .mega-cta:hover {
        background: var(--theme-gold);
        border-color: var(--theme-gold);

        transform: translateY(-2px);
    }

    /* Columns */

    .mega-column {
        padding: 24px 18px 18px;

        background: #fff;

        border-right: 1px solid var(--theme-border);
    }

    .mega-column:last-child {
        border-right: 0;
    }

    /* Heading */

    .mega-heading {
        display: flex;
        align-items: center;

        gap: 9px;

        padding-bottom: 12px;
        margin-bottom: 4px;

        border-bottom: 1px solid var(--theme-border);
    }

    .mega-icon {
        width: 38px;
        height: 38px;

        flex: 0 0 38px;

        border-radius: 10px;

        display: flex;
        align-items: center;
        justify-content: center;

        background: var(--theme-pink-soft);

        border: 1px solid var(--theme-border-light);

        color: var(--theme-primary);

        font-size: 13px;
    }

    .mega-heading strong {
        display: block;

        color: var(--theme-text-dark);

        font-size: 11px;
        font-weight: 800;
    }

    .mega-heading small {
        display: block;

        color: var(--theme-text-muted);

        font-size: 7px;

        margin-top: 3px;
    }

    /* Links */

    .mega-link {
        min-height: 40px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 8px;

        border-bottom: 1px dashed #eadfd3;

        color: var(--theme-text-dark) !important;

        font-size: 9px;
        font-weight: 600;

        transition: .2s;
    }

    .mega-link:last-child {
        border-bottom: 0;
    }

    .mega-link span {
        display: flex;
        align-items: center;

        gap: 7px;
    }

    .mega-link span i {
        width: 20px;

        text-align: center;

        color: var(--theme-gold);

        font-size: 9px;
    }

    .mega-link > i {
        color: #c7b8aa;

        font-size: 7px;

        transition: .2s;
    }

    .mega-link:hover {
        color: var(--theme-primary) !important;

        padding-left: 4px;
    }

    .mega-link:hover > i {
        color: var(--theme-primary);

        transform: translateX(3px);
    }

    /* Bottom */

    .mega-bottom {
        min-height: 58px;

        padding: 10px 17px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 15px;

        background: #211b17;

        color: #fff;
    }

    .mega-bottom-text {
        display: flex;
        align-items: center;

        gap: 8px;
    }

    .mega-bottom-text > i {
        width: 30px;
        height: 30px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: rgba(255, 255, 255, .09);

        color: var(--theme-gold-light);

        font-size: 11px;
    }

    .mega-bottom-text strong {
        display: block;

        font-size: 9px;
    }

    .mega-bottom-text span {
        display: block;

        color: rgba(255, 255, 255, .65);

        font-size: 7px;

        margin-top: 2px;
    }

    .mega-bottom-actions {
        display: flex;
        align-items: center;

        gap: 6px;
    }

    .mega-bottom-actions a {
        display: inline-flex;
        align-items: center;

        gap: 5px;

        padding: 8px 12px;

        border: 1px solid rgba(255, 255, 255, .2);

        border-radius: 50px;

        color: #fff !important;

        font-size: 8px;
        font-weight: 700;
    }

    .mega-bottom-actions a:hover {
        background: rgba(255, 255, 255, .08);
    }

    .mega-bottom-actions .mega-bottom-primary {
        background: var(--theme-primary);

        border-color: var(--theme-primary);
    }

    .mega-bottom-actions .mega-bottom-primary:hover {
        background: var(--theme-gold);

        border-color: var(--theme-gold);
    }

    /* Animation */

    .mega-menu-item:hover > .mega-menu,
    .mega-menu-item.show > .mega-menu {

        visibility: visible;

        opacity: 1;

        transform: translateY(0);
    }
}


/* =========================================================
   TABLET — 768px to 991.98px
   ========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .mega-menu-item {
        position: relative !important;
    }

    .mega-menu {
        width: 100%;

        position: relative !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        margin: 0 !important;

        border: 0 !important;

        border-radius: 0 !important;

        box-shadow: none;

        background: #fffaf3;

        overflow: hidden;
    }

    .mega-intro {
        padding: 25px;
    }

    .mega-intro h3 {
        font-size: 24px;
    }

    .mega-intro p {
        font-size: 11px;

        max-width: 500px;
    }

    .mega-column {
        padding: 22px 20px;
        border-right: 0;

        border-bottom: 1px solid var(--theme-border);
    }

    .mega-column:last-child {
        border-bottom: 0;
    }

    .mega-heading {
        padding-bottom: 12px;
    }

    .mega-link {
        min-height: 44px;

        font-size: 10px;
    }

    .mega-bottom {
        padding: 12px 20px;
    }

    .footer-products-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;

    }

    
    .footer-bottom{
        text-align: center;
    }

    
    .footer-bottom-inner{
        justify-content: center !important;
    }
}


/* =========================================================
   MOBILE LANDSCAPE — 576px to 767.98px
   ========================================================= */

@media (min-width: 576px) and (max-width: 767.98px) {

    .mega-menu-item {
        position: relative !important;
    }

    .mega-menu {
        width: 100%;

        position: relative !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        margin: 0 !important;

        padding: 0 !important;

        border: 0 !important;

        border-radius: 0 !important;

        box-shadow: none;

        background: #fffaf3;

        overflow: hidden;
    }

    .mega-intro {
        padding: 22px 20px;

        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid var(--theme-border);
    }

    .mega-intro h3 {
        font-size: 22px;
    }

    .mega-intro p {
        max-width: 100%;

        font-size: 10px;
    }

    .mega-column {
        padding: 20px;

        border-right: 0;

        border-bottom: 1px solid var(--theme-border);
    }

    .mega-column:last-child {
        border-bottom: 0;
    }

    .mega-heading {
        padding-bottom: 11px;
    }

    .mega-link {
        min-height: 42px;

        font-size: 10px;
    }

    .mega-bottom {
        padding: 11px 18px;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .mega-bottom-actions {
        width: 100%;
    }

    .mega-bottom-actions a {
        flex: 1;

        justify-content: center;
    }
    .slider_section2{
    display: block  !important;
}


.slider_section{
    display: none !important;
}

  .footer-products-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;

    }

    
    .footer-bottom{
        text-align: center;
    }

    
    .footer-bottom-inner{
        justify-content: center !important;
    }

}


/* =========================================================
   MOBILE — BELOW 576px
   ========================================================= */

@media (max-width: 575.98px) {

    /* Navbar */

    .mega-menu-item {
        position: relative !important;
    }

    /* Mega Menu */

    .mega-menu {
        width: 100%;

        position: relative !important;

        left: auto !important;
        right: auto !important;
        top: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 0 !important;

        border-radius: 0 !important;

        box-shadow: none;

        background: #fffaf3;

        overflow: hidden;
    }

    /* Intro */

    .mega-intro {
        padding: 20px 18px;

        min-height: auto;

        border-right: 0;

        border-bottom: 1px solid var(--theme-border);
    }

    .mega-kicker {
        font-size: 8px;

        letter-spacing: 1.4px;

        margin-bottom: 7px;
    }

    .mega-intro h3 {
        font-size: 21px;

        line-height: 1.25;

        margin-bottom: 8px;
    }

    .mega-intro p {
        max-width: 100%;

        font-size: 10px;

        line-height: 1.7;

        margin-bottom: 14px;
    }

    .mega-cta {
        padding: 9px 14px;

        font-size: 9px;
    }

    /* Columns */

    .mega-column {
        padding: 18px;

        border-right: 0;

        border-bottom: 1px solid var(--theme-border);
    }

    .mega-column:last-child {
        border-bottom: 0;
    }

    /* Heading */

    .mega-heading {
        gap: 9px;

        padding-bottom: 10px;

        margin-bottom: 2px;
    }

    .mega-icon {
        width: 36px;
        height: 36px;

        flex: 0 0 36px;

        border-radius: 9px;

        font-size: 12px;
    }

    .mega-heading strong {
        font-size: 11px;
    }

    .mega-heading small {
        font-size: 7px;
    }

    /* Links */

    .mega-link {
        min-height: 40px;

        font-size: 9px;

        gap: 6px;
    }

    .mega-link span {
        gap: 6px;
    }

    .mega-link span i {
        width: 18px;

        font-size: 9px;
    }

    .mega-link > i {
        font-size: 7px;
    }

    /* Bottom */

    .mega-bottom {
        min-height: auto;

        padding: 13px 16px;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }

    .mega-bottom-text {
        gap: 8px;
    }

    .mega-bottom-text > i {
        width: 29px;
        height: 29px;

        flex: 0 0 29px;

        font-size: 10px;
    }

    .mega-bottom-text strong {
        font-size: 9px;
    }

    .mega-bottom-text span {
        font-size: 7px;
    }

    .mega-bottom-actions {
        width: 100%;

        display: flex;

        gap: 6px;
    }

    .mega-bottom-actions a {
        flex: 1;

        justify-content: center;

        padding: 8px 10px;

        font-size: 8px;
    }
    .slider_section2{
    display: block  !important;
}


.slider_section{
    display: none !important;
}

  .footer-products-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;

    }

    
    .footer-bottom{
        text-align: center;
    }

    
    .footer-bottom-inner{
        justify-content: center !important;
    }


}


/* =========================================================
   EXTRA SMALL MOBILE — BELOW 400px
   ========================================================= */

@media (max-width: 399.98px) {

    .mega-intro {
        padding: 18px 15px;
    }

    .mega-intro h3 {
        font-size: 19px;
    }

    .mega-intro p {
        font-size: 9px;
    }

    .mega-column {
        padding: 16px 15px;
    }

    .mega-heading {
        gap: 8px;
    }

    .mega-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;
    }

    .mega-heading strong {
        font-size: 10px;
    }

    .mega-link {
        min-height: 38px;

        font-size: 8.5px;
    }

    .mega-bottom {
        padding: 12px 14px;
    }

    .mega-bottom-actions a {
        padding: 8px 7px;

        font-size: 7.5px;
    }
    .slider_section2{
    display: block  !important;
}


.slider_section{
    display: none !important;
}

  .footer-products-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;

    }

    .footer-bottom{
        text-align: center;
    }

    .footer-bottom-inner{
        justify-content: center !important;
    }
}