:root {
    --beige: rgba(170, 116, 48, 0.2);
    --paper: #fbf7f4;
    --muted: #6b6b6b;
    --accent: #d4b579;
    --banner-title: #5D001F;
    --heading: #5D001F;
    --button-bg: #EC1B24;
    --x-red: #EC1B24;
    --heading-light: #EC1B24;
    --bg: #f7f4f0;
    /* page background */
    --card: #fff;
    --divider: #d9d6d1;
    --text: #111;
    --border-color: #E5E5E5;
    --container: 1440px;
    --inner-container: 1043px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #414141;
}

input, textarea {
    font-family: "Inter", sans-serif;
    color: #414141;
}

/* subtle paper texture using radial gradients */
body.bg-beige-image::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('images/bg.jpg');
    background-size: cover;
    opacity: 0.5;
}

@font-face {
    font-family: "Helvetica Neue LT Heavy";
    src: url("fonts/HelveticaNeueLTBold.ttf") format("truetype");
    font-weight: 700;
    font-style: bold;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue LT Light";
    src: url("fonts/HelveticaNeueLTLight.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

header.topbar {
    background: var(--beige);
    /* border-bottom: 6px solid #fff; */
    padding: 14px 0;
    position: relative;
    z-index: 2
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
}

.wrap-container {
    max-width: var(--container);
    margin: 0 auto;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo-left {
    display: flex;
    align-items: center
}

.logo-right {
    display: flex;
    gap: 12px;
    align-items: center
}


.rules {
    padding-bottom: 4rem;
}


main {
    position: relative;
    z-index: 1
}

.hero {
    padding: 46px 0 30px
}

.title {
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    color: #414141;
    margin: 6px 0 26px
}

.paper {
    background: transparent;
    max-width: var(--inner-container);
    margin: 0 auto;
}

.paper a {
    color: #414141;
}

/* content styling */
.section {
    margin-bottom: 26px
}

.no-style-list {
    list-style: none;
    padding-left: 0;
    line-height: 2;
}

.section h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #414141
}

.section p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px
}



.rule-block {
    margin-bottom: 40px;
    line-height: 30px;
}

.rule-title {
    font-weight: 700;
    font-size: 24px;
    color: #414141;
    display: block;
    margin-bottom: 20px
}

.rule-body {
    font-size: 20px
}

/* small emphasized text within paragraphs */
.muted-strong {
    font-weight: 700;
    color: #414141
}

/* responsive */
@media (max-width:700px) {
    .title {
        font-size: 24px;
        padding: 0 8px
    }

    .paper {
        padding: 0px
    }

    .logo-red img {
        height: 35px;
    }


    .rule-body {
        font-size: 16px;
    }

    .rule-title {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 30px;
        padding: 0 8px;
    }
}




/* ====================== Landing Page 1 ==================== */


.banner {
    overflow: hidden;
    background-color: #efe8dc;
}

.banner .wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Optional dark overlay for better text readability */
/* .banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1;
    } */

header.topbar.transparent-toolbar {
    position: absolute;
    background: transparent !important;
    width: 100%;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: "Helvetica Neue LT Heavy", "Inter", sans-serif;
    font-weight: 700;
    color: var(--banner-title);

}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: "Helvetica Neue LT Light", "Inter", sans-serif;
}

.cta-btn {
    background-color: var(--button-bg);
    border: none;
    color: #fff;
    padding: 25px 34px;
    font-size: 24px;
    border-radius: 21px;
    cursor: pointer;
    min-width: 259px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #b92421;
}
@media (min-width: 900px) {
    .banner .wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 810px;
        background-image: url(images/banner-right.jpg);
        background-size: contain;
        background-position: center right;
        background-repeat: no-repeat;
        overflow: hidden;
        background-color: #efe8dc;
    }

    .banner-content h1 {
        font-size: 90px;
    }

    .banner-content {
        max-width: 775px;
    }

    .banner-content p {
        font-size: 30px;
        line-height: 1.2;
        max-width: 610px;
    }

    .cta-btn {
        width: 362px;
    }

    header.topbar.transparent-toolbar {
        padding-top: 70px;
    }


}

@media (max-width: 900px) {
    .banner {
        justify-content: center;
        text-align: center;
        padding: 52px 20px;
        background-image: url(images/mobile-banner.jpg);
	    background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        height: 570px;
        padding-bottom: 20px;
        padding-left: 0;
        padding-right: 0;
        padding-top: 2.2rem;
        position: relative;
    }

    .cta-btn {
        padding: 14px 34px;
    }

    .banner-content h1 {
        line-height: 1;
    }

    .banner .wrap {
        height: 100%;
    }

    .banner-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        width: 100%;
    }

    .banner-content p {
        margin: 0 auto;
        margin-bottom: 10px;
        max-width: 370px;
        color: #000;
    }


    .banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 204px;
        height: 160px;
        background: url('images/banner-top-left.png') no-repeat center/contain;
        z-index: 1;
    }

    /* Bottom-right image */
    .banner::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 180px;
        height: 195px;
        background: url('images/banner-bottom-right.png') no-repeat center/contain;
        z-index: 1;
    }

    .topbar-inner {
        max-width: 90%;
    }

    .brand-rect img {
        width: 117px;
        float: right;
    }

    .logo-red img {
        margin-top: 10px;
        height: 35px;
    }
}


@media (min-width: 900px) and (max-width: 1400px) {
	
	.brochure-oil-card-title {
	    max-width: 105px;
	    margin:0 auto;
	}
    .banner-content h1 {
        font-size: 72px;
        /* adjust this as needed */
        line-height: 1.2;
    }

    .banner-content {
        padding-left: 2rem;
    }

    header.topbar.transparent-toolbar {
        padding: 2rem;
    }

    .banner {
        background-size: contain;
    }

    .banner .wrap {
        min-height: 76vh;
    }
}


/* ============== Promo section ============ */

.promo-section {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

.promo-section h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
}

.promo-section h2 span {
    font-weight: 700;
}

.prizes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
    margin-top: 54px;
}

.prize {
    position: relative;
    background: #fff;
    width: calc(20% - 20px);
    transition: transform 0.2s ease;
}


.prize img {
    width: 100%;
    border-radius: 8px;
}

.promo-description {
    margin: 0 auto 20px;
    font-weight: 400;
    max-width: 90%;
    font-size: 24px;
    line-height: 1.5;
}

.duration {
    display: inline-block;
    background: #C9B278;
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    clip-path: polygon(30px 0%,
            /* top-left cut */
            100% 0%,
            /* top-right corner */
            100% calc(100% - 30px),
            /* bottom-right before cut */
            calc(100% - 30px) 100%,
            /* bottom-right cut */
            0% 100%,
            /* bottom-left corner */
            0% 30px
            /* back to near top-left */
        );
}

.duration p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 15px 50px;
}





@media (min-width: 900px) {
    .promo-section h2 {
        font-size: 46px;
    }

    .duration br {
        display: none;
    }
}

@media (max-width: 768px) {
    .prize {
        width: calc(50% - 15px);
    }

    .prizes {
        gap: 20px;
        margin-top: 25px;
    }

    .prizes>.prize:last-child:nth-child(odd) {
        margin-left: auto;
        margin-right: auto;
    }

    .promo-section {
        padding-bottom: 0rem;
    }

    .promo-section h2 {
        font-size: 28px;
        max-width: 85%;
        margin: 0 auto;
    }

    .promo-section h2 span {
        font-weight: 700;
        font-size: 34px;
    }

    .promo-description {
        margin: 0 auto 20px;
        font-weight: lighter;
        max-width: 99%;
        font-size: 20px;
        line-height: 1.5;
    }

    .duration {
        font-size: 24px;
        width: 100%;
    }

    .duration .mobile-small-size {
        font-size: 16px;
    }

    .duration p {
        padding: 15px 15px;
    }





}



/* ============== Reward section ============ */


.rewards-section {
    background: #f2e7db;
    background-image: url('images/bg-2.jpg');
    border-radius: 20px;
    padding: 40px 30px;
    margin: 40px auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.rewards-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-items: center;
    gap: 30px;
}

.rewards-title h2 {
    color: var(--heading);
    font-family: "Helvetica Neue LT Heavy", "Inter", sans-serif;
}

.image-stack .img1 {
    position: absolute;
    top: 25px;
    left: 25px;
    transform: rotate(3deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.image-stack .img {
    position: relative;
    z-index: 1;
    width: 100%;
}


.rewards-section .left {
    position: relative;
    flex: 1;
    min-width: 45%;
    padding: 2rem;
    padding-top: 0;
}

.rewards-section .right {
    flex: 2;
    min-width: 45%;
}

.rewards-section .right h2 {
    color: #7c0000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rewards-section .main-prizes {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.rewards-section .main-prizes li {
    font-size: 16px;
}

.rewards-section .main-prizes span {
    color: var(--x-red);
    font-weight: 900;
    margin-right: -6px;
    padding:0 5px;
}

.rewards-section .right h3 {
    color: var(--heading);
    font-family: "Helvetica Neue LT Heavy", "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.rewards-section .monthly-prizes {
    list-style: disc;
    padding-left: 18px;
    margin-bottom: 15px;
}

.rewards-section .note {
    font-size: 13px;
    line-height: 1.2;
    max-width: 966px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.rewards-container .right small {
    font-size: 20px;
    opacity: 0.8;
}





@media (min-width: 900px) {

    .rewards-title h2 {
        font-size: 46px;
    }

    .rewards-section .main-prizes li {
        font-size: 30px;
    }

    .rewards-section .right h3 {
        font-size: 40px;
        margin-top: 6rem;
    }

    .rewards-section .monthly-prizes {
        font-size: 30px;
        margin-left: 35px;
    }

    .rewards-section .left {
        padding-right: 0;
    }

    .rewards-section .note {
        font-size: 24px;
    }

}

@media (max-width: 768px) {
    .rewards-section .mobile-img {
        display: block !important;
    }

    .rewards-section .desktop-img {
        display: none !important;
    }

    .rewards-container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .rewards-section .left {
        text-align: center;
    }

    .rewards-section .image-stack {
        margin: 0 auto 10px;
    }

    .rewards-section .right {
        text-align: center;
    }

    .rewards-section .right ul {
        text-align: left;
        display: inline-block;
        margin-top: 0;
        padding-left: 0;
    }

    .rewards-section {
        padding: 15px 15px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .rewards-section .left {

        padding: 0rem;

    }

    .rewards-section .main-prizes li {
        font-size: 20px;
    }

    .rewards-section .right h3 {
        font-size: 30px;
        font-family: "Helvetica Neue LT Heavy", "Inter", sans-serif;
        max-width: 90%;
        margin: 20px auto;
    }

    .rewards-title h2 {
        font-size: 30px;
        font-family: "Helvetica Neue LT Heavy", "Inter", sans-serif;
    }

    .monthly-prizes li {
        font-size: 20px;
    }

    .monthly-prizes {
        padding-left: 0px;
    }

    .rewards-container .right small {
        font-size: 16px;
    }

    .rewards-section .note {
        font-size: 18px;
        margin-bottom: 2rem;
    }

}


/* ================= Draw Section =================== */


.draw-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: #fff;
}

.draw-box-inner {
    max-width: 994px;
    margin: 0 auto;
    padding: 6rem 0;
    position: relative;
}

.draw-box-img {
    background-image: url(images/Rectangle-1-mobile.png);
    width: 100%;
    overflow: visible;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.gift-icon {
    width: 100%;
    margin-bottom: 10px;
}

.draw-box h2 {
    color: var(--heading);
    font-size: 1.6rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}


.draw-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    flex-wrap: wrap;
    font-size: 1rem;
    color: #333;
}

.draw-row .left {
    flex: 1;
    text-align: left;
    width: 65%;
}

.draw-row .right {
    flex-shrink: 0;
    font-weight: 600;
    margin-left: 5px;
    width: fit-content;
}

@media (min-width: 900px) {
    .draw-section {
        margin-top: 6rem;
    }

    .draw-box-inner-icon.text-center {
        position: absolute;
        top: -55px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 500px;
    }

    .draw-box-img {
        background-image: url(images/Rectangle-1.png);
    }

    .draw-box h2 {
        color: var(--heading);
        font-size: 40px;
        margin-top: 0;
    }

    .draw-row .left {
        font-size: 24px;
        font-weight: 300;
    }

    .draw-row .right {
        font-weight: 500;
        font-size: 24px;
    }

}


@media (max-width: 720px) {


    .draw-box-inner-icon.text-center {
        position: relative;
    }

    .draw-box-inner {
        padding: 0rem 1rem;
    }

    .draw-box h2 {
        font-size: 22px;
        margin-bottom: 47px;
    }

    .draw-box-img {
        min-height: 545px;
    }

    .draw-row.desktop-hide {
        margin-bottom: 2rem;
    }

    .draw-section {
        padding: 20px 0px;
    }

    .draw-row-header {
        font-size: 20px;
        font-weight: 800;
    }
}


/* ====================== Petrol Form ====================== */



.petrol-form-container {
    background: url(images/bg-4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 30px;
}

.petrol-form-wrapper {
    max-width: 661px;
    background: transparent;
    margin: 60px auto;
    padding: 40px 45px 50px;
    /* border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee; */
    /* background-image: radial-gradient(circle at top left, #f8f6f3, #f2ede8); */
}

.petrol-form input[type="text"],
.petrol-form input[type="email"],
.petrol-form input[type="tel"],
.petrol-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 20px;
    color: #828282;
    background-color: #fff;
    outline: none;
    transition: all 0.2s ease;
}

.petrol-form input[type="text"]::placeholder,
.petrol-form input[type="email"]::placeholder,
.petrol-form input[type="tel"]::placeholder,
.petrol-form textarea::placeholder {
    opacity: 0.8;
}

.petrol-form input:focus,
.petrol-form textarea:focus {
    border-color: var(--heading);
    box-shadow: 0 0 0 2px rgba(192, 166, 118, 0.15);
}

.petrol-form textarea {
    min-height: 314px;
    resize: none;
}

.petrol-form small {
    color: #828282;
    font-size: 12px;
}

.petrol-note {
    font-size: 14px;
    color: #828282;
    margin-bottom: 15px;
    line-height: 1.5;
}

.petrol-note-list {
    color: #828282;
    padding-left: 30px;
}

.petrol-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 12px 18px;
    background-color: #DDC896;
    color: #333;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: lighter;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 5px;
}

.petrol-upload-btn:hover {
    background-color: #d8c29d;
}

.petrol-upload-btn input {
    display: none;
}

.petrol-file-name {
    font-size: 13px;
    color: #555;
    margin-top: 8px;
}

.petrol-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    font-size: 13px;
    color: #414141;
    line-height: 1.2;
    align-items: center;
}

.petrol-checkbox-wrapper input {
    margin-right: 8px;
    margin-top: 3px;
    transform: scale(1.1);
}

.petrol-submit-btn {
    margin: 0 auto;
    width: 362px;
    background-color: var(--button-bg);
    color: #fff;
    border: none;
    border-radius: 21px;
    padding: 20px;
    font-size: 24px;
    font-weight: lighter;
    margin-top: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.petrol-submit-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.petrol-submit-btn:hover {
    background-color: #cc2519;
}

@media (max-width: 600px) {
    .petrol-form-wrapper {
        margin: 30px 0px;
        padding: 25px;
    }

    .petrol-form-container {
        margin: 20px;
    }

    .petrol-form input[type="text"]::placeholder,
    .petrol-form input[type="email"]::placeholder,
    .petrol-form textarea::placeholder {
        font-size: 14px;
    }

    .petrol-note-list {
        font-size: 10px;
    }

    .petrol-checkbox-wrapper {
        font-size: 10px;
    }

    .petrol-upload-btn {
        font-size: 12px;
    }

    .petrol-submit-btn {
        font-size: 20px;
    }



}







/* ==================== Objave Section ================== */

.objave-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: url(images/bg-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    max-height: 634px;
    margin-bottom: 5rem;
}

.objave-box {
    background: #fff;
    border-radius: 35px;
    padding: 50px 60px;
    text-align: center;
    max-width: 900px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.objave-box:hover {
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.objave-box h2 {
    color: var(--heading-light);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.objave-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.objave-column {
    flex: 1;
    min-width: 250px;
}

.objave-column ol {
    margin: 0;
    padding-left: 25px;
    color: #333;
    font-size: 1rem;
    line-height: 1;
    column-count: 2;      /* number of columns */
    column-gap: 30px;     /* spacing between columns */
}

.objave-column li {
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.objave-column li small{
    font-size: 70%;
    padding-top:5px;
    display:block;
    width: 95%;
}

.objave-column li:hover {
    color: #8b5a2b;
}

/* Responsive stacking */
@media (min-width: 900px) {
    .objave-box {
        width: 744px;
    }
	.objave-row {
	    margin-top: 3rem;
	}
    .objave-box h2 {
        font-size: 30px;
    }

    .objave-column li {
        font-size: 24px;
    }

}

@media (max-width: 700px) {
    .objave-row {
        gap: 10px;
    }

    .petrol-note {
        font-size: 10px;
    }

    .objave-box {
        padding: 35px 20px;
    }

    .objave-column ol li {
        font-size: 14px;
    }

    .objave-section {
        height: auto;
        max-height: 634px;
        margin-bottom: 2rem;
    }

    .objave-box h2 {
        font-size: 20px;
        font-weight: 500;
    }

}




/* =================Brochure Section==================== */



.brochure-section {
    background: #F5F2ED;
    padding: 4rem 0 0 0;
}

.brochure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
}


.brochure::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;
    width: 1px;
    background: var(--divider);
    transform: translateX(-0.5px);
    z-index: 1;
}


.brochure-panel {
    background: transparent;
    padding: 25px 6px 22px 6px;
    position: relative;
    z-index: 2;
    /* above center divider */
}


.brochure-product {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}


.brochure-product .brochure-img {
    height: 374px;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-product .brochure-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brochure-product .brochure-meta {
    flex: 1;
}

.brochure-title {
    font-size: 20px;
    color: #000;
    margin: 0 0 6px 0;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brochure-subtitle {
    font-weight: 400;
    color: #000;
    margin-bottom: 6px;
    font-size: 20px;
}

.brochure-muted {
    color: #000;
    font-size: 14px;
    line-height: 1.2;
}


.brochure-icons {
    display: flex;
    gap: 10px;
    margin: 8px 0;
    align-items: center;
    flex-wrap: wrap;
}

.brochure-icon-item {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    width: 100%;
}

.brochure-icon-item img {
    width: 37.29px;
    height: 37.29px;
    flex: 0 0 37.29px;
    filter: grayscale(0.1);
}


.brochure-badge {
    display: inline-block;
    padding: 6px 10px;
    color: white;
    border-radius: 18px;
    font-weight: 700;
    font-size: 12px;
    margin-top: 8px;
}


.brochure-aroma-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 12px;
}

.brochure-aroma-card {
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    position: relative;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


.brochure-aroma-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 12px;
}

.brochure-aroma-detail-card {
    border-radius: 8px;
    padding-right: 12px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.brochure-aroma-detail-card h4 {
    margin-bottom: 0;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
}

.brochure-aroma-detail-card p {
    font-size: 14px;
    font-weight: 400;
}

.brochure-dotted {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.45;
    z-index: 0;
}

.brochure-img-spray {
    max-width: 152px;
}

.brochure-aroma-card>* {
    z-index: 1;
}

.brochure-aroma-card img {
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.brochure-aroma-card h4 {
    font-size: 13px;
    margin: 0 0 6px 0;
    font-weight: bold;
}

.brochure-aroma-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}


.brochure-bottom-icons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 25px;
}

.brochure-bottom-icons .brochure-bi {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    max-width: 125px;
    margin: 0 auto;
}

.brochure-bottom-icons .brochure-bi img {
    width: 85px;
    height: 85px;
    border-radius: 100px;
}

.brochure-bottom-icons .text-bold {
    font-weight: 700;
}

.text-normal {
    font-weight: 400;
}

.brochure-bottom-info-bottom {
    width: 60%;
    text-align: left;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-self: flex-end;
}

.brochure-bottom-info-bottom p {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 18px;
}

.brochure-bottom-info-icons {
    width: 40%;
    display: flex;
    text-align: center;
    gap: 10px;
}

.brochure-right-group {
    margin-bottom: 22px;
}


.brochure-specs {
    margin: 8px 0 0 0;
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.45;
}

.brochure-oil-card-title {
    font-weight: bold;
    font-size: 18px;
}

.brochure-oil-grid {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-top: 8px;
}

.brochure-oil-card {
    border-radius: 8px;
    padding: 10px;
    flex: 1;
    text-align: center;
    min-width: 0;
}

.brochure-oil-card img {
    height: 100%;
    object-fit: contain;
    margin: 8px auto;
    display: block;
    width:80%;
}


.brochure-two-col {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.brochure-two-col .brochure-left {
    width: 30%;
}

.brochure-two-col .brochure-right {
    width: 70%;
}


.brochure-hr {
    height: 1px;
    background: var(--divider);
    margin: 18px 0;
    margin-top: 0;
}

.brochure-panel-left::before,
.brochure-panel-right::before {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 5;
}

.brochure-panel-left::before {
    left: 0;
    background-image: url('images/badge.png');
}

.brochure-panel-right::before {
    right: 0;
    background-image: url('images/badge.png');
}

.brochure-small {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

.brochure-micro {
    font-size: 14px;
    color: #000;
}
@media (max-width:900px) {
	.brochure-micro{
		font-size:11px;
	}
}
.brochure-bottom-icons.brochure-bottom-icons-left {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 12px;
}


.brochure-left-section .brochure-title,
.brochure-right-group .brochure-title {
    margin-top: 30px;
}

@media (max-width:720px) {
    .brochure {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .brochure-title {
        font-weight: 900;
    }

    .brochure-title,
    .brochure-subtitle {
        font-size: 16px;
    }

    .brochure-aroma-detail-card h4 {
        font-size: 12px;
        font-weight: 700;
    }

    .brochure-oil-card-title {
        font-size: 12px;
    }

    .brochure-aroma-detail-card p {
        font-size: 10px;
        font-weight: 400;
    }

    .brochure-muted,
    .brochure-micro {
        font-size: 10px;
    }

    .brochure-oil-card {
        padding: 5px;
    }

    .brochure-right-box {
        padding-left: 20px;
    }

    .brochure-icon-item img {
        width: 26px;
        height: 26px;
    }

    .brochure-section {
        padding: 0 20px;
    }

    .brochure .mobile-hide {
        display: none !important;
    }

    .brochure-panel-right::before {
        content: none;
    }

    .mobile-brochure-panel-left::after {
        content: "";
        position: absolute;
        top: 0;
        width: 55px;
        height: 80px;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 5;
    }

    .brochure-aroma-card {
        padding: 0;
    }

    .brochure-aroma-card img {
        border-radius: 0;
        margin-bottom: 0;
    }

    .brochure-bottom-icons .brochure-bi {
        flex-direction: row;
    }

    .mobile-brochure-panel-left::after {
        right: 0;
        background-image: url('images/badge.png');
    }

    .brochure::before {
        left: 0;
        top: auto;
        bottom: auto;
        display: none;
    }

    .brochure-specs {
        font-size: 10px;

    }

    .brochure-product {
        flex-direction: column;
        gap: 12px;
    }

    .brochure-aroma-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .paravila-container {
        height: auto;
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .brochure-bottom-icons .brochure-bi img {
        width: 50px;
        height: 50px;
        border-radius: 300px;
        overflow: hidden;
    }

    .brochure-bottom-info-bottom p {
        font-size: 10px;
    }

    .mobile-brochure-wrap {
        display: flex;
        margin: 20px 0;
    }

    .brochure-product .brochure-img {
        width: 148px;
        height: 184px;
        min-width: 110px;
        margin: 0 auto;
    }

    .brochure-bottom-icons .brochure-bi {
        max-width: 140px;
        text-align: left;
    }

    .brochure-bottom-icons-right .brochure-bi img {
        height: 100%;

    }

    .brochure-panel {
        padding-bottom: 0;
    }

    .paravila-container a {
        font-size: 16px;
    }

    .paravila-container {
        height: auto;
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }
	.brochure-bottom-icons.brochure-bottom-icons-left {
	    max-width:350px;
	    display:flex;
	    margin: 22px auto 0 auto;
	}
}






/* =====================Paravila Section ==================== */

.paravila-container {
    /* height: 340px; */
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    font-size: 20px;
    color: #000;
}

.paravila-container a {
    font-size: 20px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}



@media only screen and (min-width: 720px) and (max-width: 1281px) {

    .brochure-bottom-icons .brochure-bi img {
        width: 50px;
        height: 50px;
        border-radius: 100px;
    }

    .brochure-product .brochure-img {
        height: 100%;
        width: 45%;
    }

    .brochure-section {
        padding: 2rem;
    }
}

@media (min-width: 720px) {
    .desktop-hide {
        display: none !important;
    }
}

@media (max-width: 720px) {
    .mobile-hide {
        display: none !important;
    }
}
@media (max-width: 450px) {
    .brochure-oil-card-title {
        max-width: 60px;
        margin:0 auto;
    }
}