/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ropa+Sans:ital@0;1&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;

    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --black-color: #000000;
    --black-color-light: #000000;
    --black-color-lighten: hsl(220, 20%, 18%);
    --white-color: #fff;
    --body-color: hsl(220, 100%, 97%);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "DIN Pro", serif;
    --normal-font-size: 0.938rem;

    /*========== Font weight ==========*/
    --font-regular: 400;
    --font-semi-bold: 600;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    /* background: #E7E7E7; */
}

ul {
    list-style: none;
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
}

a {
    text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
    /* max-width: 1420px; */
    margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--black-color);
    box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
    z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
    height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
    color: var(--white-color);
}

.nav__data {
    height: 100%;
    padding: 0px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    column-gap: 0.25rem;
    font-weight: var(--font-semi-bold);
    /* Color highlighting when pressed on mobile devices */
    /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
    font-weight: initial;
    font-size: 1.25rem;
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
    opacity: 0;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 50px;
}

.hero-content {
    position: absolute;
    left: 10%;
    color: rgb(0, 0, 0);
    z-index: 10;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: var(--body-font);
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    font-family: var(--body-font);
}

.nav__link, #menu-primary-menu > li > a {
    color: var(--white-color);
    background-color: var(--black-color);
    font-weight: 300;
    /* padding: 1.25rem 1.5rem; */
    font-size: .8rem;
    font-family: var(--body-font);
    display: flex;
    font-weight: bold;
    justify-content: space-between;
    letter-spacing: 1.2px;
    align-items: center;
    transition: background-color 0.3s;
}

.nav__link:hover {
    background-color: var(--black-color-light);
}

/* Sub-banner image as thumbnail */
.sub-banner {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.sub-banner img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.page-title .text-center h1 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;

    /* Two-line truncation */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

/* Show menu */
.show-menu {
    opacity: 1 !important;
    top: 3.5rem !important;
    pointer-events: initial !important;
}

/* Show icon */
.show-icon .nav__burger {
    opacity: 0;
    transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=============== DROPDOWN SUBMENU ===============*/


/* Padding (py - vertical, px - horizontal) */
.py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.py-8 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.py-10 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-24 {
    padding-top: 96px;
    padding-bottom: 96px;
}

.px-1 {
    padding-left: 4px;
    padding-right: 4px;
}

.px-2 {
    padding-left: 8px;
    padding-right: 8px;
}

.px-3 {
    padding-left: 12px;
    padding-right: 12px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.px-5 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-6 {
    padding-left: 24px;
    padding-right: 24px;
}

.px-8 {
    padding-left: 32px;
    padding-right: 32px;
}

.px-10 {
    padding-left: 40px;
    padding-right: 40px;
}

.px-12 {
    padding-left: 48px;
    padding-right: 48px;
}

.px-16 {
    padding-left: 64px;
    padding-right: 64px;
}

.px-20 {
    padding-left: 80px;
    padding-right: 80px;
}

.px-24 {
    padding-left: 96px;
    padding-right: 96px;
}

/* Margin (my - vertical, mx - horizontal) */
.my-1 {
    margin-top: 4px;
    margin-bottom: 4px;
}

.my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.my-6 {
    margin-top: 24px;
    margin-bottom: 24px;
}

.my-8 {
    margin-top: 32px;
    margin-bottom: 32px;
}

.my-10 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.my-12 {
    margin-top: 48px;
    margin-bottom: 48px;
}

.my-16 {
    margin-top: 64px;
    margin-bottom: 64px;
}

.my-20 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.my-24 {
    margin-top: 96px;
    margin-bottom: 96px;
}

.mx-1 {
    margin-left: 4px;
    margin-right: 4px;
}

.mx-2 {
    margin-left: 8px;
    margin-right: 8px;
}

.mx-3 {
    margin-left: 12px;
    margin-right: 12px;
}

.mx-4 {
    margin-left: 16px;
    margin-right: 16px;
}

.mx-5 {
    margin-left: 20px;
    margin-right: 20px;
}

.mx-6 {
    margin-left: 24px;
    margin-right: 24px;
}

.mx-8 {
    margin-left: 32px;
    margin-right: 32px;
}

.mx-10 {
    margin-left: 40px;
    margin-right: 40px;
}

.mx-12 {
    margin-left: 48px;
    margin-right: 48px;
}

.mx-16 {
    margin-left: 64px;
    margin-right: 64px;
}

.mx-20 {
    margin-left: 80px;
    margin-right: 80px;
}

.mx-24 {
    margin-left: 96px;
    margin-right: 96px;
}

/* Info Section */
.info-section {
    background: #e7e7e7;
    width: 100%;
    padding: 7rem 0% 5rem;
    display: grid;
    grid-template-columns: 1fr 70%;
    justify-content: space-between;
    position: relative;
    align-items: center;
    flex-direction: row;
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* Left: 1 part, Right: 2 parts */
    gap: 40px;
    align-items: center;
}

/* Left Side: Text */
.info-text h2 {
    text-align: right;
    font-size: 2.5rem;
    font-weight: 300;
    font-family: var(--body-font);
    margin-bottom: 10px;
}

.info-text {
    justify-content: center;
    display: flex;
}

.info-text p {
    font-size: 1.2rem;
    color: #555;
    font-family: var(--body-font);
}

/* Right Side: Grid for Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    /* width: 70%; */
    padding-right:1rem;
}

/* Individual Card */
.info-card {
    background: #ffffff;
    /* width: 200px; */
    padding: 1rem 1.2rem;
    text-align: center;
}

.info-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 8px;
}

.strongfont {
    font-weight: 700;
}

.info-btn {
    margin-top: 10px;
    padding: 10px 10px;
    background: #000000;
    color: white;
    border: none;
    cursor: pointer;
    text-wrap-mode: nowrap;
    transition: 0.3s;
    width: 100%;
    display: block;
}

.info-btn:hover {
    background: #313131;
}

.motto-section {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: -50px 0 50px;
    position: absolute;
    z-index: 10;
}

.motto-left-container {
    /* width: 30%; */
}

.motto-box {
    width: inherit;
    /* height: 200px; */
    background: black;
    color: white;
    top: -100px;
    left: 0px;
    z-index: 10;
    position: absolute;
    padding: 2.5rem 3rem;
    font-size: 25px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.motto-box .highlight {
    color: #ffffff;
    font-family: "Ropa Sans", serif;
    font-size: 2.5rem;
    line-height: 65px;
    font-weight: 600;
}

.motto-box p {
    font-family: var(--body-font);
    letter-spacing: 1.3px;
    line-height: 30px;
    text-align: left;
    font-weight: lighter;
    margin: 0;
}

.appliances-section {
    position: relative;
    /* margin-top: 100px; */
    text-align: center;
    padding: 80px 10%;
    background: url("../img/background/back.png") no-repeat center center/cover;
    z-index: 1;
}

.appliances-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.763);
    /* Adjust the opacity */
    z-index: -1;
}

/* Content Wrapper */
.appliances-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Left Section: Image + Text */
.appliance-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 500px;
}

.appliance-left img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin-bottom: 20px;
}

.appliance-text {
    font-size: 1.7rem;
    font-family: var(--body-font);
    color: #000000;
    text-align: right;
    font-weight: 300;
    line-height: 1.6;
}

/* Right Section: SVG */
.appliance-right {
    flex: 1;
    text-align: center;
}

.appliance-right img {
    width: 100%;
    max-width: 400px;
}

/* Left Side Image */
.appliance-img img {
    max-width: 450px;
}

/* Right Side SVG */
.appliance-svg img {
    max-width: 400px;
}

/* Center Title */
.appliance-title {
    font-size: 3rem;
    font-weight: bold;
    font-family: var(--body-font);
    margin: 50px 0;
    color: #000000;
    position: relative;
    z-index: 2;
}

.product-grid-contain {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
}

.product-grid {
    display: grid;
    grid-template-rows: auto;
    gap: 13px;
    width: 100%;
    max-width: 1400px;
}

.product-item {
    width: 100%;
}

.product-item img {
    width: 100%;
}

#div1 {
    grid-area: 1 / 1 / 5 / 5;
}

#div1 img {
    height: 100%;
}

#div2 {
    height: 500px;
    grid-area: 1 / 5 / 4 / 8;
}

#div2 img {
    height: 500px;
}

#div4 {
    grid-area: 5 / 1 / 7 / 3;
}

#div5 {
    grid-area: 5 / 3 / 7 / 5;
}

#div6 {
    grid-area: 4 / 5 / 7 / 8;
}

.why-title {
    font-size: 2.5rem;
    font-weight: lighter;
    font-family: var(--body-font);
    margin: 50px 0 30px;
    color: #000000;
    position: relative;
    z-index: 2;
}

.why-title .highlight {
    color: #000000;
    font-family: var(--body-font);
    font-size: 45px;
    line-height: 65px;
    font-weight: 600;
}

.why-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why-img {
    position: relative;
}

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

.why-overlay {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(270.41deg, rgba(255, 255, 255, 0.8) 28.09%, rgba(153, 153, 153, 0) 103.02%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.why-list li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-family: var(--body-font);
    font-size: 1.5rem;
    font-weight: lighter;
}

.why-list img {
    width: 80px;
    padding: 12px;
    border-radius: 50px;
    background-color: black;
    height: 80px;
    margin-right: 10px;
}

.media-highlight {
    background-color: black;
    color: white;
    font-family: var(--body-font);
    padding: 5px;
    border-radius: 15px;
}

.media-title {
    letter-spacing: 1.8px;
    font-size: 1.9rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    gap: 10px;
    font-family: var(--body-font);
    margin: 50px 0 30px;
    color: #000000;
    position: relative;
    z-index: 2;
}

.media-img img {
    width: 100%;
    max-width: 1100px;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-container {
    background-color: #000;
    padding: 50px 100px;
    color: white;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 14px;
    font-family: var(--body-font);
}

.footer-left-content {
    display: grid;
    grid-template-columns: auto 4rem 1fr;
    /* align-items: center;
    justify-content: space-between; */
    width: 50%;
    gap: 20px;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* padding-right: 50px; */
    border-right: 1px solid white;
}

.footer-left p,
.footer-right p {
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-size: 10px;
}

.footer-left hr {
    border: none;
    border-top: 1px solid white;
    margin: 15px 0;
    opacity: 1;
}

.footer-right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    width: 30%;
}

/* a with href # should have the cursor as default */
a[href="#"] {
    cursor: default;
}



.footer-logo img {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
}


.social-sidebar {
    position: fixed;
    left: 5px;
    top: 40%;
    transform: translateY(-50%);
    width: 60px;
    background: black;
    padding: 30px 5px;
    clip-path: polygon(0 0, 70% 10%, 100% 100%, 0% 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    z-index: 999;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: transparent;
    border: 2px solid white;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icon i {
    font-size: 25px;
}

.social-icon:hover i {
    color: black;
}

.social-icon:hover {
    background: #747474;
}

.social-icon:hover img {
    filter: invert(0);
}


@media screen and (min-width: 1118px) {
    .container {
        margin-inline: auto;
        max-width: 1118px;
    }

    .info-section {
        gap: 1rem;
    }

    .nav {
        height: calc(var(--header-height) + 2rem);
        display: flex;
        justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: flex;
        column-gap: 2rem;
    }

    .nav__link {
        height: 100%;
        padding: 0;
        letter-spacing: 1.2px;
        font-size: 14px;
        justify-content: initial;
        column-gap: 0.1rem;
    }

    .nav__link:hover {
        background-color: transparent;
    }

    /* ====== GENERAL DROPDOWN STYLES ====== */
    .nav__list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* ====== BASE DROPDOWN STYLING ====== */
    .dropdown__item {
        position: relative;
        cursor: pointer;
    }

    .dropdown__arrow {
        /* font-size: .7rem; */
        transition: transform 0.3s;
    }

    /* ====== BASE MENU STYLES ====== */
    .dropdown__menu,
    .dropdown__submenu,
    .dropdown__innersubmenu {
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 200px;
        background-color: var(--black-color-light);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
        padding: 0;
    }



    /* ====== POSITIONING SUBMENUS ====== */
    .dropdown__submenu {
        right: 100%;
        top: 0;
        min-width: 200px;
    }

    /* ====== INNER SUBMENU (Monster 3 Jar & Monster 4 Jar) ====== */
    .dropdown__innersubmenu {
        position: absolute;
        right: 100%;
        /* Align with parent */
        top: 0%;
        /* Show below Monster */
        min-width: 200px;
        height: auto;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        z-index: 10;
        /* Ensure it stays above other submenus */
    }

    /* ====== SHOW SUBMENUS ON HOVER ====== */
    .dropdown__item:hover>.dropdown__menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown__item.submenu__item:hover>.dropdown__submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .innerdropdown__item.innersubmenu__item:hover>.dropdown__innersubmenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* ====== ENSURE SUBMENU REMAINS OPEN ON HOVER ====== */
    .dropdown__menu:hover,
    .dropdown__submenu:hover,
    .dropdown__innersubmenu:hover {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* ====== ROTATE DROPDOWN ICON ON HOVER ====== */
    .dropdown__item:hover>.dropdown__link>.dropdown__arrow {
        transform: rotate(90deg);
    }

    /* ====== DROPDOWN LINK STYLES ====== */
    .dropdown__link,
    .dropdown__sublink {
        display: flex;
        align-items: center;
        padding: .5rem 1rem;
        color: var(--white-color);
        background-color: var(--black-color-light);
        font-size: 12px;
        width: 100%;
        justify-content: space-between;
        white-space: nowrap;
        height: 100%;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .dropdown__link:hover,
    .dropdown__sublink:hover {
        background-color: var(--black-color);
    }

    /* ====== ENSURE PROPER POSITIONING OF SUBMENUS ====== */
    .dropdown__submenu {
        position: absolute;
        right: 100%;
        top: -5px;
        min-height: 62px;
        height: auto;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        /* padding: 0 !important; */
    }


    /* ====== INNER SUBMENU FIX (SHOW BELOW PARENT) ====== */
    .innerdropdown__item {
        position: relative;
    }

    .innerdropdown__item.innersubmenu__item:hover>.dropdown__innersubmenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


    .dropdown__menu a{
        font-size: .7rem;
        padding: .5rem 1rem !important;
    }

}

@media screen and (max-width: 1118px) {
    .nav__data {
        height: 100%;
        width: calc(100% - 1rem);
    }

    .social-sidebar {
        top: 60%;
    }

    .motto-left-container {
        width: 40%;
    }

    .info-cards {
        width: 50%;
    }

    .appliance-text {
        text-align: center;
    }

    .appliance-left {
        flex: 1;
        align-items: center;
        max-width: 800px;
    }

    .motto-box {
        width: inherit;
        height: inherit;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left-content {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 30px;
    }

    .footer-left {
        border-right: none;
        padding-right: 0;
    }

    .footer-right-content {
        align-items: center;
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

    .footer-logo img {
        max-width: 200px;
    }

    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top 0.4s, opacity 0.3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        background-color: var(--black-color);
        padding-top: 1rem;
    }

    .info-container {
        grid-template-columns: 1fr;
        /* Stack in small screens */
    }

    .appliances-section {
        position: relative;
        margin-top: 50px;
    }

    .info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .why-overlay {
        width: 50%;
    }

    .motto-box {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .appliances-content {
        flex-direction: column;
        text-align: center;
    }

    .appliance-img img,
    .appliance-svg img {
        max-width: 300px;
    }

    .product-grid {
        grid-template-columns: repeat(7, 1fr);
        /* Two columns */
    }

    #div1 {
        grid-area: 1 / 1 / 5 / 5;
    }

    #div1 img {
        height: 100%;
    }

    #div2 {
        height: 100%;
        grid-area: 1 / 5 / 4 / 8;
    }

    #div2 img {
        height: 100%;
    }

    #div4 {
        grid-area: 5 / 1 / 7 / 3;
    }

    #div5 {
        grid-area: 5 / 3 / 7 / 5;
    }

    #div6 {
        grid-area: 4 / 5 / 8 / 8;
    }

    .info-section {
        background: #e7e7e7;
        width: 100%;
        padding: 50px 2%;
    }
}

@media screen and (max-width: 768px) {
    .why-container {
        flex-direction: column;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }

    nav.nav.container {
        justify-content: center;
    }

    .additional-features-wrapper {
        padding: 10px 0px !important;
    }

    .footer-image {
        padding: 10px 0px !important;
    }

    .page-title h1 {
        font-size: 1.5rem !important;
    }

    .page-title h2 {
        font-size: 1rem !important;
    }

    .tns-item .item .image img {
        height: 50% !important;
        max-height: 150px;
    }

    .info-section {
        flex-direction: column;
        padding: 10px 2%;
        gap: 10px;
    }

    .product-highlights h1 {
        font-size: 1.5rem;
    }

    .additional-two-column-details h1 {
        font-size: 1.5rem;
    }

    .additional-features-wrapper h1 {
        font-size: 1.5rem;
    }

    .unmatched-features-wrapper h1 {
        font-size: 1.5rem;
    }

    .why-overlay {
        position: relative;
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    .why-list {
        text-align: center;
    }

    .social-sidebar {
        top: 45%;
        transform: translateY(-50%);
        width: 50px;
    }

    .why-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-title {
        font-size: 1.2rem;
    }

    .why-list img {
        margin-bottom: 10px;
    }

    .why-list li {
        font-size: 1rem;
    }

    .media-title {
        letter-spacing: 1.8px;
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        /* Single column */
    }

    #div1 {
        grid-area: 1 / 1 / 2 / 1;
        height: auto;
    }

    #div2 {
        height: auto;
        grid-area: 2 / 1 / 3 / 1;
    }

    #div2 {
        height: auto;
        grid-area: 2 / 1 / 3 / 1;
    }

    #div4 {
        height: auto;
        grid-area: 3 / 1 / 4 / 1;
    }

    #div5 {
        height: auto;
        grid-area: 4 / 1 / 5 / 1;
    }

    #div6 {
        height: auto;
        grid-area: 5 / 1 / 6 / 1;
    }

    .motto-box {
        font-size: 1rem;
        padding: 15px 8px;
    }

    .motto-box p {
        line-height: 15px;
        font-size: 12px;
    }

    .motto-box .highlight {
        line-height: 40px;
        font-size: 20px;
    }

    .motto-box {
        width: 200px !important;
        height: 80px !important;
        top: -40px !important;
    }

    .motto-box {
        font-size: 1rem;
        padding: 10px 10px !important;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        margin-top: 10px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        width: 100%;
        justify-items: center;
    }

    .info-card {
        background: #ffffff;
        width: 100%;
        padding: 10px;
    }

    .info-card img {
        width: 100%;
        height: 100px;
    }

    .appliances-section {
        padding: 20px 8%;
        margin-top: 20px !important;
    }

    .info-text {
        margin-top: 40px;
    }

    .info-text h2 {
        text-align: center;
        font-size: 1.5rem;
    }

    .appliance-text {
        font-size: 1.4rem;
    }

    .motto-left-container {
        width: 100%;
    }

    .info-btn {
        margin-top: 10px;
        font-size: 10px;
        padding: 10px 15px;
    }
}

@media screen and (max-width: 540px) {
    .container {
        margin-inline: 1rem;
    }

    .nav__link {
        padding-inline: 1rem;
    }

    .page-template-template-category-landing .unmatched-features .features-wrapper .feature .image img {
        max-width: 40%;
    }

    .nav__logo img {
        width: 130px;
        height: 25px;
    }

    .info-section {
        gap: 20px;
        padding: 10px 2%;
    }

    .motto-box {
        width: 200px !important;
        height: 80px !important;
        top: -40px !important;
    }

    .info-text {
        margin-top: 40px;
    }

    .appliances-section {
        margin-top: 450px;
    }

    .appliance-text {
        font-size: 1.2rem;
    }

    .appliance-title {
        font-size: 1.8rem;
    }
}

.page-wrapper .content {
    justify-content: center;
    display: flex;

}

.ir-left li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    text-decoration: none;
    color: black;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.ir-left li a:hover,
.ir-left li a[aria-selected="true"] {
    background: #000;
    color: #fff;
}

.ir-right .pdfs a {
    width: 150px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    color: black;
    padding: 10px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ir-right {
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.ir-right .pdfs a:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
}

.icon img {
    width: 80px;
    height: auto;
}

.panasonic-pro-gridview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 800px;
    margin: auto;
}

.panasonic-pro-gridview img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.full-width {
    grid-column: span 2;
}

.half-width {
    grid-column: span 1;
}

.grill-feature-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.grill-hero h3 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.grill-hero h4 {
    font-size: 1.6rem;
    font-weight: bold;
}


.grill-features {
    width: 50%;
}

.grill-features h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.grill-features ul {
    list-style-type: disc;
    padding-left: 20px;

}

.grill-features li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.grill-image {
    width: 50%;
    display: flex;
    justify-content: center;
}

.grill-image img {
    max-width: 100%;
    height: auto;
}

.hero_section {
    text-align: center;
    /* padding: 50px 20px; */
}

.hero_content {
    font-size: 24px;
    font-weight: bold;
}

.hero_description {
    font-size: 1.3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-highlights-item {
    margin-bottom: 30px;
}

.timercookerfeature {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.benefit-content {
    position: relative;
    padding: 20px;
}


.gray-box {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    /* Adjust as needed */
}

.benefit-image img {
    max-width: 100%;
    display: block;
}

.page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 50px;
}
.feature .image {
  overflow: hidden;
  border-radius: 12px;
}

.feature .image img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
  will-change: transform;
}

.feature:hover .image img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
 
 
.hover-zoom {
  transition: transform 0.4s ease-in-out;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

.contact-us-section {
    background: #e7e7e7;
    padding: 80px 0;
    min-height: 60vh;
}

.contact-us-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.contact-us-left {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    /* Remove background, color, border-radius, box-shadow, and extra padding */
    background: none;
    color: #000;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-us-left .footer-left {
    border: none;
    padding: 0;
    gap: 0;
    color: #000;
}

.contact-us-left .footer-left p {
    color: #000;
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.contact-us-left .footer-left hr {
    border: none;
    border-top: 1px solid #bbb;
    margin: 18px 0;
    opacity: 0.5;
}

.contact-social-icons {
    display: none !important;
}

.contact-us-right {
    flex: 2;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map iframe {
    width: 100%;
    min-height: 350px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

/* Responsive styles */
@media screen and (max-width: 900px) {
    .contact-us-flex {
        flex-direction: column;
        gap: 30px;
    }
    .contact-us-left, .contact-us-right {
        max-width: 100%;
        width: 100%;
        padding: 30px 15px;
    }
    .contact-map iframe {
        min-height: 250px;
    }
}

@media screen and (max-width: 540px) {
    .contact-us-section {
        padding: 30px 0;
    }
    .contact-us-left, .contact-us-right {
        padding: 18px 5px;
    }
    .contact-us-left .footer-left p {
        font-size: 12px;
    }
    .contact-map iframe {
        min-height: 180px;
    }
}
