* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, Helvetica, sans-serif
}
html {
    scroll-behavior: smooth
}
body {
    background: #ffffff;
    color: #251611
}
a {
    text-decoration: none;
    color: inherit
}
img {
    max-width: 100%;
    display: block
}
ul {
    list-style: none
}
.container {
    width: 85%;
    max-width: 1200px;
    margin: auto
}
.topbar {
    background: #7b1d12;
    color: #fff;
    padding: 10px 0;
    font-size: 14px
}
.topbar-wrap {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}
.topbar i {
    color: #ffc13b;
    margin-right: 6px
}
.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    box-shadow: 0 7px 28px rgba(0, 0, 0, .08)
}
.navbar {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}
.logo {
    font-size: 31px;
    font-weight: 900;
    color: #d72717;
    letter-spacing: -1px
}
.logo span {
    color: #f7a600
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px
}
.nav-menu > li {
    position: relative
}
.nav-menu > li > a {
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
    font-size: 15px;
    color: #241611;
    transition: .3s
}
.nav-menu a:hover, .nav-menu a.active {
    color: #d72717
}
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .14);
    padding: 12px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .3s
}
.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}
.big-dropdown {
    min-width: 290px
}
.dropdown a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #333
}
.dropdown a:hover {
    background: #fff0dd;
    color: #d72717
}
.has-sub {
    position: relative
}
.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .14);
    padding: 12px;
    min-width: 295px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: .3s
}
.has-sub:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0)
}
.header-btn, .main-btn, .form button, .footer-inquiry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #d72717;
    color: #fff !important;
    padding: 13px 23px;
    border-radius: 36px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
    transition: .3s
}
.header-btn:hover, .main-btn:hover, .form button:hover, .footer-inquiry:hover {
    background: #7b1d12;
    transform: translateY(-2px)
}
.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #d72717;
    font-size: 27px;
    cursor: pointer
}
.hero {
    background: linear-gradient(90deg, rgba(123, 29, 18, .92), rgba(215, 39, 23, .72)), url("https://cpimg.tistatic.com/150521/2/template_photo_1.jpg") center/cover no-repeat;
    color: #fff;
    padding: 110px 0
}
.hero-wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px;
    align-items: center
}
.tag {
    display: inline-block;
    background: #f7a600;
    color: #4b160e;
    padding: 9px 18px;
    border-radius: 40px;
    font-weight: 900;
    margin-bottom: 18px
}
.hero h1 {
    font-size: 58px;
    line-height: 1.05;
    margin-bottom: 20px
}
.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff1e4;
    max-width: 650px;
    margin-bottom: 28px
}
.hero-img img {
    height: 430px;
    width: 100%;
    object-fit: cover;
    border-radius: 32px;
    border: 9px solid rgba(255, 255, 255, .14);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .28)
}
section {
    padding: 80px 0
}
.section-title {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 45px
}
.section-title small, .red-small {
    color: #d72717;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px
}
.section-title h2 {
    font-size: 42px;
    color: #251611;
    margin-top: 10px
}
.section-title p {
    color: #666;
    line-height: 1.7;
    margin-top: 12px
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}
.product-card, .category-card, .info-card, .profile-box, .form, .contact-box, .sitemap-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .08);
    overflow: hidden;
    border: 1px solid #ffe2c7
}
.product-img img {
    height: 220px;
    width: 100%;
    object-fit: cover
}
.product-info {
    padding: 22px
}
.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #251611
}
.product-info p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 16px
}
.view-more {
    color: #d72717;
    font-weight: 900
}
.category-card {
    padding: 26px
}
.category-card img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 18px
}
.category-card .count {
    display: inline-flex;
    background: #fff0dd;
    color: #d72717;
    padding: 7px 12px;
    border-radius: 30px;
    font-weight: 900;
    margin-bottom: 8px
}
.category-card h3 {
    font-size: 23px;
    margin-bottom: 10px
}
.category-card p {
    color: #666;
    line-height: 1.65;
    margin-bottom: 14px
}
.category-card li {
    margin: 8px 0;
    color: #333;
    font-weight: 700
}
.category-card li i {
    color: #d72717;
    margin-right: 7px
}
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center
}
.about-split img {
    height: 470px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
}
.about-text h2 {
    font-size: 40px;
    color: #251611;
    margin: 10px 0 18px
}
.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px
}
.points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0
}
.points div {
    font-weight: 900;
    color: #333
}
.points i {
    color: #d72717;
    margin-right: 8px
}
.mission {
    background: #fff
}
.info-card {
    padding: 28px
}
.info-card i {
    font-size: 36px;
    color: #d72717;
    margin-bottom: 15px
}
.info-card h3 {
    font-size: 22px;
    margin-bottom: 10px
}
.info-card p, .info-card li {
    color: #666;
    line-height: 1.7
}
.info-card li {
    margin: 7px 0
}
.why {
    background: linear-gradient(90deg, #7b1d12, #d72717);
    color: #fff
}
.why .section-title h2, .why .section-title small, .why .section-title p {
    color: #fff
}
.why .info-card {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: none
}
.why .info-card i {
    color: #f7a600
}
.why .info-card h3, .why .info-card p {
    color: #fff
}
.page-title {
    background: linear-gradient(90deg, rgba(123, 29, 18, .92), rgba(215, 39, 23, .75)), url("https://cpimg.tistatic.com/150521/2/template_photo_1.jpg") center/cover no-repeat;
    color: #fff;
    padding: 75px 0
}
.breadcrumb {
    color: #ffe7cf;
    font-weight: 700;
    margin-bottom: 12px
}
.page-title h1 {
    font-size: 46px
}
.showroom-intro {
    background: #fff
}
.product-detail {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 35px;
    align-items: start
}
.product-photo {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .08)
}
.product-photo img {
    height: 470px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px
}
.product-detail-content {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .08)
}
.product-detail-content h2 {
    font-size: 34px;
    margin-bottom: 18px
}
.spec-section {
    margin-top: 24px
}
.spec-section h3 {
    font-size: 22px;
    margin-bottom: 13px;
    color: #7b1d12
}
.spec-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #ffe2c7;
    border-radius: 14px;
    overflow: hidden
}
.spec-table div {
    padding: 12px 14px;
    border-bottom: 1px solid #ffe2c7
}
.spec-table div:nth-child(odd) {
    background: #fff8ee;
    font-weight: 900
}
.spec-table div:nth-last-child(-n+2) {
    border-bottom: 0
}
.requirement-box {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .08);
    margin-top: 35px
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px
}
.form input, .form textarea, .requirement-box input, .requirement-box textarea, .requirement-box select {
    width: 100%;
    border: 1px solid #ecd2bb;
    padding: 14px;
    border-radius: 12px;
    outline: none;
    font-size: 15px
}
.form textarea, .requirement-box textarea {
    min-height: 120px;
    resize: none
}
.requirement-box .full, .form-grid .full {
    grid-column: 1/-1
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px
}
.contact-box, .form {
    padding: 32px
}
.contact-box h2, .form h2 {
    font-size: 34px;
    margin-bottom: 15px
}
.contact-list {
    display: grid;
    gap: 15px;
    margin-top: 22px
}
.contact-list div {
    display: flex;
    gap: 12px;
    font-weight: 800;
    color: #333
}
.contact-list i {
    color: #d72717
}
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}
.sitemap-box {
    padding: 28px
}
.sitemap-box h3 {
    margin-bottom: 14px;
    color: #7b1d12
}
.sitemap-box a {
    display: block;
    color: #333;
    padding: 7px 0;
    font-weight: 700
}
.sitemap-box a:hover {
    color: #d72717
}
.footer {
    background: #241611;
    color: #fff;
    padding-top: 55px
}
.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 35px
}
.footer h3 {
    font-size: 29px;
    color: #d72717;
    margin-bottom: 12px
}
.footer h4 {
    color: #f7a600;
    margin-bottom: 14px
}
.footer p, .footer a {
    color: #dbc7be;
    line-height: 1.75
}
.footer a {
    display: block;
    margin: 6px 0
}
.footer a:hover {
    color: #f7a600
}
.badge {
    display: inline-block;
    background: #d72717;
    color: #fff;
    border-radius: 30px;
    padding: 8px 13px;
    font-weight: 900;
    margin: 8px 6px 8px 0;
    font-size: 13px
}
.badge.light {
    background: #fff0dd;
    color: #7b1d12
}
.footer-inquiry {
    margin-top: 10px
}
.copyright {
    text-align: center;
    color: #cbb6ad;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 0;
    font-size: 14px
}
@media(max-width:1050px) {
    .header-btn {
        display: none
    }
    .menu-toggle {
        display: block
    }
    .navbar {
        height: 76px
    }
    .nav-menu {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 22px;
        box-shadow: 0 16px 30px rgba(0, 0, 0, .08)
    }
    .nav-menu.active {
        display: flex
    }
    .nav-menu > li > a {
        padding: 14px 0;
        justify-content: space-between
    }
    .dropdown, .sub-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 8px 0 8px 12px;
        min-width: 100%
    }
    .has-dropdown.open > .dropdown, .has-sub.open > .sub-dropdown {
        display: block
    }
    .has-sub > a i {
        transform: rotate(90deg)
    }
    .hero-wrap, .about-split, .product-detail, .contact-grid {
        grid-template-columns: 1fr
    }
    .grid-4, .footer-top {
        grid-template-columns: repeat(2, 1fr)
    }
    .sitemap-grid {
        grid-template-columns: 1fr 1fr
    }
}
@media(max-width:720px) {
    section {
        padding: 60px 0
    }
    .topbar-wrap {
        justify-content: center;
        text-align: center
    }
    .hero {
        padding: 70px 0
    }
    .hero h1 {
        font-size: 36px
    }
    .hero-img img, .about-split img, .product-photo img {
        height: 310px
    }
    .section-title h2, .about-text h2, .page-title h1 {
        font-size: 31px
    }
    .grid-3, .grid-4, .points, .form-grid, .footer-top, .sitemap-grid {
        grid-template-columns: 1fr
    }
    .spec-table {
        grid-template-columns: 1fr
    }
    .spec-table div:nth-last-child(-n+2) {
        border-bottom: 1px solid #ffe2c7
    }
    .product-detail-content h2 {
        font-size: 28px
    }
}
/* Logo + Fancy Typography Update */
.logo {
    display: flex;
    align-items: center;
    width: 190px;
    height: auto;
}
.logo img {
    width: 100%;

    object-fit: contain;
}
h1, h2, .section-title h2, .about-text h2, .page-title h1, .product-detail-content h2, .contact-box h2, .form h2 {
    font-family: "Playfair Display", serif;
    letter-spacing: -0.5px;
}
.nav-menu > li > a, .header-btn, .main-btn {
    font-family: "Poppins", Arial, sans-serif;
}
/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #241611;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity .8s ease, transform 1.2s ease, visibility .8s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 176, 0, .23), transparent 28%), linear-gradient(0deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, 0));
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 770px;
}
.hero-slide-content h1 {
    font-size: 68px;
    line-height: 1.02;
    margin-bottom: 22px;
    text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}
.hero-slide-content p {
    font-size: 19px;
    line-height: 1.75;
    color: #fff2e7;
    max-width: 650px;
    margin-bottom: 30px;
}
.hero-slide-content .tag {
    box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #d72717;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    display: grid;
    place-items: center;
}
.slider-arrow:hover {
    background: #ffb000;
    color: #4b160e;
}
.slider-arrow.prev {
    left: 26px
}
.slider-arrow.next {
    right: 26px
}
.slider-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.slider-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
    cursor: pointer;
    transition: .3s;
}
.slider-dots button.active {
    width: 34px;
    border-radius: 20px;
    background: #ffb000;
}
/* Hide old hero style if old class remains somewhere */
.hero h1 {
    font-family: "Playfair Display", serif;
}
@media(max-width:1050px) {

    .hero-slide-content h1 {
        font-size: 48px
    }
    .hero-slider {
        min-height: 570px
    }
}
@media(max-width:720px) {

    .hero-slider {
        min-height: 520px
    }
    .hero-slide-content h1 {
        font-size: 36px
    }
    .hero-slide-content p {
        font-size: 16px
    }
    .slider-arrow {
        display: none
    }
}
/* =====================================================
   FINAL BEST PREMIUM OPTION
   Poppins + Cormorant Garamond
   Clean, premium, modern, food-brand focused
   ===================================================== */ :root {
    --fp-red: #c71917;
    --fp-red-2: #e42b22;
    --fp-deep: #1f0805;
    --fp-maroon: #5b130d;
    --fp-gold: #e8aa2d;
    --fp-cream: #fff7e8;
    --fp-cream-2: #fff0d4;
    --fp-white: #fffdf8;
    --fp-text: #24120e;
    --fp-muted: #76615a;
    --fp-border: rgba(199, 25, 23, .12);
    --fp-shadow: 0 26px 70px rgba(65, 18, 8, .14);
    --fp-soft-shadow: 0 18px 45px rgba(65, 18, 8, .09);
}
* {
    font-family: "Poppins", Arial, Helvetica, sans-serif !important;
}
h1, h2, h3, .section-title h2, .about-text h2, .page-title h1, .product-detail-content h2, .contact-box h2, .form h2, .footer h3, .footer h4 {
    font-family: "Cormorant Garamond", serif !important;
}
body.final-premium-theme {
    background:
        radial-gradient(circle at 5% 10%, rgba(232, 170, 45, .20), transparent 30%), radial-gradient(circle at 95% 15%, rgba(199, 25, 23, .11), transparent 30%), linear-gradient(180deg, #fffaf0 0%, #fff4de 48%, #fffaf4 100%);
    color: var(--fp-text);
    overflow-x: hidden;
}
body.final-premium-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .28;
    background-image:
        linear-gradient(rgba(199, 25, 23, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(199, 25, 23, .07) 1px, transparent 1px);
    background-size: 38px 38px;
}
/* Top and header */
.topbar {
    background: linear-gradient(90deg, #1f0805, #5b130d, #1f0805);
    color: #ffe8bf;
    font-size: 13px;
}
.topbar strong {
    color: var(--fp-gold);
}
.site-header {
    background: rgba(255, 253, 248, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(199, 25, 23, .10);
    box-shadow: 0 12px 36px rgba(31, 8, 5, .08);
}
.navbar {
    height: 94px;
}
.logo {

    display: flex;
    align-items: center;
}
.logo img {

    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(31, 8, 5, .10));
}
.nav-menu {

    border-radius: 999px;
    padding: 7px;
    gap: 3px;

}
.nav-menu > li > a {
    padding: 12px 15px;
    border-radius: 999px;
    font-weight: 800;
    color: #32130d;
    font-size: 14px;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active {
    background: linear-gradient(135deg, var(--fp-red), var(--fp-maroon));
    color: #fff;
}
.dropdown, .sub-dropdown {
    border: 1px solid rgba(199, 25, 23, .12);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(31, 8, 5, .15);
    background: rgba(255, 253, 248, .96);
    backdrop-filter: blur(16px);
}
.dropdown a {
    border-radius: 15px;
}
.dropdown a:hover {
    background: #fff0d4;
    color: var(--fp-red);
}
/* Buttons */
.header-btn, .main-btn, .form button, .footer-inquiry {
    border-radius: 999px;
    background: linear-gradient(135deg, var(--fp-red), var(--fp-maroon));
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .25);

    position: relative;
    overflow: hidden;
}
.header-btn::after, .main-btn::after, .form button::after, .footer-inquiry::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%) skewX(-20deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
    transition: .65s;
}
.header-btn:hover::after, .main-btn:hover::after, .form button:hover::after, .footer-inquiry:hover::after {
    transform: translateX(120%) skewX(-20deg);
}
.header-btn:hover, .main-btn:hover, .form button:hover, .footer-inquiry:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--fp-gold), #d97f08);
    color: #3a120b !important;
}
/* Final hero */
.fp-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 77% 42%, rgba(232, 170, 45, .36), transparent 27%), linear-gradient(135deg, #230906 0%, #5b130d 48%, #c71917 100%);
    border-radius: 0 0 64px 64px;
}
.fp-noise {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .07), transparent 18%), linear-gradient(120deg, transparent 0 48%, rgba(255, 255, 255, .06) 48% 52%, transparent 52% 100%);
    opacity: .8;
}
.fp-hero::before {
    content: "JALPOOREE";
    position: absolute;
    right: -50px;
    bottom: 40px;
    font-family: "Cormorant Garamond", serif !important;
    font-size: 170px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, .045);
}
.fp-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .94fr;
    gap: 70px;
    align-items: center;
}
.fp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #ffe1a2;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 23px;
}
.fp-eyebrow::before {
    content: "";
    width: 46px;
    height: 2px;
    background: var(--fp-gold);
}
.fp-eyebrow.dark {
    color: var(--fp-red);
}
.fp-copy h1 {
    color: #fff;
    font-size: 76px;
    line-height: .94;
    letter-spacing: -1px;
    max-width: 790px;
    margin-bottom: 25px;
    text-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}
.fp-copy p {
    color: #ffe9d2;
    font-size: 19px;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 32px;
    font-weight: 500;
}
.fp-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.fp-text-btn {
    color: #fff;
    font-weight: 800;
    border-bottom: 2px solid var(--fp-gold);
    padding-bottom: 6px;
}
.fp-text-btn:hover {
    color: #ffe1a2;
}
.fp-proof {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 38px;
}
.fp-proof div {
    min-width: 135px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    padding: 16px 18px;
    backdrop-filter: blur(10px);
}
.fp-proof strong {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}
.fp-proof span {
    color: #ffdfbd;
    font-size: 13px;
    font-weight: 700;
}
.fp-showcase {
    position: relative;
    min-height: 550px;
    display: grid;
    place-items: center;
}
.fp-blob {
    position: absolute;
    width: 470px;
    height: 470px;
    background: linear-gradient(135deg, #fff4d7, #ffc85a);
    border-radius: 42% 58% 62% 38% / 45% 39% 61% 55%;
    box-shadow: 0 44px 110px rgba(0, 0, 0, .25);
    animation: fpBlob 8s ease-in-out infinite;
}
@keyframes fpBlob {
    0%, 100% {
        border-radius: 42% 58% 62% 38% / 45% 39% 61% 55%;
        transform: rotate(-4deg)
    }
    50% {
        border-radius: 58% 42% 43% 57% / 55% 60% 40% 45%;
        transform: rotate(4deg)
    }
}
.fp-product {
    position: relative;
    z-index: 2;
}
.fp-main-product {
    width: 415px;
    height: 415px;
    border-radius: 44px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .65);
    padding: 34px;
    box-shadow: 0 30px 80px rgba(31, 8, 5, .25);
    backdrop-filter: blur(12px);
    transform: rotate(-3deg);
}
.fp-main-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 26px rgba(31, 8, 5, .17));
}
.fp-chip {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 24px;
    padding: 12px 14px;
    box-shadow: 0 20px 55px rgba(31, 8, 5, .18);
    backdrop-filter: blur(14px);
}
.fp-chip:hover {
    transform: translateY(-6px);
}
.fp-chip img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #fff1d2;
    border-radius: 18px;
    padding: 6px;
}
.fp-chip small {
    display: block;
    color: var(--fp-red);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .9px;
}
.fp-chip strong {
    display: block;
    color: #2d130e;
    font-size: 15px;
}
.fp-chip-one {
    top: 72px;
    right: 0;
}
.fp-chip-two {
    left: 0;
    bottom: 78px;
}
.fp-badge {
    position: absolute;
    z-index: 5;
    right: 40px;
    bottom: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--fp-deep);
    color: #fff;
    border-radius: 999px;
    padding: 13px 17px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(31, 8, 5, .22);
}
.fp-badge i {
    color: var(--fp-gold);
}
/* Home product nav */
.fp-product-nav {
    padding: 0;
    margin-top: -52px;

    z-index: 10;
    background: #005534;
}
.fp-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.fp-nav-grid a {
    display: grid;
    grid-template-columns: auto 82px 1fr auto;
    align-items: center;
    gap: 16px;
    background: rgb(248 215 10);
    border: 1px solid rgba(199, 25, 23, .13);
    border-radius: 28px;
    padding: 18px;

    backdrop-filter: blur(14px);
    color: var(--fp-text);
}
.fp-nav-grid a:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 25, 23, .28);
}
.fp-nav-grid span {
    color: var(--fp-red);
    font-weight: 900;
    font-size: 14px;
}
.fp-nav-grid img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    background: #fff0d4;
    border-radius: 22px;
    padding: 9px;
}
.fp-nav-grid h3 {
    font-size: 25px;
    color: #005509;
    line-height: 1;
    margin-bottom: 6px;
}
.fp-nav-grid p {
    color:#000000;
    font-size: 13px;
    font-weight: 600;
}
.fp-nav-grid i {
    color: var(--fp-red);
}
/* Story band */
.fp-story-band {
    background: transparent;
}
.fp-story-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center;
    background: linear-gradient(135deg, #fffdf8, #fff1d7);
    border: 1px solid rgba(199, 25, 23, .12);
    border-radius: 44px;
    padding: 54px;
    box-shadow: var(--fp-soft-shadow);
}
.fp-story-grid h2 {
    font-size: 52px;
    line-height: 1;
    color: var(--fp-maroon);
    margin: 10px 0 18px;
}
.fp-story-grid p {
    color: var(--fp-muted);
    line-height: 1.8;
    font-weight: 500;
}
.fp-story-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.fp-story-img img {
    height: 285px;
    width: 100%;
    object-fit: contain;
    background: #fff7e8;
    padding: 18px;
    border-radius: 30px;
    box-shadow: 0 16px 38px rgba(65, 18, 8, .09);
}
.fp-story-img img:first-child {
    transform: rotate(-2deg);
}
.fp-story-img img:last-child {
    transform: rotate(2deg) translateY(24px);
}
/* Overall sections */
section {
    padding: 92px 0;
}
.section-title {
    margin-bottom: 54px;
}
.section-title small, .red-small {
    display: inline-flex;
    background: #fff0d4;
    color: var(--fp-red);
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: 1.4px;
    font-size: 12px;
    font-weight: 900;
}
.section-title h2 {
    font-size: 54px;
    line-height: .98;
    color: var(--fp-maroon);
}
.section-title p, .product-info p, .category-card p, .about-text p, .info-card p, .contact-box p {
    color: var(--fp-muted);
}
/* Cards */
.product-card, .category-card, .info-card, .contact-box, .form, .sitemap-box, .requirement-box, .product-detail-content, .product-photo {
    background: rgba(255, 253, 248, .92);
    border: 1px solid rgba(199, 25, 23, .12);
    border-radius: 32px;
    box-shadow: var(--fp-soft-shadow);
    backdrop-filter: blur(10px);
}
.product-card, .category-card, .info-card {
    overflow: hidden;
}
.product-card:hover, .category-card:hover, .info-card:hover, .sitemap-box:hover {
    transform: translateY(-9px);
    box-shadow: 0 30px 80px rgba(65, 18, 8, .15);
}
.product-img, .product-card > img {
    background: linear-gradient(135deg, #fff5df, #ffe2a9);
}
.product-img img, .product-card img, .category-card img, .about-split img, .product-photo img {
    object-fit: contain;
    background: linear-gradient(135deg, #fff6e7, #ffe6b5);
    padding: 16px;
    border-radius: 24px;
}
.product-info h3, .category-card h3, .info-card h3 {
    color: var(--fp-maroon);
}
.product-info h3 {
    font-size: 27px;
    line-height: 1;
}
.view-more {
    color: var(--fp-red);
    font-weight: 900;
}
.category-card .count {
    background: var(--fp-red);
    color: #fff;
}
/* About and mission */
.about-text {
    background: rgba(255, 253, 248, .92);
    border: 1px solid rgba(199, 25, 23, .12);
    border-radius: 38px;
    padding: 40px;
    box-shadow: var(--fp-soft-shadow);
}
.about-text h2 {
    font-size: 50px;
    line-height: .98;
    color: var(--fp-maroon);
}
.points div {
    background: #fff2d8;
    border: 1px solid rgba(199, 25, 23, .10);
    border-radius: 16px;
    padding: 14px 15px;
}
.info-card {
    padding: 34px;
}
.info-card i {
    background: #fff0d4;
    color: var(--fp-red);
    border-radius: 20px;
}
.info-card h3 {
    font-size: 30px;
}
/* Why section */
.why {
    width: 94%;
    margin: auto;
    border-radius: 54px;
    background:
        radial-gradient(circle at 84% 12%, rgba(232, 170, 45, .28), transparent 27%), linear-gradient(135deg, #1f0805 0%, #5b130d 55%, #c71917 100%);
    overflow: hidden;
}
.why .info-card {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: none;
}
.why .info-card i {
    background: rgba(232, 170, 45, .16);
    color: var(--fp-gold);
}
.why .info-card h3, .why .info-card p {
    color: #fff;
}
/* Inner pages */
.page-title {
    background:
        radial-gradient(circle at 83% 18%, rgba(232, 170, 45, .28), transparent 28%), linear-gradient(135deg, #1f0805 0%, #5b130d 55%, #c71917 100%) !important;
    padding: 102px 0;

}
.page-title h1 {
    color: #fff;
    font-size: 62px;
}
.breadcrumb {
    color: #ffe0aa;
}
.product-detail-content h2 {
    color: var(--fp-maroon);
    font-size: 46px;
    line-height: 1;
}
.product-photo {
    position: sticky;
    top: 120px;
    padding: 26px;
}
.product-photo img {
    object-fit: contain;
    background: #fff0d4;
    padding: 24px;
}
.spec-section h3 {
    color: var(--fp-maroon);
    font-size: 28px;
}
.spec-table {
    border: 1px solid rgba(199, 25, 23, .12);
    border-radius: 20px;
    overflow: hidden;
}
.spec-table div:nth-child(odd) {
    background: #fff0d4;
    color: var(--fp-maroon);
}
.form input, .form textarea, .requirement-box input, .requirement-box textarea, .requirement-box select {
    background: #fffdf8;
    border: 1px solid rgba(199, 25, 23, .14);
    border-radius: 16px;
}
.form input:focus, .form textarea:focus, .requirement-box input:focus, .requirement-box textarea:focus, .requirement-box select:focus {
    border-color: var(--fp-red);
    box-shadow: 0 0 0 5px rgba(199, 25, 23, .08);
}
/* Footer */
.footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(232, 170, 45, .16), transparent 30%), linear-gradient(135deg, #1f0805, #32100a 52%, #5b130d);

    margin-top: 44px;
}
.seller-card {

    padding: 28px;
}
.footer h3, .footer h4 {
    color: #fff;
}
.footer h4 {
    color: #ffd27a;
}
.footer a:hover {
    color: #ffd27a;
    transform: translateX(1px);
}
/* Soft reveal */
.fp-reveal {
    opacity: 0;
    transform: translateY(26px);
}
.fp-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
/* Responsive */
@media(max-width:1050px) {
    .nav-menu {
        border-radius: 0;
        background: #fffdf8;
        padding: 18px 22px;
    }
    .fp-hero {
        min-height: auto;
        padding: 80px 0 120px;
    }
    .fp-hero-grid, .fp-story-grid {
        grid-template-columns: 1fr;
    }
    .fp-copy h1 {
        font-size: 54px;
    }
    .fp-showcase {
        min-height: 470px;
    }
    .fp-main-product {
        width: 340px;
        height: 340px;
    }
    .fp-blob {
        width: 390px;
        height: 390px;
    }
    .fp-nav-grid {
        grid-template-columns: 1fr;
    }
    .product-photo {
        position: static;
    }
}
@media(max-width:720px) {
    .navbar {
        height: 82px;
    }
    .nav-menu {
        top: 82px;
    }
    .logo {
        width: 155px;
    }
    .fp-hero {
        border-radius: 0 0 36px 36px;
        padding: 62px 0 100px;
    }
    .fp-hero::before {
        font-size: 76px;
        right: -20px;
    }
    .fp-copy h1 {
        font-size: 40px;
    }
    .fp-copy p {
        font-size: 16px;
    }
    .fp-proof div {
        min-width: calc(50% - 8px);
    }
    .fp-main-product {
        width: 260px;
        height: 260px;
        border-radius: 34px;
    }
    .fp-blob {
        width: 300px;
        height: 300px;
    }
    .fp-chip {
        min-width: 155px;
        padding: 9px;
    }
    .fp-chip img {
        width: 48px;
        height: 48px;
    }
    .fp-chip-one {
        right: -4px;
        top: 50px;
    }
    .fp-chip-two {
        left: -4px;
        bottom: 60px;
    }
    .fp-badge {
        right: 20px;
        bottom: 24px;
    }
    .fp-nav-grid a {
        grid-template-columns: auto 70px 1fr;
    }
    .fp-nav-grid a i {
        display: none;
    }
    .fp-nav-grid img {
        width: 70px;
        height: 70px;
    }
    .section-title h2, .about-text h2, .fp-story-grid h2, .page-title h1, .product-detail-content h2 {
        font-size: 38px;
    }
    .fp-story-grid {
        padding: 28px;
        border-radius: 30px;
    }
    .fp-story-img {
        grid-template-columns: 1fr;
    }
    .fp-story-img img {
        height: 230px;
        transform: none !important;
    }
    .why {
        border-radius: 34px;
    }
    .about-text, .product-detail-content, .contact-box, .form, .requirement-box {
        padding: 26px;
    }
}
/* Font Awesome icon fix */
.fa, .fa-solid, .fa-regular, .fa-brands, .fas, .far, .fab {
    font-family: "Font Awesome 6 Free" !important;
}
.fa-solid, .fas {
    font-weight: 900 !important;
}
.fa-regular, .far {
    font-weight: 400 !important;
}
.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}
/* =====================================================
   EDITORIAL PREMIUM FOOD BRAND OPTION
   Designed as a magazine-style FMCG product website
   Fonts: Poppins + Fraunces
   ===================================================== */ :root {
    --ed-red: #b91512;
    --ed-red-bright: #ef2e24;
    --ed-ink: #190807;
    --ed-brown: #4b1a12;
    --ed-gold: #d7a23a;
    --ed-cream: #fff8ea;
    --ed-paper: #fffdf7;
    --ed-warm: #ffe5b6;
    --ed-text: #25120e;
    --ed-muted: #756259;
    --ed-line: rgba(185, 21, 18, .13);
    --ed-shadow: 0 28px 90px rgba(68, 22, 8, .15);
    --ed-soft: 0 18px 50px rgba(68, 22, 8, .09);
}
* {
    font-family: "Poppins", Arial, sans-serif !important;
}
h1, h2, h3, .section-title h2, .about-text h2, .page-title h1, .product-detail-content h2, .contact-box h2, .form h2, .footer h3, .footer h4, .ed-hero-marquee span {
    font-family: "Fraunces", serif !important;
}
body.editorial-premium {
    background:
        linear-gradient(90deg, rgba(185, 21, 18, .045) 1px, transparent 1px), linear-gradient(rgba(185, 21, 18, .045) 1px, transparent 1px), linear-gradient(180deg, #fffaf0, #fff2dc 50%, #fffaf3);
    background-size: 42px 42px, 42px 42px, 100% 100%;
    color: var(--ed-text);
    overflow-x: hidden;
}
.topbar {
    background: var(--ed-ink);
    color: #ffe9c5;
    font-size: 13px;
}
.topbar strong {
    color: var(--ed-gold);
}
.site-header {
    background: rgba(255, 253, 247, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--ed-line);
    box-shadow: 0 12px 38px rgba(25, 8, 7, .08);
}
.navbar {
    height: 92px;
}

.logo img {

    object-fit: contain;
}
.nav-menu {
    gap: 2px;
    padding: 7px;
    border-radius: 18px;


}
.nav-menu > li > a {
    padding: 12px 14px;
    border-radius: 13px;
    font-weight: 800;
    font-size: 14px;
    color: var(--ed-brown);
    text-transform: uppercase;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active {
    background: var(--ed-ink);
    color: #fff;
}
.dropdown, .sub-dropdown {
    background: rgba(255, 253, 247, .96);
    backdrop-filter: blur(16px);
    border: 1px solid var(--ed-line);
    border-radius: 20px;
    box-shadow: 0 26px 70px rgba(25, 8, 7, .15);
}
.dropdown a:hover {
    background: #fff0d4;
    color: var(--ed-red);
}
.header-btn, .main-btn, .form button, .footer-inquiry {
    background:rgb(94 148 12);
    border-radius: 14px;
    color: #fff !important;

}
.header-btn:hover, .main-btn:hover, .form button:hover, .footer-inquiry:hover {
    background: #ffffff;
    transform: translateY(-3px);
}
/* Editorial hero */
.ed-hero {
    position: relative;
    min-height: 745px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 42%, rgba(215, 162, 58, .38), transparent 30%), linear-gradient(135deg, #fff9eb 0%, #ffe7bb 48%, #ffd174 100%);
    border-radius: 0 0 58px 58px;
    display: flex;
    align-items: center;
}
.ed-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .3), transparent 55%), radial-gradient(circle at 8% 80%, rgba(185, 21, 18, .11), transparent 28%);
}
.ed-hero-marquee {
    position: absolute;
    left: -6%;
    top: 38px;
    display: flex;
    gap: 36px;
    transform: rotate(-3deg);
    opacity: .12;
    white-space: nowrap;
}
.ed-hero-marquee span {
    font-size: 82px;
    font-weight: 800;
    color: var(--ed-red);
    letter-spacing: 2px;
}
.ed-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .96fr;
    gap: 70px;
    align-items: center;
}
.ed-label {
    display: inline-block;
    background: var(--ed-ink);
    color: #fff1cf;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.ed-hero-left h1 {
    font-size: 76px;
    line-height: .94;
    letter-spacing: -1.8px;
    color: var(--ed-ink);
    max-width: 820px;
    margin-bottom: 24px;
}
.ed-hero-left p {
    font-size: 19px;
    line-height: 1.8;
    color: #684234;
    max-width: 645px;
    font-weight: 600;
    margin-bottom: 32px;
}
.ed-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.ed-link {
    color: var(--ed-ink);
    font-weight: 900;
    border-bottom: 2px solid var(--ed-red);
    padding-bottom: 5px;
}
.ed-hero-gallery {
    min-height: 540px;
    position: relative;
}
.ed-frame {
    position: absolute;
    background: #fffdf7;
    border: 1px solid rgba(185, 21, 18, .13);
    box-shadow: var(--ed-shadow);
    overflow: hidden;
}
.ed-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff1d6;
    padding: 22px;
}
.ed-frame-big {
    width: 390px;
    height: 465px;
    right: 80px;
    top: 30px;
    border-radius: 200px 200px 34px 34px;
}
.ed-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    background: rgba(25, 8, 7, .88);
    color: #fff;
    border-radius: 18px;
    padding: 13px 16px;
    font-weight: 900;
    text-align: center;
}
.ed-frame-small {
    width: 165px;
    height: 185px;
    border-radius: 28px;
    z-index: 3;
}
.ed-frame-small.one {
    left: 25px;
    top: 85px;
    transform: rotate(-7deg);
}
.ed-frame-small.two {
    left: 80px;
    bottom: 48px;
    transform: rotate(8deg);
}
.ed-round-note {
    position: absolute;
    right: 10px;
    bottom: 70px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--ed-red);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 18px 45px rgba(185, 21, 18, .27);
    z-index: 4;
}
.ed-round-note strong {
    font-family: "Fraunces", serif !important;
    font-size: 30px;
    line-height: 1;
}
.ed-round-note span {
    display: block;
    margin-top: -32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 900;
}
/* Editorial category wall */
.ed-category-wall {
    padding: 55px 0 55px;
    background: #005534;
}
.ed-section-head {

    grid-template-columns: .45fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}
.ed-section-head span {
    color: #FFFFFF;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.ed-section-head h2 {
    font-size: 40px;
    line-height: 1;
    color:#FFFFFF;
}
.ed-range-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
}
.ed-range-card {
    min-height: 355px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fffdf7;
    border: 1px solid var(--ed-line);
    border-radius: 34px;
    padding: 26px;
    box-shadow: var(--ed-soft);
    overflow: hidden;
    color: var(--ed-text);
    text-align: center;
}
.ed-range-card.dark {
    background: linear-gradient(135deg, var(--ed-ink), var(--ed-brown));
    color: #fff;
}
.ed-range-card.gold {
    background: #ffffff;
}
.ed-range-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--ed-shadow);
}
.ed-range-card img {
    width: 100%;
    height: 185px;
    object-fit: contain;
    background: rgb(228 228 228);
    border-radius: 24px;
    padding: 14px;
}
.ed-range-card small {
    display: block;
    color: #f7dcbd;
    font-weight: 900;
    margin-top: 22px;
}
.ed-range-card.dark small, .ed-range-card.dark h3, .ed-range-card.dark p {
    color: #fff;
}
.ed-range-card h3 {
    font-size: 27px;
    color: #565620;
    margin: 5px 0 8px;
}
.ed-range-card p {
    color: #000000;
    line-height: 1.6;
}
.ed-range-card.dark p {
    color: #ffe6cf;
}
/* CTA */
.ed-bottom-cta {
    background: transparent;
    padding: 50px 0 20px;
}
.ed-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        radial-gradient(circle at 86% 30%, rgba(215, 162, 58, .28), transparent 30%), linear-gradient(135deg, var(--ed-ink), var(--ed-brown));
    color: #fff;
    border-radius: 42px;
    padding: 48px;
    box-shadow: var(--ed-shadow);
}
.ed-cta-card span {
    color: #ffd98d;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 900;
    font-size: 13px;
}
.ed-cta-card h2 {
    color: #fff;
    font-size: 50px;
    line-height: 1;
    max-width: 690px;
    margin: 9px 0 12px;
}
.ed-cta-card p {
    color: #ffe6cf;
}
/* Global editorial polish */
section {
    padding: 86px 0;
}
.section-title small, .red-small {
    background: transparent;
    color: var(--ed-red);
    padding: 0;
    letter-spacing: 1.7px;
    font-weight: 900;
}
.section-title h2 {
    font-size: 54px;
    line-height: .98;
    color: var(--ed-ink);
}
.product-card, .category-card, .info-card, .contact-box, .form, .sitemap-box, .requirement-box, .product-detail-content, .product-photo {
    background: rgba(255, 253, 247, .92);
    border: 1px solid var(--ed-line);
    border-radius: 30px;
    box-shadow: var(--ed-soft);
}
.product-card:hover, .category-card:hover, .info-card:hover, .sitemap-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--ed-shadow);
}
.product-img img, .product-card img, .category-card img, .about-split img, .product-photo img {
    object-fit: contain;
    background: #fff1d6;
    padding: 16px;
    border-radius: 22px;
}
.product-info h3, .category-card h3, .info-card h3 {
    color: var(--ed-ink);
}
.product-info h3 {
    font-size: 29px;
}
.view-more {
    color: var(--ed-red);
    font-weight: 900;
}
.about-text {
    background: #fffdf7;
    border: 1px solid var(--ed-line);
    border-radius: 36px;
    padding: 40px;
    box-shadow: var(--ed-soft);
}
.about-text h2 {
    font-size: 52px;
    line-height: .98;
    color: var(--ed-ink);
}
.points div {
    background: #fff1d6;
    border: 1px solid rgba(185, 21, 18, .10);
    border-radius: 16px;
    padding: 14px;
}
.info-card {
    padding: 34px;
}
.info-card i {
    background: #fff1d6;
    color: var(--ed-red);
    border-radius: 18px;
}
.why {
    width: 94%;
    margin: auto;
    border-radius: 52px;
    background:
        radial-gradient(circle at 86% 12%, rgba(215, 162, 58, .28), transparent 28%), linear-gradient(135deg, var(--ed-ink), var(--ed-brown) 58%, var(--ed-red));
}
.why .info-card {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: none;
}
.why .info-card h3, .why .info-card p {
    color: #fff;
}
.page-title {
    background:
        radial-gradient(circle at 84% 16%, rgba(215, 162, 58, .28), transparent 30%), linear-gradient(135deg, var(--ed-ink), var(--ed-brown) 56%, var(--ed-red)) !important;

    padding: 100px 0;
}
.page-title h1 {
    color: #fff;
    font-size: 62px;
}
.breadcrumb {
    color: #ffdca1;
}
.product-detail-content h2 {
    color: var(--ed-ink);
    font-size: 48px;
    line-height: 1;
}
.product-photo {
    padding: 26px;
    position: sticky;
    top: 118px;
}
.product-photo img {
    background: #fff1d6;
    padding: 24px;
}
.spec-section h3 {
    color: var(--ed-brown);
    font-size: 28px;
}
.spec-table div:nth-child(odd) {
    background: #fff1d6;
}
.form input, .form textarea, .requirement-box input, .requirement-box textarea, .requirement-box select {
    background: #fffdf7;
    border: 1px solid rgba(185, 21, 18, .14);
    border-radius: 14px;
}
.footer {
    background: linear-gradient(135deg, var(--ed-ink), #2b0d08, var(--ed-brown));

    margin-top: 10px;
}
.seller-card {

    padding: 28px;
}
.footer h4 {
    color: #ffd98d;
}
/* Icon fix after global font override */
.fa, .fa-solid, .fa-regular, .fa-brands, .fas, .far, .fab {
    font-family: "Font Awesome 6 Free" !important
}
.fa-solid, .fas {
    font-weight: 900 !important
}
.fa-regular, .far {
    font-weight: 400 !important
}
.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important
}
@media(max-width:1050px) {
    .nav-menu {
        border-radius: 0;
        background: #fffdf7;
        padding: 18px 22px;
    }
    .ed-hero {
        min-height: auto;
        padding: 76px 0 90px;
    }
    .ed-hero-grid, .ed-section-head, .fp-story-grid {
        grid-template-columns: 1fr;
    }
    .ed-hero-left h1 {
        font-size: 54px;
    }
    .ed-hero-gallery {
        min-height: 520px;
    }
    .ed-range-grid {
        grid-template-columns: 1fr;
    }
    .ed-range-card {
        min-height: auto;
    }
    .ed-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .product-photo {
        position: static;
    }
}
@media(max-width:720px) {

    .ed-hero {
        padding: 60px 0 80px;
        border-radius: 0 0 36px 36px;
    }
    .ed-hero-marquee span {
        font-size: 42px;
    }
    .ed-hero-left h1 {
        font-size: 39px;
    }
    .ed-hero-left p {
        font-size: 16px;
    }
    .ed-hero-gallery {
        min-height: 420px;
    }
    .ed-frame-big {
        width: 260px;
        height: 330px;
        right: 30px;
        top: 40px;
    }
    .ed-frame-small {
        width: 118px;
        height: 135px;
    }
    .ed-frame-small.one {
        left: 0;
        top: 70px;
    }
    .ed-frame-small.two {
        left: 20px;
        bottom: 22px;
    }
    .ed-round-note {
        width: 92px;
        height: 92px;
        right: 0;
        bottom: 48px;
    }
    .ed-round-note strong {
        font-size: 22px;
    }
    .ed-section-head h2, .section-title h2, .about-text h2, .ed-cta-card h2, .page-title h1, .product-detail-content h2 {
        font-size: 38px;
    }
    .ed-cta-card {
        padding: 28px;
        border-radius: 30px;
    }
    .why {
        border-radius: 34px;
    }
    .about-text, .product-detail-content, .contact-box, .form, .requirement-box {
        padding: 26px;
    }
}
/* =====================================================
   ANIMATED SLIDER OPTION
   Proper hero slider + product carousel + reveal effects
   Fonts: Poppins + Fraunces/Cormorant existing
   ===================================================== */ :root {
    --as-red: #c91612;
    --as-red2: #ef3328;
    --as-dark: #1b0805;
    --as-brown: #57140d;
    --as-gold: #e7a829;
    --as-cream: #fff7e8;
    --as-paper: #fffdf7;
    --as-soft: #fff0d2;
    --as-text: #25120e;
    --as-muted: #756159;
    --as-border: rgba(201, 22, 18, .13);
    --as-shadow: 0 28px 80px rgba(61, 17, 8, .15);
}
body.animated-slider-theme {
    background:
        radial-gradient(circle at 10% 10%, rgba(231, 168, 41, .22), transparent 32%), radial-gradient(circle at 92% 18%, rgba(201, 22, 18, .13), transparent 30%), linear-gradient(180deg, #fffaf0, #fff2dc 52%, #fffaf4);
    overflow-x: hidden;
}
body.animated-slider-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(rgba(201, 22, 18, .08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .45;
}
.site-header {
    background: rgba(255, 253, 247, .90);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--as-border);
    box-shadow: 0 12px 38px rgba(27, 8, 5, .08);
}
.header-btn, .main-btn, .form button, .footer-inquiry {
    position: relative;
    overflow: hidden;
}
.header-btn::after, .main-btn::after, .form button::after, .footer-inquiry::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-130%) skewX(-20deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
    transition: .7s;
}
.header-btn:hover::after, .main-btn:hover::after, .form button:hover::after, .footer-inquiry:hover::after {
    transform: translateX(130%) skewX(-20deg);
}
/* Hero Slider */
.as-hero {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 0 0 62px 62px;
    background:#e31e25;
}
.as-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: .38;
    animation: asFloat 8s ease-in-out infinite;
}
.as-shape-1 {
    width: 240px;
    height: 240px;
    right: 9%;
    top: 12%;
    background: radial-gradient(circle, var(--as-gold), transparent 70%);
}
.as-shape-2 {
    width: 320px;
    height: 320px;
    left: -90px;
    bottom: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 72%);
    animation-delay: 1.6s;
}
@keyframes asFloat {
    0%, 100% {
        transform: translateY(0) scale(1)
    }
    50% {
        transform: translateY(-22px) scale(1.06)
    }
}
.as-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(.985);
    transition: opacity .85s ease, transform .85s ease, visibility .85s ease;
}
.as-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}
.as-slide.active .as-copy {
    animation: asTextIn .9s ease both;
}
.as-slide.active .as-product-card {
    animation: asProductIn .9s cubic-bezier(.22, 1, .36, 1) both;
}
.as-slide.active .as-floating-tag {
    animation: asTagIn .7s ease both .35s;
}
@keyframes asTextIn {
    from {
        opacity: 0;
        transform: translateY(28px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}
@keyframes asProductIn {
    from {
        opacity: 0;
        transform: translateY(35px) rotate(-8deg) scale(.92)
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(-3deg) scale(1)
    }
}
@keyframes asTagIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.9)
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}
.as-hero-grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center;
}
.as-kicker {
    display: inline-flex;
    color: #ffe3a7;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 24px;
    align-items: center;
    gap: 12px;
}
.as-kicker::before {
    content: "";
    width: 48px;
    height: 2px;
    background: var(--as-gold);
}
.as-copy h1 {
    color: #fff;
    font-size: 60px;
    line-height: .96;
    letter-spacing: -1.2px;
    max-width: 780px;
    margin-bottom: 24px;
    font-family: "Fraunces", "Cormorant Garamond", serif !important;
}
.as-copy p {
    color: #ffe8ce;
    font-size: 14px;
    line-height: 1.78;
    max-width: 650px;
    margin-bottom: 32px;
}
.as-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}
.as-text-btn {
    color: #fff;
    font-weight: 900;
    border-bottom: 2px solid var(--as-gold);
    padding-bottom: 6px;
}
.as-product-stage {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
}
.as-product-stage::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 46% 54% 60% 40% / 50% 40% 60% 50%;
    background: linear-gradient(135deg, #fff4d7, #ffc84a);

    animation: asBlob 7s ease-in-out infinite;
}
@keyframes asBlob {
    0%, 100% {
        border-radius: 46% 54% 60% 40% / 50% 40% 60% 50%;
        transform: rotate(-3deg)
    }
    50% {
        border-radius: 58% 42% 42% 58% / 42% 56% 44% 58%;
        transform: rotate(4deg)
    }
}
.as-product-card {
    position: relative;
    z-index: 2;
    width: 410px;
    height: 410px;
    border-radius: 44px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .7);

    backdrop-filter: blur(14px);
    padding: 34px;
}
.as-product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 28px rgba(61, 17, 8, .18));
}
.as-floating-tag {
    position: absolute;
    z-index: 4;
    background: #fff;
    color: var(--as-red);
    border-radius: 999px;
    padding: 13px 18px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}
.tag-a {
    left: 22px;
    top: 110px;
}
.tag-b {
    right: 18px;
    bottom: 112px;
    background: var(--as-dark);
    color: #fff;
}
.as-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    backdrop-filter: blur(12px);
    cursor: pointer;
}
.as-arrow:hover {
    background: var(--as-gold);
    color: #3a130b;
}
.as-prev {
    left: 26px
}
.as-next {
    right: 26px
}
.as-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: 10px;
}
.as-dots button {
    width: 30px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: .3s;
}
.as-dots button.active {
    width: 58px;
    background: var(--as-gold);
}
/* Product Carousel Slider */
.as-product-slider-section {
    padding: 80px 0;
    overflow: hidden;
    background: #a2d9f7;
}

.as-product-slider-section {
    position: relative;
    overflow: hidden;
}

.as-product-slider-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
}
.as-slider-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 30px;
}
.as-slider-head span {
    color: var(--as-red);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 900;
    font-size: 13px;
}
.as-slider-head h2 {
    font-size: 40px;
    line-height: 1;
    color: var(--as-dark);
    font-family: "Fraunces", "Cormorant Garamond", serif !important;
}
.as-slider-controls {
    display: flex;
    gap: 10px;
}
.as-slider-controls button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--as-dark);
    color: #fff;
    cursor: pointer;
    transition: .3s;
}
.as-slider-controls button:hover {
    background: var(--as-red);
    transform: translateY(-3px);
}
.as-product-slider {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 4px 0px;
    scrollbar-width: none;
}
.as-product-slider::-webkit-scrollbar {
    display: none;
}
.as-slide-card {
    flex: 0 0 310px;
    background:#ffffff;
    border: 1px solid var(--as-border);
    border-radius: 40px;
    padding: 22px;
    text-align: center;
    color: var(--as-text);
    position: relative;
    overflow: hidden;
}
.as-slide-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;

    border-radius: 50%;
    right: -60px;
    top: -60px;
}
.as-slide-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--as-shadow);
}
.as-slide-card img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: rgb(228 228 228);
    border-radius: 24px;
    padding: 16px;
    margin-bottom: 18px;
}
.as-slide-card small {
    position: relative;
    z-index: 2;
    color: #056599;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .9px;
}
.as-slide-card h3 {
    position: relative;
    z-index: 2;
    color:#056599;
    font-size: 28px;
    line-height: 1;
    margin-top: 8px;
    font-family: "Fraunces", "Cormorant Garamond", serif !important;
}
/* Animated CTA */
.as-animated-cta {
    padding: 50px 0 25px;
}
.as-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        radial-gradient(circle at 88% 28%, rgba(231, 168, 41, .28), transparent 30%), linear-gradient(135deg, var(--as-dark), var(--as-brown) 58%, var(--as-red));
    color: #fff;
    border-radius: 42px;
    padding: 52px;
    box-shadow: var(--as-shadow);
}
.as-cta-wrap span {
    color: #ffd785;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 13px;
    font-weight: 900;
}
.as-cta-wrap h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1;
    margin: 8px 0 12px;
    font-family: "Fraunces", "Cormorant Garamond", serif !important;
}
.as-cta-wrap p {
    color: #ffe6cf;
}
/* Reveal animations for all pages */
.anim-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}
.anim-reveal.from-left {
    transform: translateX(-42px);
}
.anim-reveal.from-right {
    transform: translateX(42px);
}
.anim-reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}
/* General card motion */
.product-card, .category-card, .info-card, .sitemap-box, .contact-box, .form, .requirement-box, .product-detail-content, .product-photo {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.product-card:hover, .category-card:hover, .info-card:hover, .sitemap-box:hover {
    transform: translateY(-9px);
    box-shadow: 0 30px 80px rgba(61, 17, 8, .15);
    border-color: rgba(201, 22, 18, .24);
}
.product-card:hover img, .category-card:hover img, .product-photo:hover img {
    transform: scale(1.035);
}
/* Better focus */
.form input:focus, .form textarea:focus, .requirement-box input:focus, .requirement-box textarea:focus, .requirement-box select:focus {
    border-color: var(--as-red);
    box-shadow: 0 0 0 5px rgba(201, 22, 18, .08);
}
/* Icon fix */
.fa, .fa-solid, .fa-regular, .fa-brands, .fas, .far, .fab {
    font-family: "Font Awesome 6 Free" !important
}
.fa-solid, .fas {
    font-weight: 900 !important
}
.fa-regular, .far {
    font-weight: 400 !important
}
.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important
}
@media(max-width:1050px) {
    .as-hero {
        min-height: auto;
        padding: 80px 0 110px;
    }
    .as-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .as-copy h1 {
        font-size: 54px;
    }
    .as-product-stage {
        min-height: 460px;
    }
    .as-product-card {
        width: 330px;
        height: 330px;
    }
    .as-product-stage::before {
        width: 380px;
        height: 380px;
    }
    .as-slider-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .as-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media(max-width:720px) {
    .as-hero {
        border-radius: 0 0 36px 36px;
        padding: 64px 0 95px;
    }
    .as-copy h1 {
        font-size: 39px;
    }
    .as-copy p {
        font-size: 16px;
    }
    .as-product-stage {
        min-height: 360px;
    }
    .as-product-card {
        width: 245px;
        height: 245px;
        border-radius: 32px;
        padding: 22px;
    }
    .as-product-stage::before {
        width: 295px;
        height: 295px;
    }
    .as-floating-tag {
        padding: 9px 12px;
        font-size: 13px;
    }
    .tag-a {
        left: 0;
        top: 70px;
    }
    .tag-b {
        right: 0;
        bottom: 70px;
    }
    .as-arrow {
        display: none;
    }
    .as-slider-head h2, .as-cta-wrap h2 {
        font-size: 38px;
    }
    .as-slide-card {
        flex-basis: 260px;
    }
    .as-cta-wrap {
        padding: 30px;
        border-radius: 30px;
    }
}

/* ===== UNIQUE PREMIUM TRUST EXPERIENCE ===== */

.jp-trust-experience {
    padding: 80px 0;
    background:#135c7d;
    position: relative;
    overflow: hidden;
}

.jp-trust-bg-text {
    position: absolute;
    left: 50%;
    top: 62px;
    transform: translateX(-50%);
    font-family: "Fraunces", serif;
    font-size: 135px;
    font-weight: 800;
    letter-spacing: 10px;
    color: rgba(183, 47, 32, 0.035);
    white-space: nowrap;
    pointer-events: none;
}



.jp-trust-exp-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.jp-trust-exp-content {
    position: relative;
    z-index: 2;
}

.jp-trust-exp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    border-radius: 50px;
    background: #ffffff;
    color: #005534;
    border: 1px solid rgba(224, 161, 43, 0.32);
    box-shadow: 0 12px 35px rgba(91, 38, 18, 0.08);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

.jp-trust-exp-kicker i {
    color: #e0a12b;
}

.jp-trust-exp-content h2 {
    font-family: "Fraunces", serif;
    font-size: 40px;
    line-height: 1.08;
    color: #FFFFFF;
    margin: 0 0 20px;
    letter-spacing: -0.7px;
}

.jp-trust-exp-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #FFFFFF;
    margin: 0 0 24px;
    max-width: 560px;
}

.jp-trust-exp-points {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.jp-trust-exp-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
}

.jp-trust-exp-points i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background:#FFFFFF;
    color: #005534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* RIGHT UNIQUE VISUAL */

.jp-trust-exp-visual {
    min-height: 520px;
    position: relative;
}

.jp-main-product-circle {
    width: 355px;
    height: 355px;
    border-radius: 50%;
    background:
        linear-gradient(#fffaf1, #fffaf1) padding-box,
        linear-gradient(135deg, #b72f20, #e0a12b) border-box;
    border: 2px solid transparent;
    box-shadow:
        0 32px 75px rgba(91, 38, 18, 0.16),
        inset 0 0 0 14px rgba(255, 255, 255, 0.9);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.jp-main-product-circle img {
    width: 245px;
    height: 245px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 18px 45px rgba(91, 38, 18, 0.18);
}

.jp-main-product-circle span {
    position: absolute;
    right: -6px;
    bottom: 55px;
    background: #b72f20;
    color: #ffffff;
    font-family: "Fraunces", serif;
    font-size: 18px;
    line-height: 1.2;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(183, 47, 32, 0.25);
}

.jp-circle-ring {
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    border: 1px dashed #FFEB3B;
    animation: jpCircleRotate 18s linear infinite;
}

@keyframes jpCircleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.jp-floating-trust-card {
    position: absolute;
    min-width: 235px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(224, 161, 43, 0.25);
    box-shadow: 0 20px 48px rgba(91, 38, 18, 0.13);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.jp-floating-trust-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 60px rgba(183, 47, 32, 0.16);
}

.jp-floating-trust-card i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background:#005534;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    flex-shrink: 0;
}

.jp-floating-trust-card h3 {
    font-family: "Fraunces", serif;
    font-size: 19px;
    color: #32160d;
    margin: 0 0 4px;
}

.jp-floating-trust-card p {
    font-size: 13.5px;
    color: #765846;
    margin: 0;
}

.jp-floating-trust-card.card-one {
    left: 10px;
    top: 58px;
}

.jp-floating-trust-card.card-two {
    right: 12px;
    top: 165px;
}

.jp-floating-trust-card.card-three {
    left: 55px;
    bottom: 62px;
}

.jp-premium-badge {
    position: absolute;
    right: 90px;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 18px;
    border-radius: 50px;
    background: #32160d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(50, 22, 13, 0.22);
}

.jp-premium-badge i {
    color: #e0a12b;
}

/* MINI TRUST BAR */

.jp-trust-mini-bar {
    margin-top: 62px;
    padding: 22px 26px;
    border-radius: 26px;
    background:#d5760e;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
    box-shadow: 0 24px 60px rgba(50, 22, 13, 0.20);
    overflow: hidden;
}



.jp-trust-mini-bar div {
    position: relative;
    z-index: 1;
    padding: 12px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    text-align: center;
}

.jp-trust-mini-bar div:last-child {
    border-right: none;
}

.jp-trust-mini-bar strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 4px;
}

.jp-trust-mini-bar span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1199px) {
    .jp-trust-exp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jp-trust-exp-content {
        text-align: center;
    }

    .jp-trust-exp-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .jp-trust-exp-points {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .jp-trust-exp-visual {
        min-height: 560px;
    }

    .jp-trust-bg-text {
        font-size: 92px;
    }
}

@media (max-width: 767px) {
    .jp-trust-experience {
        padding: 72px 0 65px;
    }

    .jp-trust-bg-text {
        font-size: 48px;
        letter-spacing: 4px;
        top: 35px;
    }

    .jp-trust-exp-content h2 {
        font-size: 34px;
    }

    .jp-trust-exp-content p {
        font-size: 14.5px;
    }

    .jp-trust-exp-visual {
        min-height: auto;
        padding-top: 15px;
        display: grid;
        gap: 16px;
    }

    .jp-main-product-circle {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 275px;
        height: 275px;
        margin: 0 auto 18px;
    }

    .jp-main-product-circle img {
        width: 185px;
        height: 185px;
    }

    .jp-main-product-circle span {
        right: -4px;
        bottom: 35px;
        font-size: 15px;
        padding: 11px 14px;
        border-radius: 14px;
    }

    .jp-floating-trust-card,
    .jp-floating-trust-card.card-one,
    .jp-floating-trust-card.card-two,
    .jp-floating-trust-card.card-three {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        min-width: auto;
    }

    .jp-premium-badge {
        position: relative;
        right: auto;
        bottom: auto;
        justify-content: center;
        width: max-content;
        margin: 0 auto;
    }

    .jp-trust-mini-bar {
        margin-top: 38px;
        grid-template-columns: 1fr 1fr;
        padding: 18px;
        border-radius: 22px;
    }

    .jp-trust-mini-bar div {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 12px;
        text-align: center;
    }

    .jp-trust-mini-bar div:nth-child(3),
    .jp-trust-mini-bar div:nth-child(4) {
        border-bottom: none;
    }

    .jp-trust-mini-bar strong {
        font-size: 25px;
    }

    .jp-trust-mini-bar span {
        font-size: 12.5px;
    }
}

@media (max-width: 420px) {
    .jp-trust-mini-bar {
        grid-template-columns: 1fr;
    }

    .jp-trust-mini-bar div:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}


/* ===== JALPOOREE BUSINESS NETWORK SECTION ===== */

.jp-business-network {
    padding: 80px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(224, 161, 43, 0.18), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(183, 47, 32, 0.12), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, #fff8ef 58%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.jp-bn-bg-word {
    position: absolute;
    left: 50%;
    top: 42px;
    transform: translateX(-50%);
    font-family: "Fraunces", serif;
    font-size: 118px;
    font-weight: 800;
    letter-spacing: 10px;
    color: rgba(183, 47, 32, 0.035);
    white-space: nowrap;
    pointer-events: none;
}

.jp-bn-head {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.jp-bn-head span {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #6f4591;
    border: 1px solid rgba(224, 161, 43, 0.32);
    box-shadow: 0 12px 35px rgba(91, 38, 18, 0.08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 17px;
}

.jp-bn-head h2 {
    font-family: "Fraunces", serif;
    font-size: 40px;
    line-height: 1.12;
    color: #ffffff;
    margin: 0 0 16px;
}

.jp-bn-head p {
    max-width: 690px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}

.jp-bn-layout {
    display: grid;
    grid-template-columns: 0.9fr 70px 1.1fr;
    gap: 26px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT PRODUCT VISUAL */

.jp-bn-product {
    min-height: 560px;
    position: relative;
}

.jp-bn-product-card {
    width: 360px;
    min-height: 460px;
    border-radius: 38px;
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 30px 80px rgba(91, 38, 18, 0.16);
    border: 1px solid rgba(224, 161, 43, 0.22);
    position: absolute;
    left: 40px;
    top: 35px;
    overflow: hidden;
}

.jp-bn-product-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 30px;

    pointer-events: none;
    z-index: 2;
}

.jp-bn-product-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.jp-bn-label {
    margin-top: 18px;
    padding: 18px;
    border-radius: 24px;
    background: #6f4591;
    color: #ffffff;
}

.jp-bn-label strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
}

.jp-bn-label span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.jp-bn-small-img {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 28px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(91, 38, 18, 0.16);
    border: 1px solid rgba(224, 161, 43, 0.25);
}

.jp-bn-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.jp-bn-small-img.img-one {
    right: 22px;
    top: 24px;
    transform: rotate(7deg);
}

.jp-bn-small-img.img-two {
    right: 8px;
    bottom: 55px;
    transform: rotate(-8deg);
}

/* CENTER LINE */

.jp-bn-line {
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jp-bn-line span {
    width: 2px;
    height: 100%;
    background: #ffffff;
    position: relative;
}

.jp-bn-line span::before,
.jp-bn-line span::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #6f4591;
    border: 5px solid #fff2df;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(183, 47, 32, 0.10);
}

.jp-bn-line span::before {
    top: 72px;
}

.jp-bn-line span::after {
    bottom: 72px;
}

/* RIGHT LIST */

.jp-bn-list {
    display: grid;
    gap: 18px;
}

.jp-bn-item {
    display: grid;

    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(224, 161, 43, 0.22);
    box-shadow: 0 18px 45px rgba(91, 38, 18, 0.09);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.jp-bn-item::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    right: -55px;
    top: -55px;

    transition: all 0.35s ease;
}

.jp-bn-item:hover {
    transform: translateX(8px);
    border-color: rgba(183, 47, 32, 0.28);
    box-shadow: 0 25px 60px rgba(183, 47, 32, 0.14);
}

.jp-bn-item:hover::before {
    transform: scale(1.35);
}

.jp-bn-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background:#6f4591;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 15px 34px rgba(183, 47, 32, 0.24);
    position: relative;
    z-index: 2;
}

.jp-bn-item small {
    display: block;
    color: #6f4591;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-bottom: 6px;
    position: relative;
    z-index: 2;
}

.jp-bn-item h3 {
    font-family: "Fraunces", serif;
    font-size: 19px;
    color: #32160d;
    margin: 0 0 6px;
    position: relative;
    z-index: 2;
}

.jp-bn-item p {
    font-size: 14.4px;
    line-height: 1.6;
    color: #765846;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1199px) {
    .jp-bn-layout {
        grid-template-columns: 1fr;
    }

    .jp-bn-line {
        display: none;
    }

    .jp-bn-product {
        min-height: 520px;
        max-width: 620px;
        margin: 0 auto;
        width: 100%;
    }

    .jp-bn-head h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .jp-business-network {
        padding: 72px 0;
    }

    .jp-bn-bg-word {
        font-size: 48px;
        letter-spacing: 4px;
        top: 32px;
    }

    .jp-bn-head {
        margin-bottom: 36px;
    }

    .jp-bn-head h2 {
        font-size: 31px;
    }

    .jp-bn-head p {
        font-size: 14.5px;
    }

    .jp-bn-product {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .jp-bn-product-card,
    .jp-bn-small-img,
    .jp-bn-small-img.img-one,
    .jp-bn-small-img.img-two {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .jp-bn-product-card {
        width: 100%;
        min-height: auto;
        border-radius: 28px;
    }

    .jp-bn-product-card img {
        height: 250px;
        border-radius: 22px;
    }

    .jp-bn-small-img {
        display: none;
    }

    .jp-bn-item {
        grid-template-columns: 58px 1fr;
        gap: 14px;
        padding: 18px;
        border-radius: 22px;
    }

    .jp-bn-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        border-radius: 18px;
    }

    .jp-bn-item h3 {
        font-size: 20px;
    }

    .jp-bn-item p {
        font-size: 13.5px;
    }
}


/* ===== WHY CHOOSE JALPOOREE ===== */

.jp-why-choose {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Aa section no alag background */
.jp-why-bg-gold {
    background:#ff8d11;
}

.jp-why-bg-text {
    position: absolute;
    right: -10px;
    top: 45px;
    font-family: "Fraunces", serif;
    font-size: 125px;
    font-weight: 800;
    letter-spacing: 10px;
    color: rgba(183, 47, 32, 0.045);
    pointer-events: none;
}

.jp-why-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.jp-why-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 21px;
    border-radius: 50px;
    background: #ffffff;
    color: #b72f20;
    border: 1px solid rgba(224, 161, 43, 0.32);
    box-shadow: 0 12px 35px rgba(91, 38, 18, 0.08);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.jp-why-kicker i {
    color: #e0a12b;
}

.jp-why-content h2 {
    font-family: "Fraunces", serif;
    font-size: 40px;
    line-height: 1.08;
    color: #32160d;
    margin: 0 0 20px;
    letter-spacing: -0.6px;
}

.jp-why-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #000000;
    margin: 0 0 28px;
}

.jp-why-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.jp-why-highlight div {
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.22);
    box-shadow: 0 16px 40px rgba(91, 38, 18, 0.08);
}

.jp-why-highlight strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 34px;
    color: #b72f20;
    line-height: 1;
    margin-bottom: 6px;
}

.jp-why-highlight span {
    display: block;
    color: #765846;
    font-size: 14px;
    font-weight: 600;
}

/* RIGHT CARDS */

.jp-why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.jp-why-card {
    min-height: 230px;
    padding: 28px 24px 25px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 242, 0.96));
    border: 1px solid rgba(224, 161, 43, 0.24);
    box-shadow: 0 18px 45px rgba(91, 38, 18, 0.09);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.jp-why-card::before {
    content: "";
    position: absolute;
    width: 118px;
    height: 118px;
    right: -58px;
    top: -58px;
    border-radius: 50%;

    transition: all 0.35s ease;
}

.jp-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(183, 47, 32, 0.28);
    box-shadow: 0 28px 65px rgba(183, 47, 32, 0.15);
    background: linear-gradient(180deg, #fffdf8, #fff3e3);
}

.jp-why-card:hover::before {
    transform: scale(1.45);
}

.jp-why-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    background:#ff8d11;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 15px 34px rgba(183, 47, 32, 0.25);
    margin-bottom: 21px;
    position: relative;
    z-index: 2;
}

.jp-why-card h3 {
    font-family: "Fraunces", serif;
    font-size: 21px;
    line-height: 1.3;
    color: #32160d;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
}

.jp-why-card p {
    font-size: 14.2px;
    line-height: 1.68;
    color: #765846;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1199px) {
    .jp-why-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .jp-why-content {
        text-align: center;
        max-width: 780px;
        margin: 0 auto;
    }

    .jp-why-content h2 {
        font-size: 42px;
    }

    .jp-why-highlight {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .jp-why-choose {
        padding: 72px 0;
    }

    .jp-why-bg-text {
        font-size: 55px;
        letter-spacing: 4px;
        top: 30px;
    }

    .jp-why-content h2 {
        font-size: 32px;
    }

    .jp-why-content p {
        font-size: 14.5px;
    }

    .jp-why-highlight {
        grid-template-columns: 1fr;
    }

    .jp-why-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jp-why-card {
        min-height: auto;
        padding: 26px 22px 24px;
        border-radius: 24px;
    }

    .jp-why-icon {
        width: 60px;
        height: 60px;
        font-size: 23px;
        border-radius: 19px;
    }

    .jp-why-card h3 {
        font-size: 20px;
    }
}



/* ===== MANUFACTURING SNAPSHOT - PREMIUM SEPARATE SECTION ===== */

.jp-manufacturing {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #411f1e;
}

/* Completely different dark bg so section merge na thay */
.jp-mfg-bg {
    background:#6f4591;
}

/* Top divider */
.jp-mfg-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 10px;
    background:#ffffff;
    z-index: 1;
}

/* Bottom divider */
.jp-mfg-bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: #ffffff;
    z-index: 1;
}

.jp-trust-experience::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
}

.jp-trust-experience::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
}

.as-product-slider-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
}



.jp-mfg-bg-word {
    position: absolute;
    left: 50%;
    top: 58px;
    transform: translateX(-50%);
    font-family: "Fraunces", serif;
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 9px;
    color: rgba(255, 255, 255, 0.045);
    pointer-events: none;
    z-index: -1;
    white-space: nowrap;
    text-align: center;
}

/* Header */
.jp-mfg-head {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.jp-mfg-head span {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffd97a;
    border: 1px solid rgba(224, 161, 43, 0.45);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    backdrop-filter: blur(8px);
}

.jp-mfg-head h2 {
    font-family: "Fraunces", serif;
    font-size: 40px;
    line-height: 1.12;
    color: #ffffff;
    margin: 0 0 15px;
}

.jp-mfg-head p {
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    max-width: 700px;
    margin: 0 auto;
}

/* Main white card */
.jp-mfg-card {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 18px;
    padding: 16px;
    border-radius: 30px;
    background: #fffaf3;
    border: 1px solid rgba(224, 161, 43, 0.42);
    box-shadow: 0 36px 95px rgba(0, 0, 0, 0.28);
    position: relative;
    z-index: 2;
}

/* Left video */
.jp-mfg-visual {
    min-height: 440px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #32160d;
}

.jp-mfg-visual iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
    display: block;
}

.jp-mfg-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(50, 22, 13, 0.60));
    pointer-events: none;
}

.jp-mfg-video-tag {
    position: absolute;
    left: 22px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 50px;
    background: rgba(50, 22, 13, 0.82);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.jp-mfg-video-tag i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0a12b;
    color: #32160d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* Right content */
.jp-mfg-info {
    display: grid;
    gap: 14px;
}

.jp-mfg-panel {
    border-radius: 24px;
    background: linear-gradient(180deg, #fffdf8, #ffffff);
    border: 1px solid rgba(224, 161, 43, 0.26);
    padding: 18px;
    box-shadow: 0 12px 28px rgba(91, 38, 18, 0.06);
}

.jp-mfg-panel h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: "Fraunces", serif;
    color: #32160d;
    font-size: 20px;
    margin: 0 0 15px;
}

.jp-mfg-panel h3 i {
    color: #411f1e;
}

/* Process steps */
.jp-mfg-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(183, 47, 32, 0.09);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.jp-mfg-step:hover {
    transform: translateX(4px);
    border-color: rgba(183, 47, 32, 0.22);
    box-shadow: 0 12px 26px rgba(91, 38, 18, 0.08);
}

.jp-mfg-step:last-child {
    margin-bottom: 0;
}

.jp-step-no {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #411f1e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.jp-mfg-step h4 {
    font-size: 15px;
    color: #32160d;
    margin: 0 0 4px;
    font-weight: 800;
}

.jp-mfg-step p {
    font-size: 12.8px;
    color: #765846;
    line-height: 1.45;
    margin: 0;
}

/* Metrics */
.jp-mfg-metric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
}

.jp-mfg-circle {
    width: 138px;
    height: 138px;
    margin: 0 auto;
    border-radius: 50%;
    background:
        radial-gradient(circle, #ffffff 58%, transparent 59%),
        conic-gradient(#20a45a 0deg 356deg, #e9eadf 356deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: inset 0 0 0 8px #fff8ef;
}

.jp-circle-value {
    font-family: "Fraunces", serif;
    font-size: 27px;
    font-weight: 800;
    color: #20a45a;
    line-height: 1;
}

.jp-mfg-circle span {
    text-align: center;
    font-size: 10.5px;
    line-height: 1.25;
    color: #765846;
    margin-top: 6px;
    font-weight: 700;
}

.jp-mfg-bars {
    text-align: center;
}

.jp-mfg-bars strong {
    display: block;
    font-family: "Fraunces", serif;
    color: #32160d;
    font-size: 26px;
    line-height: 1;
}

.jp-mfg-bars span {
    display: block;
    font-size: 12px;
    color: #765846;
    margin: 5px 0 14px;
    font-weight: 700;
}

.bar-line {
    height: 10px;
    border-radius: 30px;
    background:#411f1e;
    margin: 7px auto;
}

.bar-line.big {
    width: 86%;
}

.bar-line.medium {
    width: 66%;
}

.bar-line.small {
    width: 44%;
}

.jp-mfg-bars p {
    margin: 12px 0 0;
    color: #765846;
    font-size: 12px;
    font-weight: 700;
}

/* Buttons */
.jp-mfg-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.jp-mfg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
    transition: all 0.35s ease;
}

.jp-mfg-btn:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

.jp-mfg-btn.green {
    background: linear-gradient(135deg, #158a49, #35b36d);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.jp-mfg-btn.blue {
    background: linear-gradient(135deg, #1f4fa8, #4d82df);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .jp-manufacturing {
        padding: 90px 0;
    }

    .jp-mfg-card {
        grid-template-columns: 1fr;
    }

    .jp-mfg-head h2 {
        font-size: 38px;
    }

    .jp-mfg-bg-word {
        font-size: 78px;
        right: -12px;
    }
}

@media (max-width: 575px) {
    .jp-manufacturing {
        padding: 76px 0;
    }

    .jp-mfg-bg::before,
    .jp-mfg-bg::after {
        height: 9px;
    }

    .jp-mfg-bg-word {
        font-size: 48px;
        letter-spacing: 4px;
        top: 38px;
    }

    .jp-mfg-head {
        margin-bottom: 32px;
    }

    .jp-mfg-head h2 {
        font-size: 30px;
    }

    .jp-mfg-head p {
        font-size: 14px;
    }

    .jp-mfg-card {
        padding: 12px;
        border-radius: 22px;
    }

    .jp-mfg-visual,
    .jp-mfg-visual iframe {
        min-height: 260px;
    }

    .jp-mfg-video-tag {
        left: 14px;
        bottom: 14px;
        font-size: 12px;
        padding: 8px 12px;
    }

    .jp-mfg-metric-grid {
        grid-template-columns: 1fr;
    }

    .jp-mfg-circle {
        width: 130px;
        height: 130px;
    }

    .jp-mfg-actions {
        flex-direction: column;
    }

    .jp-mfg-btn {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .jp-mfg-bg-word {
        font-size: 78px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

@media (max-width: 575px) {
    .jp-mfg-bg-word {
        font-size: 48px;
        letter-spacing: 4px;
        top: 38px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}


/* ===== JALPOOREE TESTIMONIAL ROTATION SECTION ===== */

.jp-rot-testimonials {
    padding: 80px 0;
    background:#ffbf31;
    position: relative;
    overflow: hidden;
}


.jp-rot-head {
    max-width: 790px;
    margin: 0 auto 46px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.jp-rot-head span {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #b72f20;
    border: 1px solid rgba(224, 161, 43, 0.35);
    box-shadow: 0 12px 35px rgba(91, 38, 18, 0.08);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.jp-rot-head h2 {
    font-family: "Fraunces", serif;
    font-size: 40px;
    line-height: 1.12;
    color: #32160d;
    margin: 0 0 15px;
}

.jp-rot-head p {
    max-width: 680px;
    margin: 0 auto;
    color: #765846;
    font-size: 15.5px;
    line-height: 1.8;
}

/* Slider */
.jp-rot-slider-box {
    position: relative;
    z-index: 2;
}

.jp-rot-window {
    width: 100%;
    overflow: hidden;
    padding: 8px 4px 0px;
}

.jp-rot-track {
    display: flex;
    gap: 22px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.jp-rot-card {
    flex: 0 0 calc((100% - 44px) / 3);
    min-height: 275px;
    padding: 30px 26px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.26);

    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}


.jp-rot-card::after {
    content: "\f10e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 26px;
    bottom: 20px;
    font-size: 52px;
    color: rgba(183, 47, 32, 0.08);
}

.jp-rot-card.is-active {
    background:
        radial-gradient(circle at top right, rgba(224, 161, 43, 0.16), transparent 35%),
        linear-gradient(135deg, #32160d, #7b281a);
    border-color: rgba(224, 161, 43, 0.40);

    transform: translateY(-8px);
}

.jp-rot-card.is-active h3,
.jp-rot-card.is-active p {
    color: #ffffff;
}

.jp-rot-card.is-active .jp-rot-top span {
    color: #ffd97a;
}

.jp-rot-card.is-active::after {
    color: rgba(255, 255, 255, 0.12);
}

.jp-rot-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.jp-rot-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background:#ffbf31;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    box-shadow: 0 14px 32px rgba(183, 47, 32, 0.22);
    flex-shrink: 0;
}

.jp-rot-top h3 {
    font-family: "Fraunces", serif;
    font-size: 20px;
    color: #32160d;
    margin: 0 0 4px;
}

.jp-rot-top span {
    display: block;
    color: #b72f20;
    font-size: 13px;
    font-weight: 800;
}

.jp-rot-stars {
    color: #e0a12b;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.jp-rot-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f4232;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Arrows */
.jp-rot-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: #32160d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 16px 35px rgba(50, 22, 13, 0.22);
    z-index: 10;
    transition: all 0.35s ease;
}

.jp-rot-arrow:hover {
    background: #b72f20;
    transform: translateY(-50%) scale(1.08);
}

.jp-rot-prev {
    left: -18px;
}

.jp-rot-next {
    right: -18px;
}

/* Product Strip */
.jp-rot-product-strip {
    margin-top: 28px;
    padding: 18px 22px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(50, 22, 13, 0.96), rgba(123, 40, 26, 0.96));
    border: 1px solid rgba(224, 161, 43, 0.32);
    box-shadow: 0 28px 70px rgba(50, 22, 13, 0.20);
    display: grid;
    grid-template-columns: 105px 1fr auto;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.jp-rot-product-strip::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    top: -120px;
    border-radius: 50%;
    background: rgba(224, 161, 43, 0.13);
}

.jp-rot-product-img {
    width: 105px;
    height: 105px;
    border-radius: 24px;
    padding: 8px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.jp-rot-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.jp-rot-product-content {
    position: relative;
    z-index: 2;
}

.jp-rot-product-content span {
    display: block;
    color: #ffd97a;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.jp-rot-product-content h3 {
    font-family: "Fraunces", serif;
    font-size: 26px;
    color: #ffffff;
    margin: 0 0 6px;
}

.jp-rot-product-content p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.jp-rot-product-strip .main-btn {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .jp-rot-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }

    .jp-rot-head h2 {
        font-size: 38px;
    }

    .jp-rot-testimonials::before {
        font-size: 76px;
    }

    .jp-rot-product-strip {
        grid-template-columns: 90px 1fr;
    }

    .jp-rot-product-strip .main-btn {
        grid-column: 1 / -1;
        width: max-content;
    }
}

@media (max-width: 575px) {
    .jp-rot-testimonials {
        padding: 74px 0;
    }

    .jp-rot-testimonials::before {
        font-size: 45px;
        letter-spacing: 4px;
        top: 35px;
    }

    .jp-rot-head {
        margin-bottom: 32px;
    }

    .jp-rot-head h2 {
        font-size: 30px;
    }

    .jp-rot-head p {
        font-size: 14px;
    }

    .jp-rot-card {
        flex: 0 0 100%;
        min-height: auto;
        padding: 26px 22px;
        border-radius: 24px;
    }

    .jp-rot-arrow {
        width: 44px;
        height: 44px;
        top: auto;
        bottom: -58px;
        transform: none;
    }

    .jp-rot-arrow:hover {
        transform: scale(1.05);
    }

    .jp-rot-prev {
        left: calc(50% - 50px);
    }

    .jp-rot-next {
        right: calc(50% - 50px);
    }

    .jp-rot-product-strip {
        margin-top: 78px;
        grid-template-columns: 1fr;
        text-align: center;
        padding: 22px;
    }

    .jp-rot-product-img {
        margin: 0 auto;
    }

    .jp-rot-product-content h3 {
        font-size: 23px;
    }

    .jp-rot-product-strip .main-btn {
        width: 100%;
    }
}



/* ===== JALPOOREE QUOTE FORM SECTION ===== */

.jp-quote-section {
    padding: 80px 0;
    background:#033493;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.jp-quote-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background:#ffffff;
    z-index: 1;
}

.jp-blog-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
}

.jp-manufacturing::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
}

.jp-rot-testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
}

.jp-quote-bg-word {
    position: absolute;
    left: 50%;
    top: 48px;
    transform: translateX(-50%);
    font-family: "Fraunces", serif;
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.045);
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
}

.jp-quote-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */

.jp-quote-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffd97a;
    border: 1px solid rgba(224, 161, 43, 0.45);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.jp-quote-content h2 {
    font-family: "Fraunces", serif;
    font-size: 40px;
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 20px;
}

.jp-quote-content p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 26px;
}

.jp-quote-points {
    display: grid;
    gap: 13px;
    margin-bottom: 30px;
}

.jp-quote-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 600;
}

.jp-quote-points i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffd97a;
    color: #32160d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.jp-quote-contact-box {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(224, 161, 43, 0.35);
    backdrop-filter: blur(10px);
}

.jp-quote-contact-box i {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: #033493;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jp-quote-contact-box span {
    display: block;
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    font-weight: 700;
}

.jp-quote-contact-box strong {
    display: block;
    color: #ffffff;
    font-family: "Fraunces", serif;
    font-size: 24px;
}

/* Form Box */

.jp-quote-form-box {
    padding: 34px;
    border-radius: 34px;
    background: #fffaf3;
    border: 1px solid rgba(224, 161, 43, 0.42);
    box-shadow: 0 36px 95px rgba(0, 0, 0, 0.28);
    position: relative;
    overflow: hidden;
}

.jp-quote-form-box::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -75px;
    top: -75px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183, 47, 32, 0.12), rgba(224, 161, 43, 0.20));
}

.jp-form-head {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
}

.jp-form-head span {
    display: inline-block;
    color: #000000;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    margin-bottom: 7px;
}

.jp-form-head h3 {
    font-family: "Fraunces", serif;
    color: #000000;
    font-size: 32px;
    margin: 0;
}

.jp-quote-form {
    position: relative;
    z-index: 2;
}

.jp-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.jp-form-group {
    margin-bottom: 16px;
}

.jp-form-group label {
    display: block;
    color: #000000;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.jp-form-group input,
.jp-form-group select,
.jp-form-group textarea {
    width: 100%;
    border: 1px solid rgba(183, 47, 32, 0.14);
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 16px;
    color: #5f4232;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.jp-form-group textarea {
    resize: none;
}

.jp-form-group input:focus,
.jp-form-group select:focus,
.jp-form-group textarea:focus {
    border-color: #b72f20;
    box-shadow: 0 0 0 4px rgba(183, 47, 32, 0.08);
}

.jp-quote-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 15px 24px;
    border-radius: 50px;
    background:#033493;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 18px 38px rgba(183, 47, 32, 0.28);
    transition: all 0.35s ease;
}

.jp-quote-submit:hover {
    transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .jp-quote-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jp-quote-content {
        text-align: center;
    }

    .jp-quote-content h2 {
        font-size: 40px;
    }

    .jp-quote-points {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .jp-quote-bg-word {
        font-size: 76px;
    }
}

@media (max-width: 575px) {
    .jp-quote-section {
        padding: 76px 0;
    }

    .jp-quote-bg-word {
        font-size: 44px;
        letter-spacing: 4px;
        top: 38px;
    }

    .jp-quote-content h2 {
        font-size: 31px;
    }

    .jp-quote-content p {
        font-size: 14.5px;
    }

    .jp-quote-form-box {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .jp-form-head h3 {
        font-size: 26px;
    }

    .jp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .jp-quote-contact-box {
        width: 100%;
        justify-content: center;
    }
}



/* ===== JALPOOREE BLOG SECTION ===== */

.jp-blog-section {
    padding: 80px 0;
    background:#910355;
    position: relative;
    overflow: hidden;
}



.jp-blog-bg-word {
    position: absolute;
    left: 50%;
    top: 42px;
    transform: translateX(-50%);
    font-family: "Fraunces", serif;
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 10px;
    color: rgba(183, 47, 32, 0.035);
    white-space: nowrap;
    pointer-events: none;
}

.jp-blog-head {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.jp-blog-head span {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #910355;
    border: 1px solid rgba(224, 161, 43, 0.35);
    box-shadow: 0 12px 35px rgba(91, 38, 18, 0.08);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.jp-blog-head h2 {
    font-family: "Fraunces", serif;
    font-size: 40px;
    line-height: 1.12;
    color: #ffffff;
    margin: 0 0 15px;
}

.jp-blog-head p {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 15.5px;
    line-height: 1.8;
}

/* Blog Grid */
.jp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.jp-blog-card {
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.26);
    box-shadow: 0 22px 60px rgba(91, 38, 18, 0.11);
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
}

.jp-blog-card:hover,
.jp-blog-card.featured {
    transform: translateY(-8px);
    border-color: rgba(183, 47, 32, 0.28);
    box-shadow: 0 32px 78px rgba(183, 47, 32, 0.16);
}

.jp-blog-img {
    height: 245px;
    position: relative;
    overflow: hidden;
    background: #fff2df;
}

.jp-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.45s ease;
}

.jp-blog-card:hover .jp-blog-img img {
    transform: scale(1.08);
}

.jp-blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(50, 22, 13, 0.42));
}

.jp-blog-date {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background:#910355;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 34px rgba(183, 47, 32, 0.28);
    z-index: 2;
}

.jp-blog-date strong {
    font-family: "Fraunces", serif;
    font-size: 25px;
    line-height: 1;
}

.jp-blog-date span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.jp-blog-content {
    padding: 26px 24px 28px;
    position: relative;
}

.jp-blog-content::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -60px;
    top: -55px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183, 47, 32, 0.08), rgba(224, 161, 43, 0.14));
}

.jp-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 13px;
    position: relative;
    z-index: 2;
}

.jp-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #910355;
    font-size: 12.5px;
    font-weight: 800;
}

.jp-blog-meta i {
    color: #e0a12b;
}

.jp-blog-content h3 {
    font-family: "Fraunces", serif;
    font-size: 23px;
    line-height: 1.28;
    color: #32160d;
    margin: 0 0 12px;
    position: relative;
    z-index: 2;
}

.jp-blog-content h3 a {
    color: inherit;
    text-decoration: none;
}

.jp-blog-content h3 a:hover {
    color: #b72f20;
}

.jp-blog-content p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #765846;
    margin: 0 0 18px;
    position: relative;
    z-index: 2;
}

.jp-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #910355;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.jp-blog-link:hover {
    gap: 12px;
    color: #32160d;
}

.jp-blog-action {
    margin-top: 36px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .jp-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-blog-head h2 {
        font-size: 38px;
    }

    .jp-blog-bg-word {
        font-size: 78px;
    }
}

@media (max-width: 575px) {
    .jp-blog-section {
        padding: 74px 0;
    }

    .jp-blog-bg-word {
        font-size: 48px;
        letter-spacing: 4px;
        top: 36px;
    }

    .jp-blog-head {
        margin-bottom: 34px;
    }

    .jp-blog-head h2 {
        font-size: 30px;
    }

    .jp-blog-head p {
        font-size: 14px;
    }

    .jp-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jp-blog-card {
        border-radius: 24px;
    }

    .jp-blog-img {
        height: 220px;
    }

    .jp-blog-content {
        padding: 24px 20px 26px;
    }

    .jp-blog-content h3 {
        font-size: 21px;
    }

    .jp-blog-action .main-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ===== JALPOOREE FAQ SECTION ===== */

.jp-faq-section {
    padding: 80px 0;
    background:#8cbc44;
    position: relative;
    overflow: hidden;
}

/* FAQ top divider */
.jp-faq-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    left: 0;
    top: 0;
    background: #ffffff;
    z-index: 1;
}

/* FAQ side circle */
.jp-faq-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -160px;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(183, 47, 32, 0.055);
    z-index: 0;
}

.jp-faq-bg-word {
    position: absolute;
    left: 50%;
    top: 42px;
    transform: translateX(-50%);
    font-family: "Fraunces", serif;
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 10px;
    color: rgba(183, 47, 32, 0.04) !important;
    white-space: nowrap;
    pointer-events: none;
}

.jp-faq-head {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.jp-faq-head span {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #b72f20;
    border: 1px solid rgba(224, 161, 43, 0.35);
    box-shadow: 0 12px 35px rgba(91, 38, 18, 0.08);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.jp-faq-head h2 {
    font-family: "Fraunces", serif;
    font-size: 40px;
    line-height: 1.12;
    color: #32160d;
    margin: 0 0 15px;
}

.jp-faq-head p {
    max-width: 700px;
    margin: 0 auto;
    color: #000000;
    font-size: 15.5px;
    line-height: 1.8;
}

/* Layout */

.jp-faq-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 28px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Left Card */

.jp-faq-side-card {
    position: sticky;
    top: 100px;
    padding: 34px 28px;
    border-radius: 32px;
    background:rgb(94 148 12);
    border: 1px solid rgba(224, 161, 43, 0.38);
    box-shadow: 0 28px 75px rgba(50, 22, 13, 0.20);
    overflow: hidden;
}


.jp-faq-side-icon {
    width: 78px;
    height: 78px;
    border-radius: 25px;
    background: #8cbc44;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 18px 38px rgba(183, 47, 32, 0.25);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.jp-faq-side-card h3 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 31px;
    line-height: 1.2;
    margin: 0 0 14px;
    position: relative;
    z-index: 2;
}

.jp-faq-side-card p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0 0 24px;
    position: relative;
    z-index: 2;
}

.jp-faq-side-card .main-btn {
    position: relative;
    z-index: 2;
}

/* FAQ List */

.jp-faq-list {
    display: grid;
    gap: 15px;
}

.jp-faq-item {
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.26);
    box-shadow: 0 18px 45px rgba(91, 38, 18, 0.09);
    overflow: hidden;
    transition: all 0.35s ease;
}

.jp-faq-item.active {
    border-color: rgba(183, 47, 32, 0.28);
    box-shadow: 0 26px 65px rgba(183, 47, 32, 0.14);
}

.jp-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: left;
}

.jp-faq-question span {
    font-family: "Fraunces", serif;
    font-size: 21px;
    line-height: 1.35;
    color: #32160d;
    font-weight: 700;
}

.jp-faq-question i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #cbe99e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.jp-faq-item.active .jp-faq-question i {
    background: #8cbc44;
    color: #ffffff;
    transform: rotate(45deg);
}

.jp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.jp-faq-answer p {
    padding: 0 24px 22px;
    margin: 0;
    color: #765846;
    font-size: 14.7px;
    line-height: 1.75;
}

.jp-faq-item.active .jp-faq-answer {
    max-height: 180px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .jp-faq-layout {
        grid-template-columns: 1fr;
    }

    .jp-faq-side-card {
        position: relative;
        top: auto;
    }

    .jp-faq-head h2 {
        font-size: 38px;
    }

    .jp-faq-bg-word {
        font-size: 78px;
    }
}

@media (max-width: 575px) {
    .jp-faq-section {
        padding: 74px 0;
    }

    .jp-faq-bg-word {
        font-size: 48px;
        letter-spacing: 4px;
        top: 36px;
    }

    .jp-faq-head {
        margin-bottom: 34px;
    }

    .jp-faq-head h2 {
        font-size: 30px;
    }

    .jp-faq-head p {
        font-size: 14px;
    }

    .jp-faq-side-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .jp-faq-side-card h3 {
        font-size: 26px;
    }

    .jp-faq-question {
        padding: 18px 18px;
        gap: 14px;
    }

    .jp-faq-question span {
        font-size: 18px;
    }

    .jp-faq-question i {
        width: 34px;
        height: 34px;
    }

    .jp-faq-answer p {
        padding: 0 18px 18px;
        font-size: 14px;
    }
}


/* ===== JALPOOREE RESPONSIVE INNER BANNER ===== */

.jp-inner-banner {
    min-height: 390px;
    padding: 125px 0 115px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    background: #32160d;
}

/* Image HTML ma che, so every page ma alag image muki sakso */
.jp-inner-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    transform: scale(1.02);
}

/* Theme overlay */
.jp-inner-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 24%, rgba(224, 161, 43, 0.34), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(183, 47, 32, 0.30), transparent 30%),
        linear-gradient(135deg, rgba(50, 22, 13, 0.72), rgba(91, 28, 18, 0.72), rgba(143, 42, 28, 0.68));
    z-index: 1;
}

/* Premium golden bottom line */
.jp-inner-banner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: #ffffff;
    z-index: 3;
}

/* Decorative shapes */
.jp-inner-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.jp-inner-shape-1 {
    width: 260px;
    height: 260px;
    border: 1px solid rgba(224, 161, 43, 0.34);
    right: -90px;
    top: -80px;
}

.jp-inner-shape-2 {
    width: 160px;
    height: 160px;
    background: rgba(224, 161, 43, 0.12);
    left: -55px;
    bottom: 35px;
}

/* Content */
.jp-inner-content {
    position: relative;
    z-index: 4;
    max-width: 850px;
    margin: 0 auto;
}

.jp-inner-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 20px;

    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.jp-inner-breadcrumb a {
    color: #ffd97a;
    text-decoration: none;
}

.jp-inner-breadcrumb a:hover {
    color: #ffffff;
}

.jp-inner-breadcrumb i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.70);
}

.jp-inner-content h1 {
    font-family: "Fraunces", serif;
    font-size: 60px;
    line-height: 1.08;
    color: #ffffff;
    margin: 0 0 14px;
    text-shadow: 0 14px 35px rgba(0, 0, 0, 0.34);
}

.jp-inner-content p {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.75;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 991px) {
    .jp-inner-banner {
        min-height: 340px;
        padding: 110px 0 95px;
    }

    .jp-inner-content h1 {
        font-size: 48px;
    }

    .jp-inner-content p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .jp-inner-banner {
        min-height: 300px;
        padding: 90px 0 78px;
    }

    .jp-inner-banner-img {
        object-position: center;
    }

    .jp-inner-banner::after {
        height: 8px;
    }

    .jp-inner-shape-1 {
        width: 170px;
        height: 170px;
        right: -80px;
        top: -60px;
    }

    .jp-inner-shape-2 {
        width: 105px;
        height: 105px;
        left: -45px;
        bottom: 25px;
    }

    .jp-inner-breadcrumb {
        font-size: 12.5px;
        padding: 8px 15px;
        gap: 8px;
        margin-bottom: 14px;
    }

    .jp-inner-content h1 {
        font-size: 36px;
    }

    .jp-inner-content p {
        font-size: 14px;
        line-height: 1.65;
    }
}


/* ===== JALPOOREE COMPANY EXPERIENCE ===== */

.jp-company-experience {
    padding: 105px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(224, 161, 43, 0.20), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(183, 47, 32, 0.14), transparent 28%),
        linear-gradient(135deg, #fff8ef 0%, #ffffff 48%, #fff1de 100%);
    position: relative;
    overflow: hidden;
}

.jp-cx-bg-word {
    position: absolute;
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
    font-family: "Fraunces", serif;
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 12px;
    color: rgba(183, 47, 32, 0.035);
    pointer-events: none;
    white-space: nowrap;
}

.jp-cx-head {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.jp-cx-head span {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #b72f20;
    border: 1px solid rgba(224, 161, 43, 0.35);
    box-shadow: 0 12px 35px rgba(91, 38, 18, 0.08);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.jp-cx-head h2 {
    font-family: "Fraunces", serif;
    font-size: 52px;
    line-height: 1.1;
    color: #32160d;
    margin: 0 0 15px;
}

.jp-cx-head p {
    max-width: 700px;
    margin: 0 auto;
    color: #765846;
    font-size: 16px;
    line-height: 1.8;
}

/* Shell */
.jp-cx-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    padding: 18px;
    border-radius: 42px;
    background:
        radial-gradient(circle at top left, rgba(224, 161, 43, 0.14), transparent 35%),
        linear-gradient(135deg, rgba(50, 22, 13, 0.98), rgba(123, 40, 26, 0.98));
    border: 1px solid rgba(224, 161, 43, 0.38);
    box-shadow: 0 36px 95px rgba(50, 22, 13, 0.22);
}

/* Nav */
.jp-cx-nav {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 12px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(224, 161, 43, 0.22);
}

.jp-cx-nav-btn {
    border: none;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    border-radius: 22px;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    text-align: left;
    transition: all 0.3s ease;
}

.jp-cx-nav-btn i {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd97a;
}

.jp-cx-nav-btn:hover,
.jp-cx-nav-btn.active {
    background: #fff8ef;
    color: #32160d;
}

.jp-cx-nav-btn.active i,
.jp-cx-nav-btn:hover i {
    background: linear-gradient(135deg, #b72f20, #e0a12b);
    color: #ffffff;
}

/* Content */
.jp-cx-content {
    min-height: 640px;
    border-radius: 32px;
    background: #fffaf3;
    border: 1px solid rgba(224, 161, 43, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.60);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.jp-cx-panel {
    display: none;
    animation: jpCxFade 0.45s ease;
}

.jp-cx-panel.active {
    display: block;
}

@keyframes jpCxFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jp-cx-kicker {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #ffffff;
    color: #b72f20;
    border: 1px solid rgba(224, 161, 43, 0.30);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.jp-cx-text h3,
.jp-cx-big-card h3,
.jp-cx-final h3 {
    font-family: "Fraunces", serif;
    font-size: 42px;
    line-height: 1.12;
    color: #32160d;
    margin: 0 0 16px;
}

.jp-cx-text p,
.jp-cx-big-card p,
.jp-cx-final p {
    color: #765846;
    font-size: 15.5px;
    line-height: 1.8;
    margin: 0 0 16px;
}

/* Story */
.jp-cx-story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 35px;
    align-items: center;
}

.jp-cx-mini-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.jp-cx-mini-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a2819;
    font-weight: 700;
}

.jp-cx-mini-list i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b72f20, #e0a12b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.jp-cx-image-stack {
    min-height: 475px;
    position: relative;
}

.jp-cx-image-stack img {
    object-fit: cover;
    display: block;
    box-shadow: 0 24px 60px rgba(91, 38, 18, 0.16);
}

.jp-cx-image-stack .main {
    width: 370px;
    height: 430px;
    border-radius: 34px;
    border: 12px solid #ffffff;
}

.jp-cx-image-stack .float {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 26px;
    border: 8px solid #ffffff;
}

.jp-cx-image-stack .one {
    right: 10px;
    top: 35px;
    transform: rotate(8deg);
}

.jp-cx-image-stack .two {
    right: 40px;
    bottom: 35px;
    transform: rotate(-8deg);
}

/* Mission */
.jp-cx-two-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.jp-cx-big-card {
    padding: 34px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.28);
    box-shadow: 0 22px 60px rgba(91, 38, 18, 0.10);
}

.jp-cx-big-card.dark {
    background:
        radial-gradient(circle at top right, rgba(224, 161, 43, 0.18), transparent 35%),
        linear-gradient(135deg, #32160d, #7b281a);
}

.jp-cx-big-card > i {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(135deg, #b72f20, #e0a12b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.jp-cx-big-card span {
    display: block;
    color: #b72f20;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.jp-cx-big-card.dark h3,
.jp-cx-big-card.dark p {
    color: #ffffff;
}

.jp-cx-big-card.dark span {
    color: #ffd97a;
}

/* Values */
.jp-cx-value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.jp-cx-value-card {
    padding: 28px 24px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.26);
    box-shadow: 0 18px 45px rgba(91, 38, 18, 0.08);
    transition: all 0.35s ease;
}

.jp-cx-value-card:hover,
.jp-cx-value-card.active {
    transform: translateY(-7px);
    background: linear-gradient(135deg, #32160d, #7b281a);
}

.jp-cx-value-card i {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, #b72f20, #e0a12b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.jp-cx-value-card h3 {
    font-family: "Fraunces", serif;
    color: #32160d;
    font-size: 23px;
    margin: 0 0 10px;
}

.jp-cx-value-card p {
    color: #765846;
    line-height: 1.65;
    margin: 0;
}

.jp-cx-value-card:hover h3,
.jp-cx-value-card:hover p,
.jp-cx-value-card.active h3,
.jp-cx-value-card.active p {
    color: #ffffff;
}

/* Stats */
.jp-cx-stats-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
    align-items: center;
}

.jp-cx-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.jp-cx-stats-grid div {
    padding: 28px 20px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.28);
    text-align: center;
    box-shadow: 0 18px 45px rgba(91, 38, 18, 0.08);
}

.jp-cx-stats-grid strong,
.jp-cx-stats-grid b {
    font-family: "Fraunces", serif;
    color: #b72f20;
    font-size: 42px;
}

.jp-cx-stats-grid span {
    display: block;
    color: #765846;
    font-weight: 700;
}

/* Gallery */
.jp-cx-gallery {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-auto-rows: 230px;
    gap: 18px;
}

.jp-cx-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(91, 38, 18, 0.12);
}

.jp-cx-gallery-item.big {
    grid-row: span 2;
}

.jp-cx-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jp-cx-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(50, 22, 13, 0.76));
}

.jp-cx-gallery-item div {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    color: #ffffff;
}

.jp-cx-gallery-item strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 23px;
}

.jp-cx-gallery-item span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

/* Coverage */
.jp-cx-map-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: center;
}

.jp-cx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.jp-cx-tags span {
    padding: 9px 14px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.30);
    color: #b72f20;
    font-weight: 800;
    font-size: 13px;
}

.jp-cx-map-box {
    min-height: 390px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 30% 30%, rgba(224, 161, 43, 0.35), transparent 20%),
        radial-gradient(circle at 70% 65%, rgba(183, 47, 32, 0.16), transparent 24%),
        linear-gradient(135deg, #32160d, #7b281a);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(224, 161, 43, 0.38);
}

.jp-map-pin {
    position: absolute;
    color: #ffd97a;
    font-size: 28px;
    animation: jpCxPulse 1.5s infinite;
}

.pin-1 {
    left: 22%;
    top: 25%;
}
.pin-2 {
    right: 22%;
    top: 34%;
}
.pin-3 {
    left: 45%;
    bottom: 22%;
}

@keyframes jpCxPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.75;
    }
}

.jp-cx-map-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #ffffff;
}

.jp-cx-map-center i {
    width: 78px;
    height: 78px;
    border-radius: 26px;
    background: linear-gradient(135deg, #b72f20, #e0a12b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 16px;
}

.jp-cx-map-center strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 28px;
}

.jp-cx-map-center span {
    color: rgba(255,255,255,0.76);
    font-weight: 700;
}

/* Reviews */
.jp-cx-review-box {
    position: relative;
}

.jp-cx-review-window {
    overflow: hidden;
    padding: 10px 0 20px;
}

.jp-cx-review-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s ease;
}

.jp-cx-review-card {
    flex: 0 0 calc((100% - 36px) / 3);
    padding: 26px 22px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.28);
    box-shadow: 0 18px 45px rgba(91, 38, 18, 0.08);
}

.jp-cx-review-card.is-active {
    background: linear-gradient(135deg, #32160d, #7b281a);
    transform: translateY(-6px);
}

.jp-cx-review-card > i {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, #b72f20, #e0a12b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 16px;
}

.jp-cx-review-card h3 {
    font-family: "Fraunces", serif;
    color: #32160d;
    font-size: 22px;
    margin: 0 0 4px;
}

.jp-cx-review-card span {
    color: #b72f20;
    font-weight: 800;
    font-size: 13px;
}

.jp-cx-review-card p {
    color: #765846;
    line-height: 1.65;
    margin: 12px 0 0;
}

.jp-cx-review-card.is-active h3,
.jp-cx-review-card.is-active p {
    color: #ffffff;
}

.jp-cx-review-card.is-active span {
    color: #ffd97a;
}

.jp-cx-review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #32160d;
    color: #ffffff;
}

.jp-cx-review-prev {
    left: -18px;
}

.jp-cx-review-next {
    right: -18px;
}

/* CTA */
.jp-cx-final {
    min-height: 470px;
    border-radius: 34px;
    padding: 48px;
    background:
        radial-gradient(circle at top right, rgba(224, 161, 43, 0.18), transparent 35%),
        linear-gradient(135deg, #32160d, #7b281a);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.jp-cx-final span {
    display: inline-block;
    color: #ffd97a;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.jp-cx-final h3 {
    color: #ffffff;
}

.jp-cx-final p {
    color: rgba(255,255,255,0.78);
    max-width: 640px;
}

/* Responsive */
@media (max-width: 1199px) {
    .jp-cx-shell {
        grid-template-columns: 1fr;
    }

    .jp-cx-nav {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .jp-cx-nav::-webkit-scrollbar {
        display: none;
    }

    .jp-cx-nav-btn {
        min-width: 210px;
    }
}

@media (max-width: 991px) {
    .jp-cx-story-grid,
    .jp-cx-two-card,
    .jp-cx-stats-wrap,
    .jp-cx-map-grid {
        grid-template-columns: 1fr;
    }

    .jp-cx-image-stack {
        min-height: 420px;
    }

    .jp-cx-review-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

    .jp-cx-head h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .jp-company-experience {
        padding: 74px 0;
    }

    .jp-cx-bg-word {
        font-size: 44px;
        letter-spacing: 4px;
        top: 34px;
    }

    .jp-cx-head h2 {
        font-size: 31px;
    }

    .jp-cx-shell {
        padding: 10px;
        border-radius: 28px;
    }

    .jp-cx-content {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
    }

    .jp-cx-nav-btn {
        min-width: 175px;
        padding: 12px;
    }

    .jp-cx-text h3,
    .jp-cx-big-card h3,
    .jp-cx-final h3 {
        font-size: 28px;
    }

    .jp-cx-image-stack {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .jp-cx-image-stack .main,
    .jp-cx-image-stack .float {
        position: relative;
        width: 100%;
        height: 260px;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .jp-cx-value-grid,
    .jp-cx-gallery,
    .jp-cx-stats-grid {
        grid-template-columns: 1fr;
    }

    .jp-cx-gallery-item.big {
        grid-row: auto;
    }

    .jp-cx-review-card {
        flex: 0 0 100%;
    }

    .jp-cx-review-arrow {
        top: auto;
        bottom: -55px;
        transform: none;
    }

    .jp-cx-review-prev {
        left: calc(50% - 50px);
    }

    .jp-cx-review-next {
        right: calc(50% - 50px);
    }

    .jp-cx-final {
        min-height: auto;
        padding: 32px 24px;
        margin-top: 60px;
    }
}

/* ===== JALPOOREE PREMIUM COMPANY EDITORIAL ===== */

.jp-editorial-company {
    padding: 105px 0;
    background:
        radial-gradient(circle at 8% 10%, rgba(224, 161, 43, 0.20), transparent 28%),
        radial-gradient(circle at 92% 18%, rgba(183, 47, 32, 0.14), transparent 28%),
        linear-gradient(135deg, #fff8ef 0%, #ffffff 46%, #fff1de 100%);
    position: relative;
    overflow: hidden;
}

.jp-ed-wrap {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 34px;
    align-items: flex-start;
}

/* LEFT STICKY PANEL */
.jp-ed-sticky {
    position: sticky;
    top: 105px;
    padding: 34px 28px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(224, 161, 43, 0.18), transparent 38%),
        linear-gradient(135deg, #32160d 0%, #7b281a 100%);
    border: 1px solid rgba(224, 161, 43, 0.38);
    box-shadow: 0 30px 85px rgba(50, 22, 13, 0.22);
    color: #ffffff;
}

.jp-ed-small {
    display: inline-block;
    color: #ffd97a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.jp-ed-sticky h2 {
    font-family: "Fraunces", serif;
    font-size: 46px;
    line-height: 1;
    margin: 0 0 18px;
    color: #ffffff;
}

.jp-ed-sticky p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
    font-size: 14.5px;
    margin: 0 0 24px;
}

.jp-ed-mini-nav {
    display: grid;
    gap: 10px;
    margin-bottom: 26px;
}

.jp-ed-mini-nav a {
    padding: 12px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(224, 161, 43, 0.18);
    transition: all 0.3s ease;
}

.jp-ed-mini-nav a:hover {
    background: #fff8ef;
    color: #32160d;
}

/* RIGHT FLOW */
.jp-ed-content {
    display: grid;
    gap: 34px;
}

.jp-ed-block {
    min-height: 480px;
    padding: 42px;
    border-radius: 42px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.26);
    box-shadow: 0 26px 75px rgba(91, 38, 18, 0.12);
    position: relative;
    overflow: hidden;
}

.jp-ed-block::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(183, 47, 32, 0.10), rgba(224, 161, 43, 0.18));
}

.jp-ed-no {
    position: absolute;
    right: 34px;
    top: 28px;
    font-family: "Fraunces", serif;
    font-size: 78px;
    font-weight: 800;
    color: rgba(183, 47, 32, 0.07);
    line-height: 1;
    z-index: 1;
}

.jp-ed-text,
.jp-ed-split-title,
.jp-ed-market-grid,
.jp-ed-photo-stack,
.jp-ed-process-line,
.jp-ed-value-wheel {
    position: relative;
    z-index: 2;
}

.jp-ed-text span,
.jp-ed-split-title span,
.jp-ed-final span {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 50px;
    background: #fff2df;
    color: #b72f20;
    border: 1px solid rgba(224, 161, 43, 0.30);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.jp-ed-text h3,
.jp-ed-split-title h3,
.jp-ed-final h3 {
    font-family: "Fraunces", serif;
    font-size: 42px;
    line-height: 1.12;
    color: #32160d;
    margin: 0 0 16px;
}

.jp-ed-text p,
.jp-ed-final p {
    color: #765846;
    font-size: 15.5px;
    line-height: 1.8;
    margin: 0 0 14px;
}

/* STORY */
.jp-ed-story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
    align-items: center;
}

.jp-ed-photo-stack {
    min-height: 420px;
}

.jp-ed-photo-stack img {
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(91, 38, 18, 0.16);
}

.jp-ed-photo-stack .main {
    width: 390px;
    height: 410px;
    border-radius: 36px;
    border: 14px solid #fff8ef;
}

.jp-ed-photo-stack .mini {
    position: absolute;
    width: 145px;
    height: 145px;
    border-radius: 26px;
    border: 10px solid #ffffff;
}

.jp-ed-photo-stack .one {
    right: 15px;
    top: 20px;
    transform: rotate(8deg);
}

.jp-ed-photo-stack .two {
    right: 55px;
    bottom: 22px;
    transform: rotate(-9deg);
}

/* DARK MISSION */
.jp-ed-dark {
    background:
        radial-gradient(circle at top right, rgba(224, 161, 43, 0.22), transparent 35%),
        linear-gradient(135deg, #32160d, #7b281a);
    border-color: rgba(224, 161, 43, 0.40);
}

.jp-ed-dark .jp-ed-no {
    color: rgba(255, 255, 255, 0.08);
}

.jp-ed-dark .jp-ed-split-title span {
    background: rgba(255, 255, 255, 0.12);
    color: #ffd97a;
}

.jp-ed-dark h3 {
    color: #ffffff;
}

.jp-ed-mission-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.jp-ed-mission-row div {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(224, 161, 43, 0.24);
}

.jp-ed-mission-row i {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: linear-gradient(135deg, #b72f20, #e0a12b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.jp-ed-mission-row strong {
    display: block;
    color: #ffffff;
    font-family: "Fraunces", serif;
    font-size: 25px;
    margin-bottom: 8px;
}

.jp-ed-mission-row p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
    margin: 0;
}

/* VALUE WHEEL */
.jp-ed-values {
    background:
        radial-gradient(circle at center, rgba(224, 161, 43, 0.10), transparent 36%),
        #fffaf3;
}

.jp-ed-text.center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 25px;
}

.jp-ed-value-wheel {
    height: 390px;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.jp-ed-center-bowl {
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: linear-gradient(135deg, #32160d, #7b281a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 22px 60px rgba(50, 22, 13, 0.22);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.jp-ed-center-bowl i {
    font-size: 38px;
    color: #ffd97a;
    margin-bottom: 8px;
}

.jp-ed-center-bowl strong {
    font-family: "Fraunces", serif;
    font-size: 22px;
}

.jp-ed-value {
    width: 145px;
    height: 145px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(224, 161, 43, 0.28);
    box-shadow: 0 18px 45px rgba(91, 38, 18, 0.10);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.jp-ed-value i {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #b72f20, #e0a12b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
}

.jp-ed-value h4 {
    font-family: "Fraunces", serif;
    color: #32160d;
    font-size: 20px;
    margin: 0;
}

.jp-ed-value.v1 {
    left: 40px;
    top: 25px;
}
.jp-ed-value.v2 {
    right: 40px;
    top: 25px;
}
.jp-ed-value.v3 {
    left: 40px;
    bottom: 25px;
}
.jp-ed-value.v4 {
    right: 40px;
    bottom: 25px;
}

/* PROCESS */
.jp-ed-process-line {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(224, 161, 43, 0.28);
}

.jp-ed-process-line div {
    padding: 26px 20px;
    background: #fff8ef;
    border-right: 1px solid rgba(224, 161, 43, 0.24);
}

.jp-ed-process-line div:last-child {
    border-right: none;
}

.jp-ed-process-line b {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 32px;
    color: #b72f20;
    margin-bottom: 8px;
}

.jp-ed-process-line strong {
    display: block;
    color: #32160d;
    font-size: 17px;
    margin-bottom: 6px;
}

.jp-ed-process-line p {
    color: #765846;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* MARKET */
.jp-ed-market-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: center;
}

.jp-ed-market-list {
    display: grid;
    gap: 14px;
}

.jp-ed-market-list div {
    padding: 17px 18px;
    border-radius: 22px;
    background: #fff8ef;
    border: 1px solid rgba(224, 161, 43, 0.25);
    color: #32160d;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.jp-ed-market-list i {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, #b72f20, #e0a12b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FINAL CTA */
.jp-ed-final {
    padding: 46px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(224, 161, 43, 0.20), transparent 35%),
        linear-gradient(135deg, #32160d, #7b281a);
    color: #ffffff;
    box-shadow: 0 26px 75px rgba(50, 22, 13, 0.22);
}

.jp-ed-final span {
    background: rgba(255,255,255,0.12);
    color: #ffd97a;
}

.jp-ed-final h3,
.jp-ed-final p {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1199px) {
    .jp-ed-wrap {
        grid-template-columns: 1fr;
    }

    .jp-ed-sticky {
        position: relative;
        top: auto;
    }

    .jp-ed-mini-nav {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 991px) {
    .jp-ed-story,
    .jp-ed-market-grid {
        grid-template-columns: 1fr;
    }

    .jp-ed-process-line {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-ed-process-line div {
        border-bottom: 1px solid rgba(224, 161, 43, 0.24);
    }

    .jp-ed-mini-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .jp-editorial-company {
        padding: 74px 0;
    }

    .jp-ed-block {
        padding: 26px 20px;
        border-radius: 28px;
        min-height: auto;
    }

    .jp-ed-text h3,
    .jp-ed-split-title h3,
    .jp-ed-final h3 {
        font-size: 30px;
    }

    .jp-ed-sticky {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .jp-ed-mini-nav {
        grid-template-columns: 1fr;
    }

    .jp-ed-photo-stack {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .jp-ed-photo-stack .main,
    .jp-ed-photo-stack .mini {
        position: relative;
        width: 100%;
        height: 240px;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .jp-ed-mission-row,
    .jp-ed-process-line {
        grid-template-columns: 1fr;
    }

    .jp-ed-value-wheel {
        height: auto;
        display: grid;
        gap: 14px;
    }

    .jp-ed-center-bowl,
    .jp-ed-value,
    .jp-ed-value.v1,
    .jp-ed-value.v2,
    .jp-ed-value.v3,
    .jp-ed-value.v4 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        height: auto;
        padding: 24px;
        border-radius: 24px;
    }

    .jp-ed-final {
        padding: 32px 24px;
        border-radius: 28px;
    }
}


.ed-section-head {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px;
}

.ed-section-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 50px;
    background: #fff8f0;
    color: #74478f;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.ed-section-head h2 {
    margin: 0;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.12;
    font-weight: 800;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 767px) {
    .ed-section-head {
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .ed-section-head h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .ed-section-head span {
        font-size: 12px;
        padding: 10px 22px;
    }
}


.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #238423;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(35, 132, 35, 0.35);
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: #1b6f1b;
    transform: translateY(-4px);
}

.scroll-top.show {
    display: flex;
}

@media (max-width: 575px) {
    .scroll-top {
        right: 15px;
        bottom: 15px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}



/* WhatsApp Floating Button - Animated */
.em-whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 62px;
    height: 62px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    animation: whatsappFloat 2.5s ease-in-out infinite;
    overflow: visible;
}

/* Outer pulse ring */
.em-whatsapp-btn::before,
.em-whatsapp-btn::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.55);
    animation: whatsappRipple 2s linear infinite;
    z-index: -1;
}

.em-whatsapp-btn::after {
    animation-delay: 1s;
}

/* Icon shake */
.em-whatsapp-btn i {
    animation: whatsappIconShake 2.2s ease-in-out infinite;
}

.em-whatsapp-btn:hover {
    color: #ffffff;
    transform: scale(1.08) translateY(-5px);
    background: #1ebe5d;
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.65);
}

/* Floating up-down */
@keyframes whatsappFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

/* Ripple effect */
@keyframes whatsappRipple {
    0% {
        transform: scale(0.75);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

/* WhatsApp icon small shake */
@keyframes whatsappIconShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    8% {
        transform: rotate(-12deg);
    }
    16% {
        transform: rotate(12deg);
    }
    24% {
        transform: rotate(-8deg);
    }
    32% {
        transform: rotate(8deg);
    }
    40% {
        transform: rotate(0deg);
    }
}

@media (max-width: 575px) {
    .em-whatsapp-btn {
        right: 18px;
        bottom: 85px;
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
}


.seller-card {
    text-align: center;
}

.seller-card img {
    max-width: 180px;
    margin: 0 auto 18px;
}

.seller-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}

.seller-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.seller-social a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e82420, #f58220);
    transform: scale(0);
    border-radius: 50%;
    transition: 0.35s ease;
    z-index: 0;
}

.seller-social a i {
    position: relative;
    z-index: 1;
    transition: 0.35s ease;
}

.seller-social a:hover::before {
    transform: scale(1);
}

.seller-social a:hover {
    transform: translateY(-6px) rotate(8deg);
    box-shadow: 0 14px 28px rgba(232, 36, 32, 0.28);
    border-color: transparent;
}

.seller-social a:hover i {
    color: #ffffff;
    transform: scale(1.12);
}


/* ===== INNER BANNER RESPONSIVE FIX ===== */

.jp-inner-banner {
    position: relative;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #fff8ec;
}

.jp-inner-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.jp-inner-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 16, 6, 0.35);
    z-index: 1;
}

.jp-inner-banner .container {
    position: relative;
    z-index: 2;
}

.jp-inner-content {
    max-width: 650px;
    color: #ffffff;
}

.jp-inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #ffffff;
}

.jp-inner-breadcrumb a,
.jp-inner-breadcrumb span,
.jp-inner-breadcrumb i {
    color: #ffffff;
}

.jp-inner-content h1 {
    font-size: 58px;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #ffffff;
}

.jp-inner-content p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
}

/* Tablet */
@media (max-width: 991px) {
    .jp-inner-banner {
        min-height: 320px;
    }

    .jp-inner-content h1 {
        font-size: 46px;
    }

    .jp-inner-content p {
        font-size: 15px;
    }
}

/* Mobile - full image visible */
@media (max-width: 767px) {
    .jp-inner-banner {
        min-height: auto;
        height: auto;
        padding: 0;
        display: block;
        background: #fff8ec;
    }

    .jp-inner-banner-img {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .jp-inner-banner::before {
        display: none;
    }

    .jp-inner-banner .container {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        align-items: center;
    }

    .jp-inner-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .jp-inner-breadcrumb {
        margin-bottom: 8px;
        gap: 7px;
        font-size: 12px;
    }

    .jp-inner-content h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .jp-inner-content p {
        font-size: 13px;
        line-height: 1.45;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .jp-inner-content h1 {
        font-size: 28px;
    }

    .jp-inner-content p {
        font-size: 12px;
    }

    .jp-inner-breadcrumb {
        font-size: 11px;
    }
}


@media (max-width: 767px) {
    .jp-inner-breadcrumb {
        font-size: 9px !important;
        margin-bottom: 4px !important;
        gap: 5px !important;
    }

    .jp-inner-content h1 {
        font-size: 20px !important;
        line-height: 1.05 !important;
        margin-bottom: 4px !important;
    }

    .jp-inner-content p {
        font-size: 9px !important;
        line-height: 1.25 !important;
        max-width: 210px !important;
    }
}

@media (max-width: 480px) {
    .jp-inner-breadcrumb {
        font-size: 8px !important;
    }

    .jp-inner-content h1 {
        font-size: 18px !important;
    }

    .jp-inner-content p {
        font-size: 8px !important;
        max-width: 190px !important;
    }
}



/* our story section */


.jp-story-video,
.jp-story-video * {
    box-sizing: border-box;
}

.jp-story-video {
    padding: 80px 20px;
    background: #0b6f78;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.jp-story-video::before {
    content: "";
    position: absolute;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: #ffbf2f;
    left: -35px;
    top: 60px;
    opacity: 0.4;
    animation: jpVideoPuri 6s ease-in-out infinite;
}

.jp-story-video::after {
    content: "";
    position: absolute;
    width: 85px;
    height: 40px;
    background: #86b93b;
    border-radius: 100% 0 100% 0;
    right: -18px;
    bottom: 70px;
    opacity: 0.5;
    transform: rotate(28deg);
    animation: jpVideoLeaf 7s ease-in-out infinite;
}

@keyframes jpVideoPuri {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(16deg);
    }
}

@keyframes jpVideoLeaf {
    0%, 100% {
        transform: translateY(0) rotate(28deg);
    }

    50% {
        transform: translateY(-18px) rotate(52deg);
    }
}

.jp-story-video-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-story-video-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 38px;
}

.jp-story-video-head span {
    display: inline-flex;
    background: #ffffff;
    color: #e82420;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.jp-story-video-head h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.08;
    margin: 0 0 12px;
}

.jp-story-video-head p {
    color: rgba(255,255,255,0.86);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

.jp-story-video-box {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.jp-story-video-left {
    position: relative;
}

.jp-story-video-left::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: #ffbf2f;
    border-radius: 28px;
    left: -18px;
    bottom: -18px;
    z-index: 1;
}

.jp-story-video-left::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: #e82420;
    border-radius: 28px;
    right: -18px;
    top: -18px;
    z-index: 1;
}

.jp-video-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #2b1006;
    border: 10px solid #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(43, 16, 6, 0.22);
}

.jp-video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.jp-story-video-content {
    background: #ffffff;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 22px 48px rgba(43, 16, 6, 0.16);
    position: relative;
    overflow: hidden;
}

.jp-story-video-content::before {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -30px;
    top: -30px;
    opacity: 0.55;
}

.jp-mini-label {
    display: inline-flex;
    background: #ffbf2f;
    color: #2b1006;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.jp-story-video-content h3 {
    font-family: "Fraunces", serif;
    color: #2b1006;
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 15px;
    position: relative;
    z-index: 2;
}

.jp-story-video-content p {
    color: #735646;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 15px;
    position: relative;
    z-index: 2;
}

.jp-story-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #e82420;
    color: #ffffff;
    padding: 13px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    margin-top: 6px;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.jp-story-video-btn:hover {
    background: #86b93b;
    color: #ffffff;
    transform: translateY(-4px);
}

@media (max-width: 992px) {
    .jp-story-video-box {
        grid-template-columns: 1fr;
    }

    .jp-story-video-head h2 {
        font-size: 38px;
    }

    .jp-story-video-content h3 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .jp-story-video {
        padding: 80px 14px;
    }

    .jp-story-video-head {
        margin-bottom: 30px;
    }

    .jp-story-video-head h2 {
        font-size: 31px;
    }

    .jp-story-video-head p {
        font-size: 13.5px;
    }

    .jp-video-frame {
        border-width: 7px;
        border-radius: 22px;
    }

    .jp-story-video-left::before,
    .jp-story-video-left::after {
        width: 95px;
        height: 95px;
        border-radius: 18px;
    }

    .jp-story-video-content {
        padding: 24px;
        border-radius: 26px;
    }

    .jp-story-video-content h3 {
        font-size: 25px;
    }

    .jp-story-video-content p {
        font-size: 13.5px;
        line-height: 1.75;
    }
}


/* vison mission  */

.jp-mvv-pill-section,
.jp-mvv-pill-section * {
    box-sizing: border-box;
}

.jp-mvv-pill-section {
    padding: 80px 20px;
    background: #b0005a;
    font-family: "Poppins", Arial, sans-serif;
    overflow: hidden;
    position: relative;
}


.jp-mvv-pill-section::after {
    content: "";
    position: absolute;
    width: 92px;
    height: 42px;
    background: #86b93b;
    border-radius: 100% 0 100% 0;
    right: -20px;
    bottom: 75px;
    opacity: 0.5;
    transform: rotate(28deg);
}

.jp-mvv-pill-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-mvv-pill-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.jp-mvv-pill-head span {
    display: inline-flex;
    background: #ffbf2f;
    color: #2b1006;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.jp-mvv-pill-head h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.08;
    margin: 0 0 12px;
}

.jp-mvv-pill-head p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

.jp-mvv-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    align-items: start;
}

.jp-mvv-pill-card {
    position: relative;
    padding-top: 48px;
    transition: 0.35s ease;
}

.jp-mvv-pill-card:hover {
    transform: translateY(-8px);
}

.jp-pill-title {
    width: 72%;
    height: 64px;
    margin: 0 auto;
    border-radius: 24px 24px 0 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 12px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
}

.jp-pill-body {
    min-height: 142px;
    background: #ffffff;
    border-radius: 36px;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    padding: 34px 24px 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 18px 34px rgba(43, 16, 6, 0.18);
}

.jp-pill-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 40px;
    color: #454545;
    position: relative;
}

.jp-pill-icon::before {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px dashed #d6d6d6;
    border-radius: 50%;
}

.jp-pill-text p {
    margin: 0;
    color: #8b8b8b;
    font-size: 11px;
    line-height: 1.55;
    text-align: left;
}

.jp-pill-flag {
    position: absolute;
    right: -12px;
    top: 48px;
    font-size: 28px;
    z-index: 3;
    transform: rotate(-12deg);
}

.jp-pill-red .jp-pill-title {
    background: #ff5b5b;
}

.jp-pill-red .jp-pill-flag,
.jp-pill-red .jp-pill-icon i {
    color: #ff5b5b;
}

.jp-pill-green .jp-pill-title {
    background: #62c98b;
}

.jp-pill-green .jp-pill-flag,
.jp-pill-green .jp-pill-icon i {
    color: #62c98b;
}

.jp-pill-blue .jp-pill-title {
    background: #65c8f5;
}

.jp-pill-blue .jp-pill-flag,
.jp-pill-blue .jp-pill-icon i {
    color: #65c8f5;
}

@media (max-width: 992px) {
    .jp-mvv-pill-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 34px;
    }

    .jp-mvv-pill-head h2 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .jp-mvv-pill-section {
        padding: 80px 14px;
    }

    .jp-mvv-pill-head {
        margin-bottom: 34px;
    }

    .jp-mvv-pill-head h2 {
        font-size: 31px;
    }

    .jp-mvv-pill-head p {
        font-size: 13.5px;
    }

    .jp-pill-title {
        width: 70%;
        height: 58px;
        font-size: 20px;
        padding-top: 11px;
    }

    .jp-pill-body {
        grid-template-columns: 76px 1fr;
        gap: 12px;
        padding: 30px 18px 20px;
        border-radius: 30px;
        min-height: 132px;
    }

    .jp-pill-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }

    .jp-pill-text p {
        font-size: 10.5px;
        line-height: 1.5;
    }

    .jp-pill-flag {
        right: -4px;
        top: 45px;
        font-size: 24px;
    }
}

.jp-mvv-pill-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 1;
}


/* ===== ED RANGE CARD SLOW SMOOTH ANIMATION ONLY ===== */

.ed-category-wall {
    position: relative;
    overflow: hidden;
}

/* before visible */
.ed-category-wall:not(.ed-visible) .ed-section-head span,
.ed-category-wall:not(.ed-visible) .ed-section-head h2,
.ed-category-wall:not(.ed-visible) .ed-range-card {
    opacity: 0 !important;
    transform: translateY(55px) !important;
}

/* slow title animation */
.ed-category-wall.ed-visible .ed-section-head span {
    animation: edSlowFadeUp 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ed-category-wall.ed-visible .ed-section-head h2 {
    animation: edSlowFadeUp 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

/* slow cards animation */
.ed-category-wall.ed-visible .ed-range-card {
    animation: edSlowCardUp 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transition: transform 0.65s ease, box-shadow 0.65s ease !important;
}

.ed-category-wall.ed-visible .ed-range-card:nth-child(1) {
    animation-delay: 0.25s;
}

.ed-category-wall.ed-visible .ed-range-card:nth-child(2) {
    animation-delay: 0.48s;
}

.ed-category-wall.ed-visible .ed-range-card:nth-child(3) {
    animation-delay: 0.71s;
}

@keyframes edSlowFadeUp {
    0% {
        opacity: 0;
        transform: translateY(42px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes edSlowCardUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.96);
    }

    70% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* product image slow floating */
.ed-category-wall.ed-visible .ed-range-card img {
    animation: edSlowProductFloat 5.5s ease-in-out infinite;
    transition: transform 0.65s ease !important;
}

.ed-category-wall.ed-visible .ed-range-card:nth-child(2) img {
    animation-delay: 0.7s;
}

.ed-category-wall.ed-visible .ed-range-card:nth-child(3) img {
    animation-delay: 1.4s;
}

@keyframes edSlowProductFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(-1.5deg);
    }
}

/* hover slow effect */
.ed-range-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.65s ease, box-shadow 0.65s ease !important;
}

.ed-range-card::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    right: -42px;
    top: -42px;
    transform: scale(0);
    transition: transform 0.75s ease;
    pointer-events: none;
}

.ed-range-card:hover::before {
    transform: scale(1.9);
}

.ed-range-card:hover {
    transform: translateY(-6px) !important;
}

.ed-range-card:hover img {
    animation-play-state: paused;
    transform: translateY(-8px) scale(1.04) rotate(-2deg) !important;
    transition: transform 0.65s ease !important;
}

/* FINAL FIX: no jerk hover for inline-style cards */
.ed-range-card.gold {
    transition: box-shadow 0.55s ease !important;
}

.ed-range-card.gold img,
.ed-range-card.gold h3,
.ed-range-card.gold p {
    transition: transform 0.55s ease !important;
}

.ed-range-card.gold:hover {
    box-shadow: 0 18px 35px rgba(0,0,0,0.16) !important;
}

/* card ne move na karo, only andar content smooth move */
.ed-range-card.gold:hover img {
    transform: translateY(-8px) scale(1.04) !important;
}

.ed-range-card.gold:hover h3,
.ed-range-card.gold:hover p {
    transform: translateY(-3px) !important;
}






/* ===== AUTO REPEAT PRODUCT SLIDER ===== */



/* ===== MINI BAR STRONG ROTATION ANIMATION ONLY ===== */

.jp-trust-mini-bar > div strong {
    display: inline-block;
    transform-origin: center;
}

.jp-trust-mini-bar.jp-mini-rotate > div strong {
    animation: jpTrustRotateText 1.2s ease forwards;
}

.jp-trust-mini-bar.jp-mini-rotate > div:nth-child(1) strong {
    animation-delay: 0.10s;
}

.jp-trust-mini-bar.jp-mini-rotate > div:nth-child(2) strong {
    animation-delay: 0.25s;
}

.jp-trust-mini-bar.jp-mini-rotate > div:nth-child(3) strong {
    animation-delay: 0.40s;
}

.jp-trust-mini-bar.jp-mini-rotate > div:nth-child(4) strong {
    animation-delay: 0.55s;
}

@keyframes jpTrustRotateText {
    0% {
        opacity: 0;
        transform: rotateY(90deg) scale(0.85);
    }

    50% {
        opacity: 1;
        transform: rotateY(0deg) scale(1.12);
    }

    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}



/* ===== ONLY POORI IMAGE NONSTOP ROTATION ===== */

.jp-main-product-circle img {
    animation: jpPuriRotate 20s linear infinite;
    transform-origin: center center;
}

@keyframes jpPuriRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* ===== ONLY PRODUCT IMAGE PERMANENT JUMP ===== */

.jp-bn-product-card img {
    animation: jpBnImgJump 2.2s ease-in-out infinite;
}

@keyframes jpBnImgJump {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}



/* ===== IMG-ONE NONSTOP LEFT-RIGHT SWING ===== */

.jp-bn-small-img.img-one img {
    animation: jpImgOneSwing 1.8s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes jpImgOneSwing {
    from {
        transform: rotate(-7deg);
    }

    to {
        transform: rotate(7deg);
    }
}


/* ===== IMG-TWO NONSTOP LEFT-RIGHT SWING ===== */

.jp-bn-small-img.img-two img {
    animation: jpImgTwoSwing 1.9s ease-in-out infinite alternate;
    transform-origin: center center;
}

@keyframes jpImgTwoSwing {
    from {
        transform: rotate(7deg);
    }

    to {
        transform: rotate(-7deg);
    }
}


/* ===== PRODUCT CARD SMOOTH HOVER FIX ===== */

.as-slide-card {
    transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.75s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.as-slide-card:hover {
    transform: translateY(-10px) !important;
}

/* image smooth hover */
.as-slide-card img {
    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.as-slide-card:hover img {
    transform: translateY(-12px) scale(1.04) !important;
}

/* ===== FINAL SMOOTH HOVER FIX - NO JERK ===== */
/* For Shop by Range cards */

.ed-range-card.gold {
    transform: none !important;
    translate: 0 0;
    scale: 1;
    transition:
        translate 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        scale 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.9s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: translate, scale;
}

.ed-range-card.gold:hover {
    transform: none !important;
    translate: 0 -8px;
    scale: 1;
    box-shadow: 0 22px 45px rgba(43, 16, 6, 0.18) !important;
}

/* Image smooth */
.ed-range-card.gold img {
    transform: none !important;
    translate: 0 0;
    scale: 1;
    transition:
        translate 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        scale 0.9s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: translate, scale;
}

.ed-range-card.gold:hover img {
    transform: none !important;
    translate: 0 -10px;
    scale: 1.035;
}

/* ===== AS HERO MOBILE RESPONSIVE FIX ===== */

@media (max-width: 991px) {
    .as-hero {
        min-height: auto !important;
        overflow: hidden !important;
        padding: 70px 0 40px !important;
    }

    .as-slide {
        position: relative !important;
        min-height: auto !important;
        padding: 0 !important;
    }

    .as-slide:not(.active) {
        display: none !important;
    }

    .as-hero-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        align-items: center !important;
        padding: 0 16px !important;
    }

    .as-copy {
        text-align: center !important;
        max-width: 100% !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 3 !important;
    }

    .as-kicker {
        font-size: 12px !important;
        padding: 7px 14px !important;
        margin-bottom: 12px !important;
    }

    .as-copy h1 {
        font-size: 36px !important;
        line-height: 1.05 !important;
        margin: 0 0 14px !important;
        max-width: 100% !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }

    .as-copy p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        max-width: 95% !important;
        margin: 0 auto 22px !important;
    }

    .as-actions {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .main-btn,
    .as-text-btn {
        font-size: 13px !important;
        padding: 12px 18px !important;
    }

    .as-product-stage {
        width: 100% !important;
        min-height: 310px !important;
        display: grid !important;
        place-items: center !important;
        position: relative !important;
        margin: 0 auto !important;
    }

    .as-product-card {
        width: 250px !important;
        height: 250px !important;
        border-radius: 36px !important;
        padding: 22px !important;
        display: grid !important;
        place-items: center !important;
        margin: 0 auto !important;
    }

    .as-product-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .as-floating-tag {
        font-size: 12px !important;
        padding: 8px 13px !important;
        border-radius: 40px !important;
        z-index: 4 !important;
    }

    .as-floating-tag.tag-a {
        left: 18px !important;
        top: 34px !important;
    }

    .as-floating-tag.tag-b {
        right: 18px !important;
        bottom: 42px !important;
    }

    .as-arrow {
        width: 38px !important;
        height: 38px !important;
        font-size: 13px !important;
        z-index: 20 !important;
    }

    .as-prev {
        left: 10px !important;
    }

    .as-next {
        right: 10px !important;
    }

    .as-shape {
        opacity: 0.35 !important;
        transform: scale(0.7) !important;
    }
}

@media (max-width: 576px) {
    .as-hero {
        padding: 55px 0 32px !important;
    }

    .as-hero-grid {
        gap: 22px !important;
        padding: 0 14px !important;
    }

    .as-copy h1 {
        font-size: 30px !important;
        line-height: 1.08 !important;
    }

    .as-copy p {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }

    .as-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 270px !important;
        margin: 0 auto !important;
    }

    .main-btn,
    .as-text-btn {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .as-product-stage {
        min-height: 270px !important;
    }

    .as-product-card {
        width: 215px !important;
        height: 215px !important;
        border-radius: 30px !important;
        padding: 18px !important;
    }

    .as-floating-tag.tag-a {
        left: 6px !important;
        top: 24px !important;
    }

    .as-floating-tag.tag-b {
        right: 6px !important;
        bottom: 30px !important;
    }

    .as-arrow {
        top: auto !important;
        bottom: 12px !important;
        transform: none !important;
    }

    .as-prev {
        left: calc(50% - 48px) !important;
    }

    .as-next {
        right: calc(50% - 48px) !important;
    }
}

@media (max-width: 390px) {
    .as-copy h1 {
        font-size: 27px !important;
    }

    .as-product-card {
        width: 195px !important;
        height: 195px !important;
    }

    .as-product-stage {
        min-height: 250px !important;
    }
}



.jp-company-stats,
.jp-company-stats * {
    box-sizing: border-box;
}

.jp-company-stats {
    padding: 80px 20px;
    background: #135c7d;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.jp-company-stats::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 5;
}

.jp-company-stats::after {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -42px;
    top: 75px;
    opacity: 0.55;
    animation: jpStatsShape 5s ease-in-out infinite alternate;
}

@keyframes jpStatsShape {
    from {
        transform: translateY(0) rotate(0deg);
    }
    to {
        transform: translateY(20px) rotate(18deg);
    }
}

.jp-stats-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-stats-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.jp-stats-head span {
    display: inline-flex;
    background: #ffbf2f;
    color: #2b1006;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.jp-stats-head h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.08;
    margin: 0 0 12px;
}

.jp-stats-head p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

.jp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.jp-stat-card {

    background: #ffffff;
    border-radius: 32px;
    padding: 30px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(43, 16, 6, 0.18);
    opacity: 0;
    transform: translateY(36px) rotateX(18deg);
}

.jp-stat-card::before {
    content: "";
    position: absolute;
    width: 112px;
    height: 112px;
    background: #ffbf2f;
    border-radius: 50%;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    opacity: 0.28;
}

.jp-stat-card::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background: #86b93b;
    border-radius: 50%;
    right: -24px;
    bottom: -24px;
    opacity: 0.35;
}

.jp-company-stats.jp-stats-show .jp-stat-card {
    animation: jpStatCardIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.jp-company-stats.jp-stats-show .jp-stat-card:nth-child(1) {
    animation-delay: 0.08s;
}

.jp-company-stats.jp-stats-show .jp-stat-card:nth-child(2) {
    animation-delay: 0.22s;
}

.jp-company-stats.jp-stats-show .jp-stat-card:nth-child(3) {
    animation-delay: 0.36s;
}

.jp-company-stats.jp-stats-show .jp-stat-card:nth-child(4) {
    animation-delay: 0.50s;
}

@keyframes jpStatCardIn {
    0% {
        opacity: 0;
        transform: translateY(36px) rotateX(18deg);
    }
    70% {
        opacity: 1;
        transform: translateY(-8px) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.jp-stat-icon {
    width: 60px;
    height:60px;
    background: #e82420;
    color: #ffffff;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.jp-company-stats.jp-stats-show .jp-stat-icon {
    animation: jpStatIconRotate 1s ease forwards;
}

@keyframes jpStatIconRotate {
    0% {
        opacity: 0;
        transform: rotateY(90deg) scale(0.75);
    }
    60% {
        opacity: 1;
        transform: rotateY(0deg) scale(1.12);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}

.jp-stat-card h3 {
    font-family: "Fraunces", serif;
    color: #2b1006;
    font-size: 30px;
    line-height: 1;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
    perspective: 500px;
}

.jp-stat-card h3 b {
    display: inline-block;
}

.jp-company-stats.jp-stats-show .jp-stat-card h3 b {
    animation: jpStatNumberRotate 1s ease forwards;
}

@keyframes jpStatNumberRotate {
    0% {
        opacity: 0;
        transform: rotateX(90deg) scale(0.75);
    }
    55% {
        opacity: 1;
        transform: rotateX(-12deg) scale(1.12);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg) scale(1);
    }
}

.jp-stat-card p {
    color: #735646;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}

.jp-stat-card:hover .jp-stat-icon {
    background: #86b93b;
}

@media (max-width: 992px) {
    .jp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-stats-head h2 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .jp-company-stats {
        padding: 80px 14px;
    }

    .jp-stats-grid {
        grid-template-columns: 1fr;
    }

    .jp-stats-head {
        margin-bottom: 32px;
    }

    .jp-stats-head h2 {
        font-size: 31px;
    }

    .jp-stats-head p {
        font-size: 13.5px;
    }

    .jp-stat-card {
        min-height: 220px;
        border-radius: 26px;
    }

    .jp-stat-card h3 {
        font-size: 40px;
    }
}


.jp-stats-head span {
    font-weight: 700 !important;
}

.jp-stats-head h2 {
    font-weight: 600 !important;
}

.jp-stat-card h3 {
    font-weight: 600 !important;
}

.jp-stat-card h3 b {
    font-weight: 600 !important;
}

.jp-stat-card p {
    font-weight: 600 !important;
}




/* Factory & team photos */

.jp-only-gallery-section,
.jp-only-gallery-section * {
    box-sizing: border-box;
}

.jp-only-gallery-section {
    padding: 80px 20px;
    background: #b0005a;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.jp-only-gallery-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 5;
}

.jp-only-gallery-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-only-gallery-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.jp-only-gallery-head span {
    display: inline-flex;
    background: #ffbf2f;
    color: #2b1006;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.jp-only-gallery-head h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 600;
    margin: 0 0 12px;
}

.jp-only-gallery-head p {
    color: rgba(255,255,255,0.88);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

.jp-only-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.jp-only-gallery-item {
    height: 285px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: #fff7df;
    box-shadow: 0 18px 38px rgba(43, 16, 6, 0.18);
}

.jp-only-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.55s ease;
}

/* hover overlay */
.jp-only-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(232, 36, 32, 0.62);
    opacity: 0;
    transition: all 0.4s ease;
}

/* PLUS ALWAYS VISIBLE */
.jp-gallery-plus {
    width:50px;
    height: 50px;
    border: 0;
    outline: none;
    border-radius: 20px;
    background: #ffbf2f;
    color: #2b1006;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    transform: translate(-50%, -50%) rotateY(0deg) scale(1);
    display: grid;
    place-items: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.45s ease;
    box-shadow: 0 12px 28px rgba(43, 16, 6, 0.26);
}

.jp-only-gallery-item:hover img {
    transform: scale(1.08);
}

.jp-only-gallery-item:hover::after {
    opacity: 1;
}

.jp-only-gallery-item:hover .jp-gallery-plus {
    transform: translate(-50%, -50%) rotateY(0deg) scale(1.08);
    background: #86b93b;
    color: #ffffff;
}

/* Popup */
.jp-gallery-popup {
    position: fixed;
    inset: 0;
    background: rgba(43, 16, 6, 0.86);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.jp-gallery-popup.active {
    display: flex;
}

.jp-gallery-popup img {
    max-width: 92%;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    animation: jpPopupZoom 0.35s ease forwards;
}

@keyframes jpPopupZoom {
    from {
        opacity: 0;
        transform: scale(0.82);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.jp-popup-close {
    width: 48px;
    height: 48px;
    border: 0;
    outline: none;
    border-radius: 50%;
    background: #ffffff;
    color: #2b1006;
    position: fixed;
    right: 28px;
    top: 24px;
    z-index: 100000;
    font-size: 22px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.jp-popup-close:hover {
    background: #ffbf2f;
}

@media (max-width: 992px) {
    .jp-only-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-only-gallery-head h2 {
        font-size: 38px;
    }

    .jp-only-gallery-item {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .jp-only-gallery-section {
        padding: 80px 14px;
    }

    .jp-only-gallery-head {
        margin-bottom: 32px;
    }

    .jp-only-gallery-head h2 {
        font-size: 31px;
    }

    .jp-only-gallery-head p {
        font-size: 13.5px;
    }

    .jp-only-gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jp-only-gallery-item {
        height: 235px;
        border-radius: 22px;
    }

    .jp-gallery-plus {
        width: 54px;
        height: 54px;
        border-radius: 17px;
        font-size: 22px;
    }

    .jp-popup-close {
        right: 18px;
        top: 18px;
    }
}



/* founder */


.jp-founder-duo-section,
.jp-founder-duo-section * {
    box-sizing: border-box;
}

.jp-founder-duo-section {
    padding: 80px 20px;
    background: #135c7d;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}



/* decorative circle */
.jp-founder-duo-section::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -55px;
    top: 90px;
    opacity: 0.48;
}

.jp-founder-duo-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-founder-duo-head {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.jp-founder-duo-head span {
    display: inline-flex;
    background: #ffbf2f;
    color: #2b1006;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.jp-founder-duo-head h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 600;
    margin: 0 0 12px;
}

.jp-founder-duo-head h2 b {
    color: #ffbf2f;
    font-weight: 600;
}

.jp-founder-duo-head p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

/* cards */
.jp-founder-duo-card {
    background: #ffffff;
    border: 2px dashed rgba(255, 191, 47, 0.9);
    border-radius: 28px;
    padding: 16px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
    box-shadow: 0 20px 42px rgba(43, 16, 6, 0.22);
}

.jp-founder-duo-card:last-child {
    margin-bottom: 0;
}

.jp-founder-duo-reverse {
    grid-template-columns: 1.08fr 0.92fr;
}

.jp-founder-duo-reverse .jp-founder-duo-img {
    order: 2;
}

.jp-founder-duo-reverse .jp-founder-duo-content {
    order: 1;
}

/* image */
.jp-founder-duo-img {
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff7df;
    position: relative;
}

.jp-founder-duo-img::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 2px solid #ffbf2f;
    border-radius: 18px;
    z-index: 2;
    pointer-events: none;
}

.jp-founder-duo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.55s ease;
}

.jp-founder-duo-card:hover .jp-founder-duo-img img {
    transform: scale(1.06);
}

/* content */
.jp-founder-duo-content {
    padding: 10px 8px;
}

.jp-founder-duo-content > span {
    display: inline-flex;
    background: #135c7d;
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.jp-founder-duo-content h3 {
    font-family: "Fraunces", serif;
    color: #2b1006;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 14px;
}

.jp-founder-duo-content p {
    color: #735646;
    font-size: 14.5px;
    line-height: 1.85;
    font-weight: 500;
    margin: 0 0 14px;
}

/* mini points */
.jp-founder-mini-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.jp-founder-mini-points div {
    background: #fff7df;
    border-radius: 18px;
    padding: 15px;
    display: grid;
    gap: 6px;
    border-left: 5px solid #e82420;
}

.jp-founder-mini-points i {
    width: 42px;
    height: 42px;
    background: #ffbf2f;
    color: #2b1006;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-size: 17px;
}

.jp-founder-mini-points strong {
    color: #2b1006;
    font-size: 15px;
    font-weight: 600;
}

.jp-founder-mini-points small {
    color: #735646;
    font-size: 12.5px;
    line-height: 1.5;
    font-weight: 500;
}

/* responsive */
@media (max-width: 992px) {
    .jp-founder-duo-card,
    .jp-founder-duo-reverse {
        grid-template-columns: 1fr;
    }

    .jp-founder-duo-reverse .jp-founder-duo-img,
    .jp-founder-duo-reverse .jp-founder-duo-content {
        order: unset;
    }

    .jp-founder-duo-head h2 {
        font-size: 38px;
    }

    .jp-founder-duo-img {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .jp-founder-duo-section {
        padding: 80px 14px;
    }

    .jp-founder-duo-head {
        margin-bottom: 32px;
    }

    .jp-founder-duo-head h2 {
        font-size: 31px;
    }

    .jp-founder-duo-head p,
    .jp-founder-duo-content p {
        font-size: 13.5px;
    }

    .jp-founder-duo-card {
        padding: 12px;
        border-radius: 22px;
        gap: 20px;
    }

    .jp-founder-duo-img {
        height: 300px;
        border-radius: 18px;
    }

    .jp-founder-duo-content h3 {
        font-size: 25px;
    }

    .jp-founder-mini-points {
        grid-template-columns: 1fr;
    }
}

/* manufacturing facility */

jp-mf-section,
.jp-mf-section * {
    box-sizing: border-box;
}

.jp-mf-section {
    padding: 80px 20px;
    background: #135c7d;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}



.jp-mf-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: 90px;
    background: #ffbf2f;
    border-radius: 50%;
    opacity: 0.45;
    z-index: 0;
}

.jp-mf-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-mf-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.jp-mf-image {
    height: 540px;
    border-radius: 34px;
    overflow: hidden;
    background: #fff7df;
    box-shadow: 0 22px 48px rgba(43, 16, 6, 0.24);
    position: relative;
}

.jp-mf-image::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px solid #ffbf2f;
    border-radius: 26px;
    z-index: 2;
    pointer-events: none;
}

.jp-mf-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
}

.jp-mf-image:hover img {
    transform: scale(1.06);
}

/* Right Content */
.jp-mf-content {
    background: #ffffff;
    border: 2px dashed rgba(255, 191, 47, 0.95);
    border-radius: 34px;
    padding: 36px;
    box-shadow: 0 22px 48px rgba(43, 16, 6, 0.20);
}

.jp-mf-content > span {
    display: inline-flex;
    background: #ffbf2f;
    color: #2b1006;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.jp-mf-content h2 {
    font-family: "Fraunces", serif;
    color: #2b1006;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 600;
    margin: 0 0 18px;
}

.jp-mf-content h4 {
    color: #86b93b;
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    font-weight: 700;
    margin: 0 0 20px;
}

.jp-mf-content > p {
    color: #735646;
    font-size: 14.5px;
    line-height: 1.85;
    font-weight: 500;
    margin: 0 0 26px;
}

.jp-mf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e82420;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.35s ease;
}

.jp-mf-btn:hover {
    background: #86b93b;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Bottom 4 Stats */
.jp-mf-bottom-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.jp-mf-bottom-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px 22px;
    min-height: 210px;
    color: #2b1006;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(43, 16, 6, 0.20);
    border-bottom: 6px solid #ffbf2f;
}

.jp-mf-bottom-card::before {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    right: -28px;
    bottom: -28px;
    background: #86b93b;
    border-radius: 50%;
    opacity: 0.35;
}

.jp-mf-bottom-top {
    min-height: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.jp-mf-bottom-top h3 {
    color: #135c7d;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0;
}

.jp-mf-bottom-top i {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 18px;
    background: #e82420;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 22px;
}

.jp-mf-bottom-line {
    width: 100%;
    height: 1px;
    background: rgba(43, 16, 6, 0.18);
    margin: 8px 0 18px;
    position: relative;
    z-index: 2;
}

.jp-mf-bottom-card strong {
    display: block;
    color: #2b1006;
    font-family: "Fraunces", serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.jp-mf-bottom-card strong span {
    display: inline-block;
}

.jp-mf-bottom-card p {
    color: #735646;
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
}

.jp-mf-count,
.jp-mf-static {
    animation: jpMfNumberRotate 1.8s ease forwards;
    transform-origin: center;
}

@keyframes jpMfNumberRotate {
    0% {
        opacity: 0;
        transform: rotateX(90deg) scale(0.75);
    }

    55% {
        opacity: 1;
        transform: rotateX(-12deg) scale(1.08);
    }

    100% {
        opacity: 1;
        transform: rotateX(0deg) scale(1);
    }
}

.jp-mf-bottom-card:hover .jp-mf-bottom-top i {
    background: #86b93b;
}

@media (max-width: 992px) {
    .jp-mf-main {
        grid-template-columns: 1fr;
    }

    .jp-mf-image {
        height: 440px;
    }

    .jp-mf-content h2 {
        font-size: 38px;
    }

    .jp-mf-bottom-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .jp-mf-section {
        padding: 80px 14px;
    }

    .jp-mf-main {
        gap: 24px;
    }

    .jp-mf-image {
        height: 320px;
        border-radius: 26px;
    }

    .jp-mf-content {
        padding: 24px;
        border-radius: 26px;
    }

    .jp-mf-content h2 {
        font-size: 31px;
    }

    .jp-mf-content h4,
    .jp-mf-content > p {
        font-size: 13.5px;
    }

    .jp-mf-bottom-stats {
        grid-template-columns: 1fr;
    }

    .jp-mf-bottom-card {
        min-height: 190px;
    }

    .jp-mf-bottom-card strong {
        font-size: 36px;
    }
}

/*advanced manufacturing infrastructure */



.jp-advanced-infra-new,
.jp-advanced-infra-new * {
    box-sizing: border-box;
}

.jp-advanced-infra-new {
    padding: 80px 20px;
    background: #f58220;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.jp-advanced-infra-new::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 5;
}

.jp-advanced-infra-new::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -90px;
    top: 70px;
    opacity: 0.55;
}

.jp-ain-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-ain-head {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center;
}

.jp-ain-head span {
    display: inline-flex;
    background: #2b1006;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.jp-ain-head h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 600;
    margin: 0 0 12px;
}

.jp-ain-head p {
    color: rgba(255,255,255,0.92);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}

/* Big image */
.jp-ain-image-box {
    height: 650px;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    background: #fff7df;
    border: 12px solid #ffffff;
    box-shadow: 0 24px 55px rgba(43, 16, 6, 0.25);
}

.jp-ain-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.65s ease;
}

.jp-ain-image-box:hover img {
    transform: scale(1.06);
}

.jp-ain-floating {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #ffffff;
    border-radius: 24px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 18px 38px rgba(43, 16, 6, 0.22);
    border-left: 7px solid #e82420;
}

.jp-ain-floating i {
    width: 54px;
    height: 54px;
    background: #1554c0;
    color: #ffffff;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 23px;
}

.jp-ain-floating strong {
    display: block;
    color: #2b1006;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.jp-ain-floating small {
    color: #735646;
    font-size: 13px;
    font-weight: 500;
}

/* Feature grid */
.jp-ain-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.jp-ain-feature {
    min-height: 250px;
    border-radius: 30px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(43, 16, 6, 0.20);
}

.jp-ain-feature::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(255,255,255,0.22);
    border-radius: 50%;
    right: -34px;
    bottom: -34px;
}

.jp-ain-feature:nth-child(2),
.jp-ain-feature:nth-child(4) {
    margin-top: 34px;
}

.jp-red {
    background: #e82420;
}

.jp-blue {
    background: #1554c0;
}

.jp-green {
    background: #86b93b;
}

.jp-yellow {
    background: #ffbf2f;
}

.jp-ain-icon {
    width: 60px;
    height: 60px;
    border-radius: 22px;
    background: #ffffff;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.jp-ain-icon i {
    color: #2b1006;
    font-size: 24px;
}

.jp-ain-feature h3 {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
}

.jp-ain-feature p {
    color: rgba(255,255,255,0.88);
    font-size: 13.5px;
    line-height: 1.65;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
}

.jp-yellow h3,
.jp-yellow p {
    color: #2b1006;
}

.jp-ain-feature:hover .jp-ain-icon {
    transform: rotateY(360deg);
    transition: all 0.8s ease;
}

@media (max-width: 992px) {
    .jp-ain-head h2 {
        font-size: 38px;
    }

    .jp-ain-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-ain-feature:nth-child(2),
    .jp-ain-feature:nth-child(4) {
        margin-top: 0;
    }

    .jp-ain-image-box {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .jp-advanced-infra-new {
        padding: 80px 14px;
    }

    .jp-ain-head h2 {
        font-size: 31px;
    }

    .jp-ain-head p {
        font-size: 13.5px;
    }

    .jp-ain-image-box {
        height: 300px;
        border-radius: 28px;
        border-width: 8px;
    }

    .jp-ain-floating {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
        border-radius: 20px;
    }

    .jp-ain-feature-grid {
        grid-template-columns: 1fr;
    }

    .jp-ain-feature {
        min-height: 220px;
    }
}



/* high production capacity & scalability */

.jp-capacity-section,
.jp-capacity-section * {
    box-sizing: border-box;
}

.jp-capacity-section {
    width: 100%;
    padding: 80px 20px;
    background: #005534;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.jp-capacity-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 5;
}

.jp-capacity-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: #86b93b;
    border-radius: 50%;
    right: -60px;
    top: 80px;
    opacity: 0.55;
    animation: jpCapacityShape 5s ease-in-out infinite alternate;
}

@keyframes jpCapacityShape {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(24px) rotate(18deg);
    }
}

.jp-capacity-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.jp-capacity-left span {
    display: inline-flex;
    background: #ffffff;
    color: #005534;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.jp-capacity-left h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.08;
    margin: 0 0 18px;
}

.jp-capacity-left p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 26px;
}

.jp-capacity-points {
    display: grid;
    gap: 14px;
}

.jp-capacity-points div {
    background: #ffffff;
    border-radius: 18px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #2b1006;

    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(43, 16, 6, 0.16);
    transform: translateX(-24px);
    opacity: 0;
    animation: jpCapacityPointIn 0.8s ease forwards;
}

.jp-capacity-points div:nth-child(1) {
    animation-delay: 0.15s;
}

.jp-capacity-points div:nth-child(2) {
    animation-delay: 0.30s;
}

.jp-capacity-points div:nth-child(3) {
    animation-delay: 0.45s;
}

@keyframes jpCapacityPointIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.jp-capacity-points i {
    width: 42px;
    height: 42px;
    background: #e82420;
    color: #ffffff;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}

.jp-capacity-right {
    display: grid;
    gap: 22px;
}

.jp-capacity-main-card {
    background: #ffffff;
    border-radius: 34px;
    padding: 34px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(43, 16, 6, 0.18);
    animation: jpCapacityCardFloat 3s ease-in-out infinite alternate;
}

.jp-capacity-main-card::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    background: #86b93b;
    border-radius: 50%;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    opacity: 0.28;
}

@keyframes jpCapacityCardFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.jp-capacity-icon {
    width: 78px;
    height: 78px;
    background: #e82420;
    color: #ffffff;
    border-radius: 26px;
    display: grid;
    place-items: center;
    font-size: 32px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 2;
    animation: jpCapacityIconRotate 2.2s ease-in-out infinite alternate;
}

@keyframes jpCapacityIconRotate {
    from {
        transform: rotateY(0deg) scale(1);
    }

    to {
        transform: rotateY(18deg) scale(1.06);
    }
}

.jp-capacity-main-card h3 {
    font-family: "Fraunces", serif;
    color: #2b1006;
    font-size: 58px;
    line-height: 1;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
    animation: jpCapacityNumberPulse 1.8s ease-in-out infinite alternate;
}

@keyframes jpCapacityNumberPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.jp-capacity-main-card p {
    color: #735646;
    font-size: 15px;
    font-weight: 900;
    margin: 0;
    position: relative;
    z-index: 2;
}

.jp-capacity-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.jp-capacity-mini-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 22px 14px;
    text-align: center;
    box-shadow: 0 16px 32px rgba(43, 16, 6, 0.14);
    transition: all 0.35s ease;
}

.jp-capacity-mini-card:hover {
    transform: translateY(-8px);
}

.jp-capacity-mini-card i {
    width: 52px;
    height: 52px;
    background: #1554c0;
    color: #ffffff;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin: 0 auto 14px;
}

.jp-capacity-mini-card:nth-child(2) i {
    background: #86b93b;
}

.jp-capacity-mini-card:nth-child(3) i {
    background: #b0005a;
}

.jp-capacity-mini-card:nth-child(4) i {
    background: #0b6f78;
}

.jp-capacity-mini-card h4 {
    color: #2b1006;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 6px;
}

.jp-capacity-mini-card p {
    color: #735646;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0;
}

@media (max-width: 992px) {
    .jp-capacity-wrap {
        grid-template-columns: 1fr;
    }

    .jp-capacity-left {
        text-align: center;
    }

    .jp-capacity-left h2 {
        font-size: 38px;
    }

    .jp-capacity-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .jp-capacity-section {
        padding: 80px 14px;
    }

    .jp-capacity-left h2 {
        font-size: 31px;
    }

    .jp-capacity-left p {
        font-size: 13.5px;
    }

    .jp-capacity-main-card h3 {
        font-size: 46px;
    }

    .jp-capacity-main-card {
        border-radius: 26px;
        padding: 28px 18px;
    }

    .jp-capacity-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* process */


.jp-process-section,
.jp-process-section * {
    box-sizing: border-box;
}

.jp-process-section {
    width: 100%;
    padding: 80px 20px;
    background: #a2d9f7;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.jp-process-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 10px;
    background: #ffffff;
    z-index: 5;
}

.jp-process-section::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    background: #65c8f5;
    border-radius: 50%;
    right: -80px;
    top: 90px;
    opacity: 0.55;
    animation: jpProcessShapeMove 5s ease-in-out infinite alternate;
}

@keyframes jpProcessShapeMove {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(24px) rotate(18deg);
    }
}

.jp-process-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-process-head {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.jp-process-head span {
    display: inline-flex;
    background: #ffffff;
    color: #0b6f78;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 10px 22px rgba(43, 16, 6, 0.08);
}

.jp-process-head h2 {
    font-family: "Fraunces", serif;
    color: #2b1006;
    font-size: 44px;
    line-height: 1.08;
    margin: 0 0 14px;
}

.jp-process-head p {
    color: #2b1006;
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
    font-weight: 600;
}

.jp-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.jp-process-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 32px 24px 28px;
    position: relative;
    overflow: hidden;
    min-height: 285px;
    box-shadow: 0 18px 38px rgba(43, 16, 6, 0.14);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.jp-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(43, 16, 6, 0.18);
}

.jp-process-card::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -34px;
    top: -34px;
    opacity: 0.32;
}

.jp-process-card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: #65c8f5;
    border-radius: 50%;
    left: -28px;
    bottom: -28px;
    opacity: 0.35;
}

.jp-process-no {
    position: absolute;
    right: 22px;
    top: 18px;
    font-family: "Fraunces", serif;
    font-size: 46px;
    font-weight: 900;
    color: rgba(43, 16, 6, 0.10);
    line-height: 1;
}

.jp-process-icon {
    width: 70px;
    height: 70px;
    background: #e82420;
    color: #ffffff;
    border-radius: 24px;
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    animation: jpProcessIconFloat 2.4s ease-in-out infinite alternate;
}

@keyframes jpProcessIconFloat {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-7px) rotate(6deg);
    }
}

.jp-process-card:nth-child(2) .jp-process-icon {
    background: #1554c0;
}

.jp-process-card:nth-child(3) .jp-process-icon {
    background: #f58220;
}

.jp-process-card:nth-child(4) .jp-process-icon {
    background: #0b6f78;
}

.jp-process-card:nth-child(5) .jp-process-icon {
    background: #b0005a;
}

.jp-process-card:nth-child(6) .jp-process-icon {
    background: #86b93b;
}

.jp-process-card h3 {
    color: #2b1006;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
    margin: 0 0 12px;
    position: relative;
    z-index: 2;
}

.jp-process-card p {
    color: #735646;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .jp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-process-head h2 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .jp-process-section {
        padding: 80px 14px;
    }

    .jp-process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jp-process-head h2 {
        font-size: 31px;
    }

    .jp-process-head p {
        font-size: 13.5px;
    }

    .jp-process-card {
        border-radius: 24px;
        min-height: auto;
        padding: 28px 20px;
    }

    .jp-process-card h3 {
        font-size: 20px;
    }
}


/* quality control integrated into production */

.jp-quality-section,
.jp-quality-section * {
    box-sizing: border-box;
}

.jp-quality-section {
    width: 100%;
    padding: 80px 20px;
    background: #e31e25;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.jp-quality-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 5;
}

.jp-quality-section::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -75px;
    top: 85px;
    opacity: 0.45;
    animation: jpQualityShape 5s ease-in-out infinite alternate;
}

@keyframes jpQualityShape {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(24px) rotate(18deg);
    }
}

.jp-quality-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-quality-head {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
    opacity: 0;
}

.jp-quality-section.jp-quality-show .jp-quality-head {
    animation: jpQualityHeadIn 0.8s ease forwards;
}

@keyframes jpQualityHeadIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jp-quality-head span {
    display: inline-flex;
    background: #ffffff;
    color: #e31e25;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.jp-quality-head h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.08;
    margin: 0 0 14px;
}

.jp-quality-head p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
    font-weight: 600;
}

.jp-quality-main {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.jp-quality-big-card {
    height: 100%;
    min-height: 440px;
    background: #ffffff;
    border-radius: 34px;
    padding: 38px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(43, 16, 6, 0.20);
    opacity: 0;
}

.jp-quality-section.jp-quality-show .jp-quality-big-card {
    animation: jpQualityBigIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        jpQualityFloat 3s ease-in-out infinite alternate 1s;
}

@keyframes jpQualityBigIn {
    from {
        opacity: 0;
        transform: translateX(-45px) scale(0.94);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes jpQualityFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

.jp-quality-big-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -55px;
    top: -55px;
    opacity: 0.35;
}

.jp-quality-big-card::after {
    content: "";
    position: absolute;
    width: 105px;
    height: 105px;
    background: #86b93b;
    border-radius: 50%;
    left: -35px;
    bottom: -35px;
    opacity: 0.30;
}

.jp-quality-big-icon {
    width: 86px;
    height: 86px;
    background: #e31e25;
    color: #ffffff;
    border-radius: 28px;
    display: grid;
    place-items: center;
    font-size: 38px;
    margin-bottom: 26px;
    position: relative;
    z-index: 2;
}

.jp-quality-section.jp-quality-show .jp-quality-big-icon {
    animation: jpQualityIconPop 1s ease forwards;
}

.jp-quality-big-card h3 {
    font-family: "Fraunces", serif;
    color: #2b1006;
    font-size: 36px;
    line-height: 1.12;
    margin: 0 0 16px;
    position: relative;
    z-index: 2;
}

.jp-quality-big-card p {
    color: #735646;
    font-size: 14.5px;
    line-height: 1.75;
    font-weight: 600;
    margin: 0 0 26px;
    position: relative;
    z-index: 2;
}

.jp-quality-meter {
    width: 100%;
    height: 14px;
    background: #fff0d1;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.jp-quality-meter-fill {
    width: 0;
    height: 100%;
    background: #86b93b;
    border-radius: 50px;
}

.jp-quality-section.jp-quality-show .jp-quality-meter-fill {
    animation: jpQualityFill 1.8s ease forwards 0.55s;
}

@keyframes jpQualityFill {
    to {
        width: 94%;
    }
}

.jp-quality-big-card strong {
    display: inline-flex;
    color: #2b1006;
    font-size: 15px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.jp-quality-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.jp-quality-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    min-height: 210px;
    box-shadow: 0 18px 38px rgba(43, 16, 6, 0.18);
    transition: all 0.4s ease;
    opacity: 0;
}

.jp-quality-section.jp-quality-show .jp-quality-card {
    animation: jpQualityCardIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.jp-quality-section.jp-quality-show .jp-quality-card:nth-child(1) {
    animation-delay: 0.15s;
}

.jp-quality-section.jp-quality-show .jp-quality-card:nth-child(2) {
    animation-delay: 0.30s;
}

.jp-quality-section.jp-quality-show .jp-quality-card:nth-child(3) {
    animation-delay: 0.45s;
}

.jp-quality-section.jp-quality-show .jp-quality-card:nth-child(4) {
    animation-delay: 0.60s;
}

@keyframes jpQualityCardIn {
    from {
        opacity: 0;
        transform: translateY(35px) rotateX(18deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.jp-quality-card:hover {
    transform: translateY(-8px);
}

.jp-quality-card::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -34px;
    top: -34px;
    opacity: 0.30;
}

.jp-quality-icon {
    width: 64px;
    height: 64px;
    background: #e31e25;
    color: #ffffff;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.jp-quality-section.jp-quality-show .jp-quality-icon {
    animation: jpQualityIconPop 1s ease forwards;
}

@keyframes jpQualityIconPop {
    0% {
        opacity: 0;
        transform: rotateY(90deg) scale(0.75);
    }

    60% {
        opacity: 1;
        transform: rotateY(0deg) scale(1.14);
    }

    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}

.jp-quality-card:nth-child(2) .jp-quality-icon {
    background: #1554c0;
}

.jp-quality-card:nth-child(3) .jp-quality-icon {
    background: #005534;
}

.jp-quality-card:nth-child(4) .jp-quality-icon {
    background: #b0005a;
}

.jp-quality-card h3 {
    color: #2b1006;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 900;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
}

.jp-quality-card p {
    color: #735646;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

.jp-card-shine {
    position: absolute;
    top: 0;
    left: -85%;
    width: 45%;
    height: 100%;
    background: rgba(255, 255, 255, 0.55);
    transform: skewX(-22deg);
    z-index: 4;
    pointer-events: none;
}

.jp-quality-section.jp-quality-show .jp-card-shine {
    animation: jpQualityShine 2.8s ease-in-out infinite;
}

@keyframes jpQualityShine {
    0% {
        left: -85%;
    }

    45% {
        left: 135%;
    }

    100% {
        left: 135%;
    }
}

@media (max-width: 992px) {
    .jp-quality-main {
        grid-template-columns: 1fr;
    }

    .jp-quality-head h2 {
        font-size: 38px;
    }

    .jp-quality-big-card {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .jp-quality-section {
        padding: 80px 14px;
    }

    .jp-quality-head h2 {
        font-size: 31px;
    }

    .jp-quality-head p {
        font-size: 13.5px;
    }

    .jp-quality-right {
        grid-template-columns: 1fr;
    }

    .jp-quality-big-card {
        border-radius: 26px;
        padding: 30px 22px;
    }

    .jp-quality-big-card h3 {
        font-size: 28px;
    }

    .jp-quality-card {
        border-radius: 24px;
        min-height: auto;
    }
}

/*safety, compliance & responsible operations */


.jp-safe-orbit-section,
.jp-safe-orbit-section * {
    box-sizing: border-box;
}

.jp-safe-orbit-section {
    width: 100%;
    padding: 80px 20px;
    background: #910355;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}

.jp-safe-orbit-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
    background: #ffffff;
    z-index: 10;
}

.jp-safe-orbit-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #ffbf2f;
    left: -100px;
    bottom: -100px;
    opacity: 0.28;
    animation: jpSafeBgBall 5s ease-in-out infinite alternate;
}

@keyframes jpSafeBgBall {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-25px) scale(1.08);
    }
}

.jp-safe-orbit-wrap {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jp-safe-orbit-head {
    max-width: 820px;
    text-align: center;
    margin: 0 auto 48px;
}

.jp-safe-orbit-head span {
    display: inline-flex;
    background: #ffffff;
    color: #910355;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.jp-safe-orbit-head h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 44px;
    line-height: 1.08;
    margin: 0 0 14px;
}

.jp-safe-orbit-head p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
    font-weight: 600;
}

.jp-safe-orbit-layout {
    display: grid;
    grid-template-columns: 1fr 360px 1fr;
    gap: 28px;
    align-items: center;
}

.jp-safe-orbit-col {
    display: grid;
    gap: 24px;
}

.jp-safe-info-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 18px 38px rgba(43, 16, 6, 0.18);
    position: relative;
    overflow: hidden;
    opacity: 0;
}

.jp-safe-info-card::before {
    content: "";
    position: absolute;
    width: 85px;
    height: 85px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -32px;
    top: -32px;
    opacity: 0.30;
}

.jp-safe-info-icon {
    width: 58px;
    height: 58px;
    background: #910355;
    color: #ffffff;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.jp-safe-info-card h3 {
    color: #2b1006;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 0 8px;
    position: relative;
    z-index: 2;
}

.jp-safe-info-card p {
    color: #735646;
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

.jp-safe-center {
    height: 360px;
    position: relative;
    display: grid;
    place-items: center;
}

.jp-safe-ring {
    width: 300px;
    height: 300px;
    border: 3px dashed rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    position: absolute;
    animation: jpSafeRingRotate 14s linear infinite;
}

@keyframes jpSafeRingRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.jp-safe-main-shield {
    width: 210px;
    height: 210px;
    background: #ffffff;
    border-radius: 48px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 25px;
    box-shadow: 0 22px 45px rgba(43, 16, 6, 0.22);
    position: relative;
    z-index: 3;
    animation: jpSafeShieldFloat 2.8s ease-in-out infinite alternate;
}

@keyframes jpSafeShieldFloat {
    from {
        transform: translateY(0) rotate(-2deg);
    }

    to {
        transform: translateY(-12px) rotate(2deg);
    }
}

.jp-safe-main-shield i {
    width: 78px;
    height: 78px;
    background: #910355;
    color: #ffffff;
    border-radius: 26px;
    display: grid;
    place-items: center;
    font-size: 36px;
    margin-bottom: 10px;
    animation: jpSafeShieldIcon 1.8s ease-in-out infinite alternate;
}

@keyframes jpSafeShieldIcon {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.10) rotateY(18deg);
    }
}

.jp-safe-main-shield h3 {
    font-family: "Fraunces", serif;
    color: #2b1006;
    font-size: 38px;
    line-height: 1;
    margin: 0 0 6px;
}

.jp-safe-main-shield p {
    color: #735646;
    font-size: 13px;
    font-weight: 900;
    margin: 0;
}

.jp-safe-orbit-icon {
    width: 54px;
    height: 54px;
    background: #ffffff;
    color: #910355;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 22px;
    position: absolute;
    z-index: 4;
    box-shadow: 0 12px 25px rgba(43, 16, 6, 0.18);
    animation: jpSafeOrbitPulse 1.8s ease-in-out infinite alternate;
}

@keyframes jpSafeOrbitPulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

.jp-safe-orbit-1 {
    top: 15px;
    left: 50%;
    margin-left: -27px;
    background: #ffbf2f;
    color: #2b1006;
}

.jp-safe-orbit-2 {
    right: 20px;
    top: 50%;
    margin-top: -27px;
    background: #86b93b;
    color: #ffffff;
}

.jp-safe-orbit-3 {
    bottom: 15px;
    left: 50%;
    margin-left: -27px;
    background: #1554c0;
    color: #ffffff;
}

.jp-safe-orbit-4 {
    left: 20px;
    top: 50%;
    margin-top: -27px;
    background: #0b6f78;
    color: #ffffff;
}

.jp-safe-strip {
    margin-top: 34px;
    background: #ffffff;
    border-radius: 28px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    box-shadow: 0 18px 38px rgba(43, 16, 6, 0.18);
}

.jp-safe-strip div {
    background: #fff7df;
    border-radius: 18px;
    padding: 15px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #2b1006;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.jp-safe-strip i {
    color: #86b93b;
    font-size: 17px;
    flex-shrink: 0;
}

/* SCROLL ANIMATION */
.jp-safe-orbit-section.jp-safe-show .jp-safe-orbit-head {
    animation: jpSafeHeadIn 0.8s ease forwards;
}

@keyframes jpSafeHeadIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jp-safe-orbit-head {
    opacity: 0;
}

.jp-safe-orbit-section.jp-safe-show .jp-safe-left-col .jp-safe-info-card {
    animation: jpSafeLeftIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.jp-safe-orbit-section.jp-safe-show .jp-safe-right-col .jp-safe-info-card {
    animation: jpSafeRightIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.jp-safe-orbit-section.jp-safe-show .jp-safe-left-col .jp-safe-info-card:nth-child(1),
.jp-safe-orbit-section.jp-safe-show .jp-safe-right-col .jp-safe-info-card:nth-child(1) {
    animation-delay: 0.15s;
}

.jp-safe-orbit-section.jp-safe-show .jp-safe-left-col .jp-safe-info-card:nth-child(2),
.jp-safe-orbit-section.jp-safe-show .jp-safe-right-col .jp-safe-info-card:nth-child(2) {
    animation-delay: 0.35s;
}

@keyframes jpSafeLeftIn {
    from {
        opacity: 0;
        transform: translateX(-45px) rotate(-4deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes jpSafeRightIn {
    from {
        opacity: 0;
        transform: translateX(45px) rotate(4deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

.jp-safe-strip {
    opacity: 0;
    transform: translateY(30px);
}

.jp-safe-orbit-section.jp-safe-show .jp-safe-strip {
    animation: jpSafeStripIn 0.8s ease forwards 0.55s;
}

@keyframes jpSafeStripIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jp-safe-info-card:hover {
    transform: translateY(-8px) scale(1.02);
}

@media (max-width: 992px) {
    .jp-safe-orbit-layout {
        grid-template-columns: 1fr;
    }

    .jp-safe-orbit-head h2 {
        font-size: 38px;
    }

    .jp-safe-center {
        order: -1;
    }

    .jp-safe-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .jp-safe-orbit-section {
        padding: 80px 14px;
    }

    .jp-safe-orbit-head h2 {
        font-size: 31px;
    }

    .jp-safe-orbit-head p {
        font-size: 13.5px;
    }

    .jp-safe-center {
        height: 300px;
    }

    .jp-safe-ring {
        width: 255px;
        height: 255px;
    }

    .jp-safe-main-shield {
        width: 185px;
        height: 185px;
        border-radius: 36px;
    }

    .jp-safe-main-shield h3 {
        font-size: 32px;
    }

    .jp-safe-strip {
        grid-template-columns: 1fr;
    }

    .jp-safe-info-card {
        border-radius: 24px;
    }
}

/* PRODUCTS SECTION POPUP IMG */


.jp-product-title-spec-section,
.jp-product-title-spec-section *,
.jp-inquiry-popup,
.jp-inquiry-popup * {
    box-sizing: border-box;
}

.jp-product-title-spec-section {
    width: 100%;
    padding: 80px 20px;
    background: #e31e25;
    font-family: "Poppins", sans-serif;
    position: relative;
    overflow: hidden;
}


.jp-product-title-spec-section::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    background: #ffbf2f;
    border-radius: 50%;
    right: -85px;
    top: 90px;
    opacity: 0.35;
    animation: jpProductBgMove 5s ease-in-out infinite alternate;
}

@keyframes jpProductBgMove {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(25px) scale(1.08);
    }
}

.jp-product-top-head {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.jp-product-top-head span {
    display: inline-flex;
    background: #ffffff;
    color: #e31e25;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.jp-product-top-head h2 {
    font-family: "Fraunces", serif;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.08;
    margin: 0 0 14px;
}

.jp-product-top-head p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
    margin: 0;
}

.jp-product-title-spec-wrap {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.jp-product-media-area {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 14px;
    align-items: center;
}

.jp-product-thumbs-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.jp-product-thumbs-left button {
    width: 78px;
    height: 88px;
    border: 2px solid transparent;
    background: #fff7df;
    border-radius: 12px;
    padding: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.28s ease;
    display: grid;
    place-items: center;
}

.jp-product-thumbs-left button.active {
    border-color: #2b1006;
    background: #ffffff;
}

.jp-product-thumbs-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.jp-product-thumbs-left button:hover img {
    transform: scale(1.15);
}

.jp-product-gallery-main {
    height: 520px;
    background: #fff7df;
    border-radius: 28px;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    box-shadow: 0 24px 55px rgba(43, 16, 6, 0.22);
}

.jp-product-gallery-main::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: #ffbf2f;
    border-radius: 50%;
    opacity: 0.42;
    animation: jpProductCirclePulse 2.8s ease-in-out infinite alternate;
}

@keyframes jpProductCirclePulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.10);
    }
}

.jp-product-gallery-main img {
    max-width: 88%;
    max-height: 470px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.12s ease-out;
    transform-origin: center center;
    will-change: transform;
}

.jp-product-gallery-main.zoom-active img {
    transform: scale(2.15);
}

.jp-product-title-spec-content {
    position: relative;
    z-index: 2;
}

.jp-product-title-spec-content h4 {
    color: #ffbf2f;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 24px;
}

.jp-product-title-btn {
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #e31e25;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: all 0.35s ease;
    cursor: pointer;
    font-family: "Poppins", sans-serif;

}

.jp-product-title-btn:hover {
    background: #ffbf2f;
    color: #2b1006;
    transform: translateY(-4px);
}

/* SPECIFICATION TABLE */
.jp-product-spec-table-box {
    width: 100%;
    background: #ffffff;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 42px rgba(43, 16, 6, 0.22);
}

.jp-product-spec-table-box h3 {
    color: #2b1006;
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 18px;
    line-height: 1.3;
}

.jp-product-spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d8d8d8;
    background: #ffffff;
}

.jp-product-spec-table td {
    border-bottom: 1px solid #d8d8d8;
    padding: 15px 16px;
    color: #000000;
    font-size: 14px;
    line-height: 1.4;
}

.jp-product-spec-table tr:last-child td {
    border-bottom: none;
}

.jp-product-spec-table td:first-child {
    width: 48%;
    background: #f2f2f2;
    font-weight: 500;
}

.jp-product-spec-table td:last-child {
    background: #ffffff;
    font-weight: 500;
}

/* POPUP */
.jp-inquiry-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    font-family: "Poppins", sans-serif;
}

.jp-inquiry-popup.active {
    display: flex;
}

.jp-inquiry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.jp-inquiry-modal {
    width: 100%;
    max-width: 435px;
    background: #ffffff;
    border-radius: 8px;
    padding: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.22);
    animation: jpPopupIn 0.3s ease forwards;
}

@keyframes jpPopupIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.jp-popup-close {
    position: absolute;
    right: -12px;
    top: -12px;
    width: 34px;
    height: 34px;
    border: none;
    background: #e31e25;
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 5;
}

.jp-popup-form {
    padding: 32px 24px 30px;
}

.jp-form-small-title {
    color: #000000;
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 18px;
    font-weight: 400;
}

.jp-popup-form h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px;
}

.jp-popup-form h2 {
    color: #e31e25;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 24px;
}

.jp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 12px;
}

.jp-form-field {
    position: relative;
}

.jp-form-field label {
    position: absolute;
    top: 9px;
    left: 16px;
    color: #7c7c7c;
    font-size: 14px;
    pointer-events: none;
}

.jp-form-field input,
.jp-form-field select {
    width: 100%;
    height: 50px;
    border: 1px solid #cfd7e3;
    border-radius: 7px;
    background: #ffffff;
    color: #222222;
    font-size: 15px;
    padding: 20px 15px 7px;
    outline: none;
    font-family: "Poppins", sans-serif;
}

.jp-form-field.full input {
    padding: 0 16px;
    height: 50px;
}

.jp-form-field select {
    appearance: auto;
}

.jp-qty-buttons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-bottom: 12px;

}

.jp-qty-buttons button {
    border: none;
    background: #edf0f4;
    color: #1d2b38;
    height: 24px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}

.jp-qty-buttons button.active {
    background: #e9f8ff;
    border: 1px solid #77bdd8;
}

.mobile-row {
    margin-top: 12px;
}

.country-code {
    max-width: 106px;
}

.country-code select {
    padding: 0 10px;
    height: 50px;
}

.jp-qty-error {
    display: none;
    color: #e31e25;
    font-size: 12px;
    font-weight: 700;
    margin: 2px 0 12px;
}

.jp-qty-error.show {
    display: block;
}

.jp-submit-btn {
    margin-top: 20px;
    width: 234px;
    height: 48px;
    border: none;
    border-radius: 7px;
    background: #ed1c24;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

@media (max-width: 992px) {
    .jp-product-title-spec-wrap {
        grid-template-columns: 1fr;
    }

    .jp-product-title-spec-content {
        text-align: center;
    }

    .jp-product-top-head h2 {
        font-size: 38px;
    }

    .jp-product-media-area {
        max-width: 650px;
        margin: 0 auto;
    }

    .jp-product-spec-table-box {
        max-width: 650px;
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .jp-product-title-spec-section {
        padding: 80px 14px;
    }

    .jp-product-top-head {
        margin-bottom: 34px;
    }

    .jp-product-top-head h2 {
        font-size: 31px;
    }

    .jp-product-top-head p {
        font-size: 13.5px;
    }

    .jp-product-media-area {
        grid-template-columns: 1fr;
    }

    .jp-product-gallery-main {
        order: 1;
        height: 340px;
        border-radius: 22px;
    }

    .jp-product-gallery-main img {
        max-height: 300px;
    }

    .jp-product-gallery-main.zoom-active img {
        transform: scale(1.65);
    }

    .jp-product-thumbs-left {
        order: 2;
        grid-template-columns: repeat(4, 1fr);
    }

    .jp-product-thumbs-left button {
        width: 100%;
        height: 76px;
        border-radius: 12px;
        padding: 5px;
    }

    .jp-product-title-spec-content h4 {
        font-size: 22px;
    }

    .jp-product-spec-table-box {
        padding: 18px;
        border-radius: 20px;
    }

    .jp-product-spec-table-box h3 {
        font-size: 18px;
    }

    .jp-product-spec-table td {
        padding: 12px 10px;
        font-size: 12.5px;
    }

    .jp-form-row {
        grid-template-columns: 1fr;
    }

    .mobile-row {
        grid-template-columns: 106px 1fr;
    }

    .jp-submit-btn {
        width: 100%;
    }
}



.jp-bridge-nav-section,
.jp-bridge-nav-section * {
    box-sizing: border-box;
}

.jp-bridge-nav-section {
    width: 100%;
    padding: 0 20px 0px;
    background:#135c7d;
    font-family: "Poppins", sans-serif;
    position: relative;
    z-index: 20;
    overflow: visible;
}

.jp-bridge-nav-container {
    max-width: 1180px;
    margin: 0 auto -52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    transform: translateY(-52px);
    position: relative;
    z-index: 2;
}

.jp-bridge-nav-card {
    background: #ffdf00;
    border-radius: 28px;
    padding: 22px 24px;
    min-height: 134px;
    display: grid;
    grid-template-columns: 34px 82px 1fr 22px;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 42px rgba(43, 16, 6, 0.18);
    transition: all 0.35s ease;
}

.jp-bridge-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(43, 16, 6, 0.24);
}

.jp-bridge-nav-card::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    background: #ffffff;
    border-radius: 50%;
    right: -45px;
    top: -45px;
    opacity: 0.35;
}

.jp-bridge-nav-card::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    background: #f58220;
    border-radius: 50%;
    left: -28px;
    bottom: -28px;
    opacity: 0.20;
}

.jp-bridge-nav-no {
    color: #e31e25;
    font-size: 14px;
    font-weight: 1000;
    position: relative;
    z-index: 2;
}

.jp-bridge-nav-img {
    width: 82px;
    height: 82px;
    background: #fff7df;
    border-radius: 24px;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.jp-bridge-nav-img img {
    width: 84%;
    height: 84%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.jp-bridge-nav-card:hover .jp-bridge-nav-img img {
    transform: scale(1.12) rotate(-3deg);
}

.jp-bridge-nav-text {
    position: relative;
    z-index: 2;
}

.jp-bridge-nav-text h3 {
    font-family: "Fraunces", serif;
    color: #005534;
    font-size: 27px;
    line-height: 0.98;
    font-weight: 900;
    margin: 0 0 8px;
}

.jp-bridge-nav-text p {
    color: #2b1006;
    font-size: 13px;

    line-height: 1.35;
    font-weight: 800;
    margin: 0;
}

.jp-bridge-nav-card > i {
    color: #e31e25;
    font-size: 18px;
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease;
}

.jp-bridge-nav-card:hover > i {
    transform: translateX(6px);
}

@media (max-width: 992px) {
    .jp-bridge-nav-container {
        grid-template-columns: 1fr;
        max-width: 620px;
        transform: translateY(-45px);
        margin-bottom: -45px;
    }
}

@media (max-width: 576px) {
    .jp-bridge-nav-section {
        padding: 0 14px 28px;
    }

    .jp-bridge-nav-container {
        gap: 14px;
        transform: translateY(-38px);
        margin-bottom: -38px;
    }

    .jp-bridge-nav-card {
        grid-template-columns: 28px 68px 1fr 18px;
        gap: 12px;
        padding: 18px 16px;
        min-height: 112px;
        border-radius: 22px;
    }

    .jp-bridge-nav-img {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .jp-bridge-nav-text h3 {
        font-size: 22px;
    }

    .jp-bridge-nav-text p {
        font-size: 12px;
    }
}




/*.jp-bridge-nav-container {
  
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}*/


.jp-trust-experience.jp-range-bg-green {
    background: #005534 !important;
}

/* ===== ONLY RESPONSIVE FIX FOR JP BRIDGE NAV ===== */

/* Tablet */
@media (max-width: 991px) {
    .jp-bridge-nav-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    .jp-bridge-nav-container {
        max-width: 100% !important;
        width: 100% !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        box-sizing: border-box !important;
    }

    .jp-bridge-nav-card {
        min-width: 0 !important;
        width: 100% !important;
        min-height: 120px !important;
        padding: 18px 36px 18px 12px !important;
        gap: 10px !important;
        box-sizing: border-box !important;
    }

    .jp-bridge-nav-no {
        font-size: 13px !important;
        min-width: 22px !important;
    }

    .jp-bridge-nav-img {
        width: 56px !important;
        min-width: 56px !important;
        height: 56px !important;
    }

    .jp-bridge-nav-img img {
        max-width: 48px !important;
        max-height: 48px !important;
    }

    .jp-bridge-nav-text {
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .jp-bridge-nav-text h3 {
        font-size: 19px !important;
        line-height: 1 !important;
        margin-bottom: 5px !important;
        white-space: normal !important;
    }

    .jp-bridge-nav-text p {
        font-size: 11px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }

    .jp-bridge-nav-card i {
        right: 14px !important;
        font-size: 15px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .jp-bridge-nav-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .jp-bridge-nav-container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .jp-bridge-nav-card {
        min-height: 118px !important;
        padding: 20px 44px 20px 16px !important;
        gap: 14px !important;
    }

    .jp-bridge-nav-img {
        width: 64px !important;
        min-width: 64px !important;
        height: 64px !important;
    }

    .jp-bridge-nav-img img {
        max-width: 55px !important;
        max-height: 55px !important;
    }

    .jp-bridge-nav-text h3 {
        font-size: 21px !important;
        line-height: 1 !important;
    }

    .jp-bridge-nav-text p {
        font-size: 13px !important;
        line-height: 1.25 !important;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .jp-bridge-nav-card {
        padding: 18px 38px 18px 14px !important;
        gap: 12px !important;
    }

    .jp-bridge-nav-img {
        width: 56px !important;
        min-width: 56px !important;
        height: 56px !important;
    }

    .jp-bridge-nav-img img {
        max-width: 48px !important;
        max-height: 48px !important;
    }

    .jp-bridge-nav-text h3 {
        font-size: 19px !important;
    }

    .jp-bridge-nav-text p {
        font-size: 12px !important;
    }
}


/* ===== JALPOOREE UNIQUE BLOG SECTION ===== */

.jp-home-blog-block {
    width: 100%;
    padding: 80px 0;
    background: #8cbc44;
    position: relative;
    overflow: hidden;
}

.jp-home-blog-block .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.jp-home-blog-title {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.jp-home-blog-title span {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 14px;
    background: #ffe100;
    color: #135c7d;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.jp-home-blog-title h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
    color: #ffffff;
}

.jp-home-blog-title p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.jp-home-blog-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.jp-home-blog-item {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 0 #ffe100;
    transition: 0.3s ease;
}

.jp-home-blog-item:hover {
    transform: translateY(-6px);
}

.jp-home-blog-red {
    box-shadow: 0 12px 0 #e02718;
}

.jp-home-blog-green {
    box-shadow: 0 12px 0 #00452b;
}

.jp-home-blog-photo {
    height: 245px;
    display: block;
    position: relative;
    overflow: hidden;
    background: #fff7d6;
}

.jp-home-blog-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 25px;
    background: #fff7d6;
    transition: 0.4s ease;
    box-sizing: border-box;
}

.jp-home-blog-item:hover .jp-home-blog-photo img {
    transform: scale(1.06);
}

.jp-home-blog-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 15px;
    background: #e02718;
    color: #ffffff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.jp-home-blog-info {
    padding: 24px 24px 28px;
    background: #ffffff;
}

.jp-home-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.jp-home-blog-meta span {
    font-size: 13px;
    font-weight: 700;
    color: #e02718;
}

.jp-home-blog-meta i {
    margin-right: 5px;
}

.jp-home-blog-info h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.18;
    font-weight: 800;
}

.jp-home-blog-info h3 a {
    color: #135c7d;
    text-decoration: none;
    transition: 0.3s ease;
}

.jp-home-blog-info h3 a:hover {
    color: #e02718;
}

.jp-home-blog-info p {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.65;
    color: #4d4d4d;
}

.jp-home-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #135c7d;
    color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
}

.jp-home-blog-link:hover {
    background: #e02718;
    color: #ffffff;
}

.jp-home-blog-link i {
    font-size: 13px;
}

/* Tablet */
@media (max-width: 991px) {
    .jp-home-blog-title h2 {
        font-size: 34px;
    }

    .jp-home-blog-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .jp-home-blog-photo {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .jp-home-blog-block {
        padding: 60px 0;
    }

    .jp-home-blog-title {
        margin-bottom: 28px;
    }

    .jp-home-blog-title h2 {
        font-size: 28px;
    }

    .jp-home-blog-title p {
        font-size: 15px;
    }

    .jp-home-blog-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .jp-home-blog-info {
        padding: 22px 20px 26px;
    }

    .jp-home-blog-info h3 {
        font-size: 22px;
    }

    .jp-home-blog-photo {
        height: 210px;
    }
}


/* ===== JALPOOREE CONTACT MAP SECTION ===== */

.jp-contact-map-section {
    width: 100%;
    padding: 80px 0;
    background: #fff7d6;
    position: relative;
    overflow: hidden;
}

.jp-contact-map-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.jp-contact-map-head {
    max-width: 650px;
    margin: 0 auto 35px;
    text-align: center;
}

.jp-contact-map-head span {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 14px;
    background: #e02718;
    color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.jp-contact-map-head h2 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
    color: #00452b;
}

.jp-contact-map-head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4d4d4d;
}

.jp-contact-map-box {
    width: 100%;
    height: 460px;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 0 #ffe100;
    border: 8px solid #ffffff;
}

.jp-contact-map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .jp-contact-map-head h2 {
        font-size: 34px;
    }

    .jp-contact-map-box {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .jp-contact-map-section {
        padding: 60px 0;
    }

    .jp-contact-map-head {
        margin-bottom: 28px;
    }

    .jp-contact-map-head h2 {
        font-size: 28px;
    }

    .jp-contact-map-head p {
        font-size: 15px;
    }

    .jp-contact-map-box {
        height: 340px;
        border-radius: 22px;
        border-width: 6px;
    }
}




/* ===== JALPOOREE CONTACT PAGE ===== */

.jp-contact-page-section {
    width: 100%;
    padding: 80px 0;
    background: #a2d9f7;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.jp-contact-page-section .container,
.jp-contact-map-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.jp-contact-page-head {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.jp-contact-page-head span {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 14px;
    background: #e02718;
    color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.jp-contact-page-head h2 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
    color: #00452b;
}

.jp-contact-page-head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #245064;
}

.jp-contact-page-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 30px;
    align-items: stretch;
}

.jp-contact-info-card,
.jp-contact-form-card {
    background: #fffdf4;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 12px 0 rgba(0, 69, 43, 0.16);
    box-sizing: border-box;
}

.jp-contact-small-title {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e02718;
    font-weight: 900;
}

.jp-contact-info-card h3,
.jp-contact-form-card h3 {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 800;
    color: #1f1714;
}

.jp-contact-text {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.55;
    color: #5f5b55;
}

.jp-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jp-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.5;
    color: #34312d;
    font-weight: 600;
}

.jp-contact-list li:last-child {
    margin-bottom: 0;
}

.jp-contact-list i {
    width: 22px;
    min-width: 22px;
    height: 22px;
    margin-top: 2px;
    color: #e02718;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jp-contact-list strong {
    font-weight: 900;
}

.jp-contact-list a {
    color: #34312d;
    text-decoration: none;
    transition: 0.3s ease;
}

.jp-contact-list a:hover {
    color: #e02718;
}

/* Form */
.jp-contact-form-card form {
    margin: 0;
}

.jp-form-row {
    margin-bottom: 14px;
}

.jp-form-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.jp-contact-form-card input,
.jp-contact-form-card textarea {
    width: 100%;
    border: 1px solid rgba(224, 39, 24, 0.22);
    background: #fffdf4;
    border-radius: 12px;
    padding: 14px 14px;
    font-size: 14px;
    color: #1f1714;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

.jp-contact-form-card textarea {
    height: 95px;
    resize: none;
}

.jp-contact-form-card input::placeholder,
.jp-contact-form-card textarea::placeholder {
    color: #7a7772;
}

.jp-contact-form-card input:focus,
.jp-contact-form-card textarea:focus {
    border-color: #e02718;
}

.jp-contact-submit-btn {
    width: 100%;
    border: 0;
    padding: 14px 20px;
    border-radius: 14px;
    background: #5b9408;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s ease;
}

.jp-contact-submit-btn:hover {
    background: #00452b;
}

/* ===== SEPARATE MAP SECTION ===== */

.jp-contact-map-section {
    width: 100%;
    padding: 80px 0;
    background: #ffbf31;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.jp-contact-map-title {
    text-align: center;
    margin-bottom: 30px;
}

.jp-map-big-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: #e02718;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 0 #ffe100;
}

.jp-contact-map-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    margin-bottom: 12px;
    background: #ffe100;
    color: #00452b;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.jp-contact-map-title h3 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.15;
    color: #00452b;
    font-weight: 800;
}

.jp-contact-map-title p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #5f5b55;
}

.jp-contact-map-box {
    width: 100%;
    height: 460px;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 8px solid #ffffff;
    box-shadow: 0 12px 0 #ffe100;
    box-sizing: border-box;
}

.jp-contact-map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .jp-contact-page-head h2 {
        font-size: 34px;
    }

    .jp-contact-page-grid {
        grid-template-columns: 1fr;
    }

    .jp-contact-info-card,
    .jp-contact-form-card {
        padding: 28px;
    }

    .jp-contact-map-title h3 {
        font-size: 34px;
    }

    .jp-contact-map-box {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .jp-contact-page-section,
    .jp-contact-map-section {
        padding: 60px 0;
    }

    .jp-contact-page-head {
        margin-bottom: 28px;
    }

    .jp-contact-page-head h2 {
        font-size: 28px;
    }

    .jp-contact-page-head p {
        font-size: 15px;
    }

    .jp-contact-info-card,
    .jp-contact-form-card {
        padding: 22px;
        border-radius: 22px;
    }

    .jp-contact-info-card h3,
    .jp-contact-form-card h3 {
        font-size: 27px;
    }

    .jp-form-two {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .jp-contact-list li {
        font-size: 14px;
        gap: 12px;
    }

    .jp-contact-list i {
        width: 20px;
        min-width: 20px;
        font-size: 15px;
    }

    .jp-map-big-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .jp-contact-map-title h3 {
        font-size: 28px;
    }

    .jp-contact-map-title p {
        font-size: 15px;
    }

    .jp-contact-map-box {
        height: 340px;
        border-radius: 22px;
        border-width: 6px;
    }
}

/* Small Mobile */
@media (max-width: 420px) {
    .jp-contact-info-card,
    .jp-contact-form-card {
        padding: 20px 18px;
    }

    .jp-contact-info-card h3,
    .jp-contact-form-card h3 {
        font-size: 25px;
    }

    .jp-contact-list li {
        font-size: 13.5px;
    }

    .jp-contact-map-box {
        height: 310px;
    }
}


/* ================= RECIPES CARD SECTION START ================= */

.jp-recipes-card-section {
    width: 100%;
    padding: 80px 0;
    background: #910355;
    position: relative;
    overflow: hidden;
}

.jp-recipes-card-section * {
    box-sizing: border-box;
}

.jp-recipes-card-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

.jp-recipes-card-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.jp-recipes-card-head span {
    display: inline-block;
    background: #ffffff;
    color: #910355;
    padding: 8px 22px;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.jp-recipes-card-head h2 {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 12px;
}

.jp-recipes-card-head p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.jp-recipes-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.jp-recipe-card-box {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(35px);
    animation: jpRecipeFadeUp 0.8s ease forwards;
}

.jp-recipe-card-box:nth-child(1) {
    animation-delay: 0.05s;
}

.jp-recipe-card-box:nth-child(2) {
    animation-delay: 0.12s;
}

.jp-recipe-card-box:nth-child(3) {
    animation-delay: 0.19s;
}

.jp-recipe-card-box:nth-child(4) {
    animation-delay: 0.26s;
}

.jp-recipe-card-box:nth-child(5) {
    animation-delay: 0.33s;
}

.jp-recipe-card-box:nth-child(6) {
    animation-delay: 0.40s;
}

@keyframes jpRecipeFadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jp-recipe-card-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
}

.jp-recipe-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8f8f8;
}

.jp-recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.jp-recipe-card-box:hover .jp-recipe-img img {
    transform: scale(1.08);
}

.jp-recipe-card-content {
    padding: 22px 18px 20px;
}

.jp-recipe-card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 1.35;
    color: #111111;
    font-weight: 600;
    margin: 0 0 14px;
}

.jp-recipe-short {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #454545;
    margin: 0 0 18px;
}

.jp-recipe-brief {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    background: rgba(145, 3, 85, 0.08);
    border-left: 4px solid #910355;
    border-radius: 6px;
    padding: 0 14px;
    margin: 0 0 0;
    transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

.jp-recipe-brief p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #3f3038;
}

.jp-recipe-card-box.active .jp-recipe-brief {
    max-height: 220px;
    opacity: 1;
    padding: 14px;
    margin: 0 0 18px;
}

.jp-recipe-toggle {
    border: none;
    outline: none;
    background: #910355;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.jp-recipe-toggle:hover {
    background: #6f0241;
    transform: translateX(3px);
}

.jp-recipe-toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.jp-recipe-card-box.active .jp-recipe-toggle {
    background: #6f0241;
}

.jp-recipe-card-box.active .jp-recipe-toggle i {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 991px) {
    .jp-recipes-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-recipes-card-head h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .jp-recipes-card-section {
        padding: 60px 0;
    }

    .jp-recipes-card-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .jp-recipes-card-head {
        margin-bottom: 30px;
    }

    .jp-recipes-card-head h2 {
        font-size: 28px;
    }

    .jp-recipes-card-head p {
        font-size: 14px;
    }

    .jp-recipe-img {
        height: 190px;
    }

    .jp-recipe-card-content h3 {
        font-size: 18px;
    }

    .jp-recipe-short {
        font-size: 14px;
    }
}

/* ================= RECIPES CARD SECTION END ================= */




.jp-cert-section {
    padding: 80px 0;
    background: #910355;
    position: relative;
    overflow: hidden;
}

.jp-cert-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.jp-cert-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.jp-cert-head span {
    display: inline-block;
    background: #ffffff;
    color: #910355;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.jp-cert-head h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 15px;
    font-weight: 800;
}

.jp-cert-head p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

.jp-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.jp-cert-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 18px 18px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 3px solid transparent;
}

.jp-cert-card:hover {
    transform: translateY(-8px);
    border-color: #ffc400;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.jp-cert-img {
    width: 100%;
    height: 230px;
    background: #f7f1f4;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 22px;
    border: 1px solid #eeeeee;
}

.jp-cert-img svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.4s ease;
}

.jp-cert-img:hover svg {
    transform: scale(1.06);
}

/* Blink View Large Overlay */
.jp-cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(145, 3, 85, 0.45);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    transition: all 0.35s ease;
    animation: viewLargeBlink 1.8s infinite ease-in-out;
}

.jp-cert-img:hover .jp-cert-overlay {
    background: rgba(145, 3, 85, 0.85);
    animation: none;
}

.jp-cert-overlay i {
    font-size: 30px;
    margin-bottom: 8px;
    animation: zoomIconPulse 1.4s infinite ease-in-out;
}

.jp-cert-img:hover .jp-cert-overlay i {
    animation: none;
    transform: scale(1.15);
}

.jp-cert-overlay span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

@keyframes viewLargeBlink {
    0% {
        opacity: 0.18;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.18;
    }
}

@keyframes zoomIconPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }

    100% {
        transform: scale(1);
    }
}

.jp-cert-card h3 {
    font-size: 21px;
    color: #222222;
    margin: 0 0 12px;
    font-weight: 800;
}

.jp-cert-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

/* Popup */
.jp-cert-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.jp-cert-popup.active {
    display: flex;
}

.jp-cert-popup-box {
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 18px;
    padding: 12px;
    overflow: auto;
    animation: certZoom 0.3s ease;
}

.jp-cert-popup-box svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.jp-cert-close {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #910355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.3s ease;
}

.jp-cert-close:hover {
    background: #ffc400;
    color: #910355;
    transform: rotate(90deg);
}

@keyframes certZoom {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .jp-cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-cert-head h2 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .jp-cert-section {
        padding: 60px 0;
    }

    .jp-cert-grid {
        grid-template-columns: 1fr;
    }

    .jp-cert-head h2 {
        font-size: 28px;
    }

    .jp-cert-img {
        height: 260px;
    }

    .jp-cert-popup {
        padding: 15px;
    }

    .jp-cert-close {
        top: 15px;
        right: 15px;
    }
}




.jp-puri-product-section {
    padding: 80px 0;
    background: #910355;
    position: relative;
    overflow: hidden;
}

.jp-puri-product-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: #ffbf31;
    opacity: 0.13;
    border-radius: 50%;
    top: -130px;
    right: -120px;
}

.jp-puri-product-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: #ffffff;
    opacity: 0.07;
    border-radius: 50%;
    left: -100px;
    bottom: -100px;
}

.jp-puri-product-section .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.jp-puri-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.jp-puri-heading span {
    display: inline-block;
    background: #ffbf31;
    color: #910355;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
}

.jp-puri-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 12px;
    font-weight: 900;
}

.jp-puri-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

.jp-puri-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.jp-puri-box {
    background: #ffffff;
    border-radius: 28px;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition: all 0.4s ease;
    opacity: 0;
    animation: jpPuriFade 0.7s ease forwards;
}

.jp-puri-box:nth-child(1) {
    animation-delay: 0.1s;
}

.jp-puri-box:nth-child(2) {
    animation-delay: 0.25s;
}

.jp-puri-box:nth-child(3) {
    animation-delay: 0.4s;
}

.jp-puri-box:hover {
    transform: translateY(-10px);
    border-color: #ffbf31;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.jp-puri-label {
    position: absolute;
    top: 22px;
    left: 22px;
    background: #910355;
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    z-index: 5;
    letter-spacing: 0.2px;
}

.jp-puri-img-wrap {
    width: 100%;

    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
    padding: 18px;
}

.jp-puri-box:nth-child(1) .jp-puri-img-wrap {
    background: #d8fff7;
}

.jp-puri-box:nth-child(2) .jp-puri-img-wrap {
    background: #ecffd8;
}

.jp-puri-box:nth-child(3) .jp-puri-img-wrap {
    background: #f0e4ff;
}

.jp-puri-img-wrap::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.55;
    bottom: -95px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.jp-puri-box:hover .jp-puri-img-wrap::before {
    width: 300px;
    height: 300px;
    opacity: 0.85;
}

.jp-puri-pack {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.20));
    transition: all 0.45s ease;
}

.jp-puri-box:hover .jp-puri-pack {
    transform: translateY(-12px) scale(1.04);
}

.jp-puri-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 6px 10px;
}

.jp-puri-content h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #222222;
    margin: 0 0 10px;
    font-weight: 900;
}

.jp-puri-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 20px;
}

.jp-puri-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #910355;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.35s ease;
}

.jp-puri-box:hover .jp-puri-btn {
    background: #ffbf31;
    color: #910355;
}

.jp-puri-arrow {
    display: inline-block;
    transition: all 0.35s ease;
}

.jp-puri-box:hover .jp-puri-arrow {
    transform: translateX(5px);
}

@keyframes jpPuriFade {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .jp-puri-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-puri-heading h2 {
        font-size: 34px;
    }

    .jp-puri-img-wrap {
        height: 390px;
    }
}

@media (max-width: 650px) {
    .jp-puri-product-section {
        padding: 60px 0;
    }

    .jp-puri-box-grid {
        grid-template-columns: 1fr;
    }

    .jp-puri-heading h2 {
        font-size: 28px;
    }

    .jp-puri-heading p {
        font-size: 15px;
    }

    .jp-puri-img-wrap {
        height: 420px;
    }

    .jp-puri-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 420px) {
    .jp-puri-img-wrap {
        height: 360px;
    }

    .jp-puri-box {
        padding: 14px;
    }
}



.jp-paste-product-section {
    padding: 80px 0;
    background: #6f4591;
    position: relative;
    overflow: hidden;
}

.jp-paste-product-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: #ffbf31;
    opacity: 0.13;
    border-radius: 50%;
    top: -130px;
    right: -120px;
}

.jp-paste-product-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: #ffffff;
    opacity: 0.07;
    border-radius: 50%;
    left: -100px;
    bottom: -100px;
}

.jp-paste-product-section .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.jp-paste-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.jp-paste-heading span {
    display: inline-block;
    background: #ffbf31;
    color: #910355;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 14px;
}

.jp-paste-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 12px;
    font-weight: 900;
}

.jp-paste-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
}

.jp-paste-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.jp-paste-box {
    background: #ffffff;
    border-radius: 28px;
    padding: 18px;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition: all 0.4s ease;
    opacity: 0;
    animation: jpPasteFade 0.7s ease forwards;
}

.jp-paste-box:nth-child(1) {
    animation-delay: 0.1s;
}

.jp-paste-box:nth-child(2) {
    animation-delay: 0.25s;
}

.jp-paste-box:nth-child(3) {
    animation-delay: 0.4s;
}

.jp-paste-box:hover {
    transform: translateY(-10px);
    border-color: #ffbf31;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.jp-paste-label {
    position: absolute;
    top: 22px;
    left: 22px;
    background: #910355;
    color: #ffffff;
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    z-index: 5;
    letter-spacing: 0.2px;
}

.jp-paste-img-wrap {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
    padding: 18px;
}

.jp-paste-box:nth-child(1) .jp-paste-img-wrap {
    background: #e8fff6;
}

.jp-paste-box:nth-child(2) .jp-paste-img-wrap {
    background: #fff2d8;
}

.jp-paste-box:nth-child(3) .jp-paste-img-wrap {
    background: #ffe8e8;
}

.jp-paste-img-wrap::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.55;
    bottom: -95px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.jp-paste-box:hover .jp-paste-img-wrap::before {
    width: 300px;
    height: 300px;
    opacity: 0.85;
}

.jp-paste-pack {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.20));
    transition: all 0.45s ease;
}

.jp-paste-box:hover .jp-paste-pack {
    transform: translateY(-12px) scale(1.04);
}

.jp-paste-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 6px 10px;
}

.jp-paste-content h3 {
    font-size: 23px;
    line-height: 1.25;
    color: #222222;
    margin: 0 0 10px;
    font-weight: 900;
}

.jp-paste-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 20px;
}

.jp-paste-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #910355;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.35s ease;
}

.jp-paste-box:hover .jp-paste-btn {
    background: #ffbf31;
    color: #910355;
}

.jp-paste-arrow {
    display: inline-block;
    transition: all 0.35s ease;
}

.jp-paste-box:hover .jp-paste-arrow {
    transform: translateX(5px);
}

@keyframes jpPasteFade {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .jp-paste-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-paste-heading h2 {
        font-size: 34px;
    }

    .jp-paste-img-wrap {
        height: 390px;
    }
}

@media (max-width: 650px) {
    .jp-paste-product-section {
        padding: 60px 0;
    }

    .jp-paste-box-grid {
        grid-template-columns: 1fr;
    }

    .jp-paste-heading h2 {
        font-size: 28px;
    }

    .jp-paste-heading p {
        font-size: 15px;
    }

    .jp-paste-img-wrap {
        height: 420px;
    }

    .jp-paste-content h3 {
        font-size: 21px;
    }
}

@media (max-width: 420px) {
    .jp-paste-img-wrap {
        height: 360px;
    }

    .jp-paste-box {
        padding: 14px;
    }
}



.jp-dips-product-section {
    width: 100%;
    padding: 80px 0;
    background: #910355;
    position: relative;
    overflow: hidden;
}

.jp-dips-product-section::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -80px;
    width: 270px;
    height: 270px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.jp-dips-product-section::after {
    content: "";
    position: absolute;
    bottom: -95px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.jp-dips-product-section .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.jp-dips-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.jp-dips-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffbf31;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.jp-dips-heading h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
}

.jp-dips-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.7;
}

.jp-dips-box-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    align-items: stretch;
}

.jp-dips-box {
    grid-column: span 2;
    min-height: 410px;
    background: #ffffff;
    border-radius: 18px;
    padding: 15px 15px 22px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.jp-dips-box-four {
    grid-column: 2 / span 2;
}

.jp-dips-box-five {
    grid-column: 4 / span 2;
}

.jp-dips-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.jp-dips-label {
    position: absolute;
    top: 17px;
    left: 22px;
    z-index: 3;
    background: #910355;
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.jp-dips-img-wrap {
    height: 240px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jp-dips-bg-one {
    background: #ddfff6;
}

.jp-dips-bg-two {
    background: #fff4c8;
}

.jp-dips-bg-three {
    background: #ffe7e7;
}

.jp-dips-bg-four {
    background: #e7f5d1;
}

.jp-dips-bg-five {
    background: #efe4ff;
}

.jp-dips-pack {
    max-width: 86%;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.jp-dips-box:hover .jp-dips-pack {
    transform: translateY(-10px) scale(1.05);
}

.jp-dips-content {
    text-align: center;
    padding-top: 17px;
}

.jp-dips-content h3 {
    margin: 0 0 10px;
    color: #2b0d08;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
}

.jp-dips-content p {
    margin: 0 0 18px;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.jp-dips-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #910355;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    transition: background 0.3s ease;
}

.jp-dips-box:hover .jp-dips-btn {
    background: #005534;
}

.jp-dips-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.jp-dips-box:hover .jp-dips-arrow {
    transform: translateX(4px);
}

/* Tablet */
@media (max-width: 991px) {
    .jp-dips-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jp-dips-box,
    .jp-dips-box-four,
    .jp-dips-box-five {
        grid-column: auto;
    }

    .jp-dips-box-five {
        grid-column: 1 / -1;
        max-width: 360px;
        width: 100%;
        justify-self: center;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .jp-dips-product-section {
        padding: 60px 0;
    }

    .jp-dips-heading {
        margin-bottom: 30px;
    }

    .jp-dips-heading h2 {
        font-size: 30px;
    }

    .jp-dips-heading p {
        font-size: 15px;
    }

    .jp-dips-box-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .jp-dips-box,
    .jp-dips-box-five {
        max-width: 330px;
        width: 100%;
        min-height: auto;
        justify-self: center;
    }

    .jp-dips-img-wrap {
        height: 225px;
    }

    .jp-dips-pack {
        max-height: 205px;
    }

    .jp-dips-content h3 {
        font-size: 19px;
    }

    .jp-dips-content p {
        font-size: 13px;
    }
}




.jp-fillings-product-section {
    width: 100%;
    padding: 80px 0;
    background: #005534;
    position: relative;
    overflow: hidden;
}

.jp-fillings-product-section::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -80px;
    width: 270px;
    height: 270px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.jp-fillings-product-section::after {
    content: "";
    position: absolute;
    bottom: -95px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.jp-fillings-product-section .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.jp-fillings-heading {
    max-width: 780px;
    margin: 0 auto 42px;
    text-align: center;
}

.jp-fillings-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffbf31;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.jp-fillings-heading h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
}

.jp-fillings-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.7;
}

.jp-fillings-box-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.jp-fillings-box {
    min-height: 410px;
    background: #ffffff;
    border-radius: 18px;
    padding: 15px 15px 22px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.jp-fillings-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.jp-fillings-label {
    position: absolute;
    top: 17px;
    left: 22px;
    z-index: 3;
    background: #910355;
    color: #ffffff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.jp-fillings-img-wrap {
    height: 240px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jp-fillings-bg-one {
    background: #fff4c8;
}

.jp-fillings-bg-two {
    background: #ddfff6;
}

.jp-fillings-bg-three {
    background: #ffe8d3;
}

.jp-fillings-bg-four {
    background: #efe4ff;
}

.jp-fillings-pack {
    max-width: 86%;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.jp-fillings-box:hover .jp-fillings-pack {
    transform: translateY(-10px) scale(1.05);
}

.jp-fillings-content {
    text-align: center;
    padding-top: 17px;
}

.jp-fillings-content h3 {
    margin: 0 0 10px;
    color: #2b0d08;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.25;
}

.jp-fillings-content p {
    margin: 0 0 18px;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.jp-fillings-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #910355;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    transition: background 0.3s ease;
}

.jp-fillings-box:hover .jp-fillings-btn {
    background: #005534;
}

.jp-fillings-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.jp-fillings-box:hover .jp-fillings-arrow {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .jp-fillings-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .jp-fillings-product-section {
        padding: 60px 0;
    }

    .jp-fillings-heading {
        margin-bottom: 30px;
    }

    .jp-fillings-heading h2 {
        font-size: 30px;
    }

    .jp-fillings-heading p {
        font-size: 15px;
    }

    .jp-fillings-box-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .jp-fillings-box {
        max-width: 330px;
        width: 100%;
        min-height: auto;
        justify-self: center;
    }

    .jp-fillings-img-wrap {
        height: 225px;
    }

    .jp-fillings-pack {
        max-height: 205px;
    }

    .jp-fillings-content h3 {
        font-size: 19px;
    }

    .jp-fillings-content p {
        font-size: 13px;
    }
}


.mobile-line {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.mobile-line strong,
.mobile-line a {
    display: inline-block;
    white-space: nowrap;
}

.mobile-line a {
    color: inherit;
    text-decoration: none;
}

.jp-ie-page {
    background: #fffdf8;
    overflow: hidden;
}
/* ================================================= HERO ================================================= */
.jp-ie-hero {
    position: relative;
    padding: 95px 0 105px;
    background: radial-gradient( circle at 82% 20%, rgba(255, 217, 40, .22), transparent 28% ), radial-gradient( circle at 12% 80%, rgba(197, 40, 28, .12), transparent 30% ), linear-gradient( 135deg, #fff8e8 0%, #fffdf8 52%, #edf5df 100% );
}
.jp-ie-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 65px;
    align-items: center;
}
.jp-ie-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    font-size: 12px;
    font-weight: 600;
}
.jp-ie-breadcrumb a {
    color: #005534;
    text-decoration: none;
}
.jp-ie-breadcrumb i {
    color: #c5281c;
    font-size: 8px;
}
.jp-ie-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: 40px;
    background: #ffd928;
    color: #005534;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.jp-ie-eyebrow i {
    color: #c5281c;
}
.jp-ie-hero-content h1 {
    margin: 22px 0 22px;
    max-width: 720px;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: clamp(48px, 5.5vw, 78px);
    line-height: 1;
    letter-spacing: -1.5px;
}
.jp-ie-hero-content h1 span {
    color: #c5281c;
}
.jp-ie-hero-content > p {
    max-width: 650px;
    margin: 0;
    color: #625b50;
    font-size: 16px;
    line-height: 1.85;
}
.jp-ie-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.jp-ie-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 21px;
    border-radius: 50px;
    border: 1px solid #005534;
    color: #005534;
    background: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: .25s ease;
}
.jp-ie-secondary-btn:hover {
    background: #005534;
    color: #fff;
    transform: translateY(-3px);
}
/* HERO VISUAL */
.jp-ie-hero-visual {
    position: relative;
    min-height: 490px;
}
.jp-ie-world-card {
    position: relative;
    height: 470px;
    border-radius: 35px;
    overflow: hidden;
    background: radial-gradient( circle at 50% 45%, rgba(255, 217, 40, .25), transparent 33% ), linear-gradient( 145deg, #004b30, #007345 );
    box-shadow: 0 30px 70px rgba(0, 68, 42, .20);
}
.jp-ie-world-card::before {
    content: "GLOBAL";
    position: absolute;
    right: -20px;
    bottom: 10px;
    color: rgba(255,255,255,.045);
    font-family: "Fraunces", serif;
    font-size: 105px;
    font-weight: 800;
    letter-spacing: 5px;
}
.jp-ie-globe {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.28);
    box-shadow: 0 0 0 18px rgba(255,255,255,.035), 0 0 0 38px rgba(255,255,255,.025);
}
.jp-ie-globe::before, .jp-ie-globe::after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}
.jp-ie-globe::after {
    transform: rotate(90deg);
}
.jp-ie-route {
    position: absolute;
    height: 2px;
    background: #ffd928;
    transform-origin: left center;
    opacity: .85;
}
.jp-ie-route.route-one {
    width: 175px;
    left: 32%;
    top: 37%;
    transform: rotate(-18deg);
}
.jp-ie-route.route-two {
    width: 155px;
    left: 48%;
    top: 58%;
    transform: rotate(28deg);
}
.jp-ie-route.route-three {
    width: 110px;
    left: 31%;
    top: 62%;
    transform: rotate(-35deg);
}
.jp-ie-route::after {
    content: "";
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffd928;
    box-shadow: 0 0 0 5px rgba(255,217,40,.15);
}
.jp-ie-visual-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 14px;
    background: #fff;
    color: #005534;
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
    font-size: 10px;
    font-weight: 800;
}
.jp-ie-visual-label i {
    color: #c5281c;
}
.jp-ie-visual-label.label-one {
    left: 25px;
    top: 55px;
}
.jp-ie-visual-label.label-two {
    right: 25px;
    top: 105px;
}
.jp-ie-visual-label.label-three {
    right: 30px;
    bottom: 70px;
}
.jp-ie-visual-label.label-four {
    left: 25px;
    bottom: 100px;
}
/* ================================================= INTRO ================================================= */
.jp-ie-intro {
    padding: 90px 0;
    background: #fff;
}
.jp-ie-intro-head {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}
.jp-ie-intro-head > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #c5281c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.jp-ie-intro-head h2 {
    margin: 0 0 15px;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.12;
}
.jp-ie-intro-head p {
    margin: 0;
    color: #756d63;
    font-size: 14px;
    line-height: 1.8;
}
/* ================================================= CAPABILITIES ================================================= */
.jp-ie-capabilities {
    padding: 90px 0;
    background: #8abd3f;
    position: relative;
    overflow: hidden;
}
.jp-ie-capabilities::before {
    content: "EXPORT";
    position: absolute;
    right: -20px;
    top: 30px;
    color: rgba(255,255,255,.055);
    font-family: "Fraunces", serif;
    font-size: 135px;
    font-weight: 800;
    letter-spacing: 8px;
}
.jp-ie-section-head {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}
.jp-ie-section-head > span {
    display: inline-block;
    padding: 8px 17px;
    border-radius: 30px;
    background: #ffd928;
    color: #005534;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.jp-ie-section-head h2 {
    margin: 15px 0 12px;
    color: #fff;
    font-family: "Fraunces", serif;
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.1;
}
.jp-ie-section-head p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    line-height: 1.8;
}
.jp-ie-capability-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.jp-ie-capability-card {
    padding: 30px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.09);
    transition: .3s ease;
}
.jp-ie-capability-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 40px rgba(0,0,0,.13);
}
.jp-ie-capability-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: #005534;
    color: #ffd928;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.jp-ie-capability-card:nth-child(2) .jp-ie-capability-icon {
    background: #c5281c;
}
.jp-ie-capability-card:nth-child(3) .jp-ie-capability-icon {
    background: #f3a600;
    color: #fff;
}
.jp-ie-capability-card h3 {
    margin: 0 0 10px;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: 24px;
}
.jp-ie-capability-card p {
    margin: 0;
    color: #71695f;
    font-size: 12.5px;
    line-height: 1.75;
}
/* ================================================= PRODUCTS FOR GLOBAL MARKETS ================================================= */
.jp-ie-products {
    padding: 90px 0;
    background: #fffdf8;
}
.jp-ie-products-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
    align-items: center;
}
.jp-ie-products-visual {
    position: relative;
    min-height: 470px;
    border-radius: 32px;
    background: #fff3d1;
    overflow: hidden;
    padding: 35px;
}
.jp-ie-products-visual::before {
    content: "JALPOOREE";
    position: absolute;
    left: -15px;
    bottom: 5px;
    color: rgba(0,85,52,.07);
    font-family: "Fraunces", serif;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: 4px;
}
.jp-ie-product-main {
    position: relative;
    z-index: 2;
    width: 260px;
    height: 360px;
    margin: 10px auto 0;
    object-fit: contain;
    display: block;
}
.jp-ie-product-tag {
    position: absolute;
    z-index: 3;
    padding: 11px 15px;
    border-radius: 14px;
    background: #005534;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    font-size: 10px;
    font-weight: 800;
}
.jp-ie-product-tag.tag-one {
    top: 55px;
    left: 25px;
}
.jp-ie-product-tag.tag-two {
    top: 145px;
    right: 25px;
}
.jp-ie-product-tag.tag-three {
    bottom: 55px;
    left: 40px;
}
.jp-ie-products-content > span {
    display: block;
    margin-bottom: 8px;
    color: #c5281c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}
.jp-ie-products-content h2 {
    margin: 0 0 17px;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: 45px;
    line-height: 1.12;
}
.jp-ie-products-content > p {
    margin: 0 0 28px;
    color: #70685e;
    font-size: 14px;
    line-height: 1.85;
}
.jp-ie-product-list {
    display: grid;
    gap: 12px;
}
.jp-ie-product-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f7f1e5;
}
.jp-ie-product-list-item i {
    margin-top: 3px;
    color: #c5281c;
}
.jp-ie-product-list-item strong {
    display: block;
    margin-bottom: 3px;
    color: #302a20;
    font-size: 12px;
}
.jp-ie-product-list-item span {
    color: #777;
    font-size: 11px;
    line-height: 1.55;
}
/* ================================================= EXPORT PROCESS ================================================= */
.jp-ie-process {
    padding: 90px 0;
    background: linear-gradient( 135deg, #fff6e1 0%, #fff 50%, #f2ead9 100% );
}
.jp-ie-process-head {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}
.jp-ie-process-head span {
    color: #c5281c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.jp-ie-process-head h2 {
    margin: 12px 0;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: 45px;
    line-height: 1.1;
}
.jp-ie-process-head p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}
.jp-ie-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}
.jp-ie-process-grid::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 9%;
    right: 9%;
    height: 2px;
    background: #d7c9ae;
}
.jp-ie-process-step {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    text-align: center;
}
.jp-ie-process-number {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 5px solid #fff6e1;
    background: #005534;
    color: #ffd928;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px #005534;
    font-family: "Fraunces", serif;
    font-size: 18px;
    font-weight: 800;
}
.jp-ie-process-step:nth-child(2) .jp-ie-process-number {
    background: #c5281c;
    box-shadow: 0 0 0 1px #c5281c;
}
.jp-ie-process-step:nth-child(3) .jp-ie-process-number {
    background: #f3a600;
    box-shadow: 0 0 0 1px #f3a600;
}
.jp-ie-process-step h3 {
    margin: 0 0 8px;
    color: #302a20;
    font-family: "Fraunces", serif;
    font-size: 20px;
}
.jp-ie-process-step p {
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.65;
}
/* ================================================= BUSINESS PARTNERS ================================================= */
.jp-ie-partners {
    padding: 90px 0;
    background: #005534;
    position: relative;
    overflow: hidden;
}
.jp-ie-partners::after {
    content: "PARTNERS";
    position: absolute;
    right: -20px;
    bottom: -20px;
    color: rgba(255,255,255,.035);
    font-family: "Fraunces", serif;
    font-size: 120px;
    font-weight: 800;
}
.jp-ie-partners-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.jp-ie-partner-card {
    padding: 35px;
    border-radius: 25px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
}
.jp-ie-partner-card i {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    border-radius: 17px;
    background: #ffd928;
    color: #005534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.jp-ie-partner-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Fraunces", serif;
    font-size: 26px;
}
.jp-ie-partner-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 12.5px;
    line-height: 1.8;
}
/* ================================================= FAQ ================================================= */
.jp-ie-faq {
    padding: 90px 0;
    background: #fff;
}
.jp-ie-faq-head {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}
.jp-ie-faq-head span {
    color: #c5281c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}
.jp-ie-faq-head h2 {
    margin: 10px 0;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: 45px;
}
.jp-ie-faq-head p {
    margin: 0;
    color: #777;
    font-size: 13px;
}
.jp-ie-faq-list {
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 12px;
}
.jp-ie-faq-item {
    border: 1px solid #e9dfcf;
    border-radius: 18px;
    background: #fffdf8;
    overflow: hidden;
}
.jp-ie-faq-question {
    width: 100%;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: #302a20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 800;
}
.jp-ie-faq-question i {
    color: #c5281c;
    transition: transform .25s ease;
}
.jp-ie-faq-answer {
    display: none;
    padding: 0 22px 20px;
}
.jp-ie-faq-answer p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.8;
}
.jp-ie-faq-item.active .jp-ie-faq-answer {
    display: block;
}
.jp-ie-faq-item.active .jp-ie-faq-question i {
    transform: rotate(180deg);
}
/* ================================================= CTA ================================================= */
.jp-ie-cta {
    padding: 65px 0;
    background: #8abd3f;
}
.jp-ie-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.jp-ie-cta-inner > div > span {
    display: block;
    margin-bottom: 8px;
    color: #005534;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}
.jp-ie-cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Fraunces", serif;
    font-size: 43px;
    line-height: 1.1;
}
.jp-ie-cta p {
    max-width: 600px;
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    line-height: 1.7;
}
/* ================================================= RESPONSIVE ================================================= */
@media (max-width: 1100px) {
    .jp-ie-process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }
    .jp-ie-process-grid::before {
        display: none;
    }
}
@media (max-width: 991px) {
    .jp-ie-hero-grid, .jp-ie-products-grid {
        grid-template-columns: 1fr;
    }
    .jp-ie-hero-content {
        text-align: center;
    }
    .jp-ie-breadcrumb, .jp-ie-hero-actions {
        justify-content: center;
    }
    .jp-ie-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }
    .jp-ie-hero-visual {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }
    .jp-ie-capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .jp-ie-products-visual {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }
    .jp-ie-partners-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .jp-ie-hero {
        padding: 60px 0 70px;
    }
    .jp-ie-hero-content h1 {
        font-size: 46px;
    }
    .jp-ie-world-card {
        height: 390px;
    }
    .jp-ie-globe {
        width: 205px;
        height: 205px;
    }
    .jp-ie-visual-label.label-one {
        left: 15px;
        top: 30px;
    }
    .jp-ie-visual-label.label-two {
        right: 15px;
        top: 70px;
    }
    .jp-ie-visual-label.label-three {
        right: 15px;
        bottom: 45px;
    }
    .jp-ie-visual-label.label-four {
        left: 15px;
        bottom: 65px;
    }
    .jp-ie-capability-grid {
        grid-template-columns: 1fr;
    }
    .jp-ie-capabilities::before {
        font-size: 75px;
    }
    .jp-ie-products-content h2 {
        font-size: 36px;
    }
    .jp-ie-product-main {
        width: 210px;
        height: 300px;
    }
    .jp-ie-products-visual {
        min-height: 400px;
    }
    .jp-ie-process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .jp-ie-process-step {
        text-align: left;
        display: grid;
        grid-template-columns: 62px 1fr;
        gap: 16px;
        padding: 0;
    }
    .jp-ie-process-number {
        margin: 0;
    }
    .jp-ie-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .jp-ie-cta h2 {
        font-size: 36px;
    }
}
@media (max-width: 480px) {
    .jp-ie-hero-content h1 {
        font-size: 38px;
    }
    .jp-ie-hero-actions {
        flex-direction: column;
    }
    .jp-ie-secondary-btn, .jp-ie-hero-actions .header-btn {
        width: 100%;
        justify-content: center;
    }
    .jp-ie-world-card {
        height: 340px;
        border-radius: 25px;
    }
    .jp-ie-globe {
        width: 170px;
        height: 170px;
    }
    .jp-ie-globe::before, .jp-ie-globe::after {
        inset: 15px;
    }
    .jp-ie-visual-label {
        font-size: 8px;
        padding: 8px 10px;
    }
    .jp-ie-intro, .jp-ie-capabilities, .jp-ie-products, .jp-ie-process, .jp-ie-partners, .jp-ie-faq {
        padding: 65px 0;
    }
    .jp-ie-section-head h2, .jp-ie-process-head h2, .jp-ie-faq-head h2 {
        font-size: 34px;
    }
    .jp-ie-capability-card {
        padding: 25px;
    }
    .jp-ie-products-visual {
        min-height: 350px;
        padding: 20px;
    }
    .jp-ie-product-main {
        width: 180px;
        height: 270px;
    }
    .jp-ie-product-tag {
        font-size: 8px;
        padding: 8px 10px;
    }
    .jp-ie-partner-card {
        padding: 25px;
    }
}


.jp-dealer-page {
    overflow: hidden;
    background: #fffdf7;
}
/* ===================================================== HERO ===================================================== */
.jp-dealer-hero {
    position: relative;
    padding: 75px 0 85px;
    background: radial-gradient(circle at 90% 20%, rgba(255,217,40,.25), transparent 25%), radial-gradient(circle at 10% 90%, rgba(197,40,28,.10), transparent 25%), #f7f2df;
}
.jp-dealer-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}
.jp-dealer-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 600;
}
.jp-dealer-breadcrumb a {
    color: #005534;
    text-decoration: none;
}
.jp-dealer-breadcrumb i {
    color: #c5281c;
    font-size: 8px;
}
.jp-dealer-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    background: #c5281c;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.jp-dealer-hero h1 {
    max-width: 680px;
    margin: 22px 0 20px;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: .98;
    letter-spacing: -1.5px;
}
.jp-dealer-hero h1 span {
    color: #c5281c;
}
.jp-dealer-hero-text {
    max-width: 620px;
    margin: 0;
    color: #625c50;
    font-size: 15px;
    line-height: 1.85;
}
.jp-dealer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.jp-dealer-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border: 1px solid #005534;
    border-radius: 50px;
    background: #fff;
    color: #005534;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: .25s ease;
}
.jp-dealer-outline-btn:hover {
    background: #005534;
    color: #fff;
}
/* HERO DEALER VISUAL */
.jp-dealer-hero-visual {
    position: relative;
    min-height: 500px;
}
.jp-dealer-store-card {
    position: absolute;
    inset: 0;
    border-radius: 35px;
    background: #005534;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,85,52,.20);
}
.jp-dealer-store-card::before {
    content: "DEALER";
    position: absolute;
    right: -15px;
    bottom: -15px;
    color: rgba(255,255,255,.045);
    font-family: "Fraunces", serif;
    font-size: 120px;
    font-weight: 800;
}
.jp-dealer-store-top {
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.jp-dealer-store-brand {
    padding: 8px 13px;
    border-radius: 30px;
    background: #ffd928;
    color: #005534;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
}
.jp-dealer-store-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.8);
    font-size: 9px;
    font-weight: 700;
}
.jp-dealer-store-status i {
    color: #ffd928;
    font-size: 7px;
}
.jp-dealer-products {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 330px;
    height: 330px;
    transform: translate(-50%, -45%);
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    justify-content: center;
}
.jp-dealer-products::before {
    content: "";
    position: absolute;
    width: 265px;
    height: 265px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.13);
}
.jp-dealer-product-image {
    position: relative;
    z-index: 2;
    width: 225px;
    height: 275px;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0,0,0,.28));
}
.jp-dealer-floating {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 15px;
    background: #fff;
    color: #005534;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    font-size: 9px;
    font-weight: 800;
}
.jp-dealer-floating i {
    color: #c5281c;
}
.jp-dealer-floating.one {
    left: 20px;
    top: 125px;
}
.jp-dealer-floating.two {
    right: 20px;
    top: 175px;
}
.jp-dealer-floating.three {
    left: 35px;
    bottom: 85px;
}
.jp-dealer-floating.four {
    right: 25px;
    bottom: 110px;
}
/* ===================================================== MARKET STRIP ===================================================== */
.jp-dealer-market {
    padding: 0;
    background: #fff;
}
.jp-dealer-market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.jp-dealer-market-item {
    padding: 28px 20px;
    border-right: 1px solid #eee7d8;
    text-align: center;
}
.jp-dealer-market-item:last-child {
    border-right: 0;
}
.jp-dealer-market-item i {
    display: block;
    margin-bottom: 9px;
    color: #c5281c;
    font-size: 21px;
}
.jp-dealer-market-item strong {
    display: block;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: 19px;
}
.jp-dealer-market-item span {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 10px;
}
/* ===================================================== WHY DEALER ===================================================== */
.jp-dealer-why {
    padding: 95px 0;
    background: #8abd3f;
}
.jp-dealer-section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}
.jp-dealer-section-heading > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #005534;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.jp-dealer-section-heading h2 {
    margin: 0 0 14px;
    color: #fff;
    font-family: "Fraunces", serif;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.05;
}
.jp-dealer-section-heading p {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    line-height: 1.8;
}
.jp-dealer-why-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 20px;
}
.jp-dealer-big-card {
    position: relative;
    min-height: 430px;
    padding: 40px;
    border-radius: 30px;
    background: #005534;
    overflow: hidden;
}
.jp-dealer-big-card::after {
    content: "J";
    position: absolute;
    right: -25px;
    bottom: -60px;
    color: rgba(255,255,255,.04);
    font-family: "Fraunces", serif;
    font-size: 300px;
    font-weight: 800;
}
.jp-dealer-big-card-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 75px;
    border-radius: 20px;
    background: #ffd928;
    color: #005534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}
.jp-dealer-big-card h3 {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 0 14px;
    color: #fff;
    font-family: "Fraunces", serif;
    font-size: 38px;
    line-height: 1.08;
}
.jp-dealer-big-card p {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.8;
}
.jp-dealer-small-stack {
    display: grid;
    gap: 20px;
}
.jp-dealer-small-card {
    min-height: 205px;
    padding: 28px;
    border-radius: 25px;
    background: #fff;
}
.jp-dealer-small-card:nth-child(2) {
    background: #fff2d2;
}
.jp-dealer-small-card i {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 15px;
    background: #c5281c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jp-dealer-small-card h3 {
    margin: 0 0 7px;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: 22px;
}
.jp-dealer-small-card p {
    margin: 0;
    color: #756d62;
    font-size: 11px;
    line-height: 1.7;
}
/* ===================================================== DEALER ADVANTAGE ===================================================== */
.jp-dealer-advantage {
    padding: 95px 0;
    background: #fffdf7;
}
.jp-dealer-advantage-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center;
}
.jp-dealer-advantage-image {
    position: relative;
    min-height: 520px;
    border-radius: 30px;
    background: #fff0cd;
    overflow: hidden;
}
.jp-dealer-advantage-image img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 280px;
    height: 390px;
    object-fit: contain;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 25px 30px rgba(0,0,0,.16));
}
.jp-dealer-round-label {
    position: absolute;
    padding: 10px 14px;
    border-radius: 13px;
    background: #005534;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(0,0,0,.15);
}
.jp-dealer-round-label.one {
    top: 65px;
    left: 25px;
}
.jp-dealer-round-label.two {
    top: 155px;
    right: 20px;
}
.jp-dealer-round-label.three {
    bottom: 70px;
    left: 35px;
}
.jp-dealer-advantage-content > span {
    color: #c5281c;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}
.jp-dealer-advantage-content h2 {
    max-width: 650px;
    margin: 12px 0 16px;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: 48px;
    line-height: 1.08;
}
.jp-dealer-advantage-content > p {
    max-width: 650px;
    margin: 0 0 28px;
    color: #756d62;
    font-size: 13px;
    line-height: 1.85;
}
.jp-dealer-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.jp-dealer-check {
    display: flex;
    gap: 11px;
    padding: 15px;
    border-radius: 15px;
    background: #f5f0e5;
}
.jp-dealer-check i {
    color: #c5281c;
    margin-top: 3px;
}
.jp-dealer-check strong {
    display: block;
    margin-bottom: 3px;
    color: #302a20;
    font-size: 11px;
}
.jp-dealer-check span {
    display: block;
    color: #777;
    font-size: 10px;
    line-height: 1.5;
}
/* ===================================================== IDEAL DEALER ===================================================== */
.jp-dealer-ideal {
    padding: 90px 0;
    background: #005534;
}
.jp-dealer-ideal .jp-dealer-section-heading > span {
    color: #ffd928;
}
.jp-dealer-ideal-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.jp-dealer-ideal-item {
    min-height: 210px;
    padding: 25px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    text-align: center;
}
.jp-dealer-ideal-item i {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: #ffd928;
    color: #005534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.jp-dealer-ideal-item h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: "Fraunces", serif;
    font-size: 19px;
}
.jp-dealer-ideal-item p {
    margin: 0;
    color: rgba(255,255,255,.63);
    font-size: 10px;
    line-height: 1.65;
}
/* ===================================================== DEALER JOURNEY ===================================================== */
.jp-dealer-journey {
    padding: 95px 0;
    background: #fff4da;
}
.jp-dealer-journey-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.jp-dealer-journey-list::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #d8c9a9;
}
.jp-dealer-journey-step {
    position: relative;
    z-index: 2;
    text-align: center;
}
.jp-dealer-journey-number {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border: 5px solid #fff4da;
    border-radius: 50%;
    background: #005534;
    color: #ffd928;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px #005534;
    font-family: "Fraunces", serif;
    font-weight: 800;
}
.jp-dealer-journey-step:nth-child(2) .jp-dealer-journey-number {
    background: #c5281c;
    box-shadow: 0 0 0 1px #c5281c;
}
.jp-dealer-journey-step:nth-child(3) .jp-dealer-journey-number {
    background: #f2a600;
    box-shadow: 0 0 0 1px #f2a600;
}
.jp-dealer-journey-step h3 {
    margin: 0 0 8px;
    color: #005534;
    font-family: "Fraunces", serif;
    font-size: 21px;
}
.jp-dealer-journey-step p {
    margin: 0;
    color: #766e62;
    font-size: 11px;
    line-height: 1.7;
}
/* ===================================================== FORM SECTION ===================================================== */
.jp-dealer-form {
    background: #9bd1ed;
}
/* ===================================================== RESPONSIVE ===================================================== */
@media (max-width: 1100px) {
    .jp-dealer-ideal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    .jp-dealer-hero-grid, .jp-dealer-advantage-grid {
        grid-template-columns: 1fr;
    }
    .jp-dealer-hero-content {
        text-align: center;
    }
    .jp-dealer-breadcrumb, .jp-dealer-actions {
        justify-content: center;
    }
    .jp-dealer-hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    .jp-dealer-hero-visual {
        max-width: 650px;
        width: 100%;
        margin: auto;
    }
    .jp-dealer-why-grid {
        grid-template-columns: 1fr;
    }
    .jp-dealer-advantage-image {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }
    .jp-dealer-ideal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .jp-dealer-journey-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .jp-dealer-journey-list::before {
        display: none;
    }
}
@media (max-width: 767px) {
    .jp-dealer-hero {
        padding: 60px 0 70px;
    }
    .jp-dealer-hero h1 {
        font-size: 45px;
    }
    .jp-dealer-hero-visual {
        min-height: 390px;
    }
    .jp-dealer-store-card {
        border-radius: 25px;
    }
    .jp-dealer-products {
        width: 250px;
        height: 250px;
    }
    .jp-dealer-products::before {
        width: 205px;
        height: 205px;
    }
    .jp-dealer-product-image {
        width: 175px;
        height: 220px;
    }
    .jp-dealer-floating {
        font-size: 8px;
        padding: 8px 10px;
    }
    .jp-dealer-market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .jp-dealer-market-item:nth-child(2) {
        border-right: 0;
    }
    .jp-dealer-market-item:nth-child(-n+2) {
        border-bottom: 1px solid #eee7d8;
    }
    .jp-dealer-big-card {
        min-height: 360px;
    }
    .jp-dealer-big-card-icon {
        margin-bottom: 50px;
    }
    .jp-dealer-big-card h3 {
        font-size: 32px;
    }
    .jp-dealer-check-list {
        grid-template-columns: 1fr;
    }
    .jp-dealer-ideal-grid {
        grid-template-columns: 1fr 1fr;
    }
    .jp-dealer-journey-list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .jp-dealer-hero h1 {
        font-size: 37px;
    }
    .jp-dealer-actions {
        flex-direction: column;
    }
    .jp-dealer-actions .header-btn, .jp-dealer-outline-btn {
        width: 100%;
        justify-content: center;
    }
    .jp-dealer-hero-visual {
        min-height: 340px;
    }
    .jp-dealer-floating.one {
        left: 10px;
    }
    .jp-dealer-floating.two {
        right: 10px;
    }
    .jp-dealer-floating.three {
        left: 10px;
    }
    .jp-dealer-floating.four {
        right: 10px;
    }
    .jp-dealer-ideal-grid {
        grid-template-columns: 1fr;
    }
    .jp-dealer-section-heading h2 {
        font-size: 35px;
    }
}
