* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/***
====================================================================
                        pages line numbers
***/

/* @font-face for Merriweather */
@font-face {
    font-family: 'Merriweather';
    src: url('fonts/Merriweather-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/*** 

====================================================================
                        navbar-Page-One
====================================================================

***/
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.main-nav-bar {
    margin: 0px;
    display: flex;
    background-color: #8B5A2B;
}

.main-nav-bar img {
    padding: 5px 0px 5px 0px;
    margin-left: 30px;
    border-radius: 16px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.nav-menu-list {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 40px 10px 12rem;
    background-color: #8B5A2B;
    gap: 30px;
    list-style: none;
    margin-bottom: 0px;
}

.nav-menu-list a {
    font-family: Arial, sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-weight: 510;
    font-size: 18px;
    display: block;
}

.nav-menu-list a:hover {
    color: #D4A017;
}

/* Dropdown Styles */
/* Dropdown Styles */
.product-dropdown-parent {
    position: relative;
}

.product-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.product-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 20px;
}

.product-dropdown-options li a {
    display: block;
    padding: 10px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;

}

.product-dropdown-options li a:hover {
    background: #f8f8f8;
    color: #222;
}

/* Show dropdown on hover or when active */
.product-dropdown-parent:hover .product-dropdown-options,
.product-dropdown-parent.dropdown-active .product-dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-dropdown-parent:hover .dropdown-icon,
.product-dropdown-parent.dropdown-active .dropdown-icon {
    transform: rotate(180deg);
}

/* Active Link Highlighting */
.nav-menu-list li a.active {
    color: #28a745;
    /* Green color */
    font-weight: bold;
    border-bottom: 2px solid #28a745;
}

/* Collapsible Navbar Search */
.qc-navbar-collapsible-search-li {
    position: relative;
    display: flex;
    align-items: center;
}

.qc-navbar-search-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 50%;
    transition: background 0.2s;
}

.qc-navbar-search-toggle:hover {
    background: #f5e6c5;
    color: #8B5A2B;
}

.qc-navbar-collapsible-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    border: 1.5px solid #D4A017;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 2px 8px 2px 12px;
    position: absolute;
    right: 0;
    top: 110%;
    opacity: 0;
    pointer-events: none;
    min-width: 180px;
    max-width: 220px;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(-10px) scaleX(0.8);
    z-index: 100;
}

.qc-navbar-collapsible-search-form.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scaleX(1);
}

.qc-navbar-collapsible-search-form input[type="text"] {
    border: none;
    outline: none;
    background: transparent;
    padding: 6px 8px;
    font-size: 15px;
    border-radius: 20px;
    width: 120px;
    color: #8B5A2B;
}

.qc-navbar-collapsible-search-form button {
    background: none;
    border: none;
    color: #8B5A2B;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 50%;
    transition: background 0.2s;
}

.qc-navbar-collapsible-search-form button:hover {
    background: #f5e6c5;
}

/* live video section styles*/
.logo-tag-line-section {
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0px;
    background-color: white;
}

.logo-tag-line-block {
    background-color: #F9F6EF;
    border-radius: 15px;
    padding: 10px 0px;
    display: flex;
}

.logo-tag-line-block h3 {
    padding: 0px 0px 0px 30px;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 0px;
}

.live-video-section span {
    padding: 10px;
    font-weight: bold;
}

.live-video-block-content h2 {
    font-weight: bold;
    margin: 0;
    font-size: 18px;
}

@media (max-width: 768px) {
    .qc-navbar-collapsible-search-li {
        width: 100%;
        justify-content: flex-end;
    }

    .qc-navbar-collapsible-search-form {
        position: static;
        min-width: 0;
        max-width: 100%;
        width: 100%;
        margin: 10px 0 0 0;
        transform: scaleX(0.8);
    }
}

@media (max-width: 768px) {
    html body {
        margin: 0px;
        padding: 0px;
    }

    #navbar {
        position: static;
        top: 0;
        z-index: 1000;
        width: 100%;
    }

    .main-nav-bar {
        height: 60px;
        display: flex;
        padding: 0px 20px;
    }

    .main-nav-bar img {
        padding: 10px 0px 10px 0px;
        margin-left: 0px;
        width: 80px;
        height: 60px;
        border-radius: 24px;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
        height: 100px;
    }

    .hamburger-menu i {
        font-size: 24px;
        color: black;
        margin-left: 100px;
        padding-top: 15px;
    }

    .hamburger-menu i:hover {
        color: #0f5d4a;
    }

    .nav-menu-list {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 14%;
        background-color: #8B5A2B;
        gap: 20px;
        z-index: 10;
        padding: 20px 0px 10px 40px;
        align-items: start;
        list-style: none;
    }

    .nav-menu-list li {
        display: inline;
        position: relative;
        border-bottom: 1px solid rgba(0, 0, 0, .035);
        width: 100%;
    }

    .nav-menu-list a {
        font-family: Arial, sans-serif;
        text-decoration: none;
        color: #ffffff;
        font-weight: 510;
        font-size: 18px;
        display: block;
        padding-bottom: 5px;
        text-align: left;
    }

    .nav-menu-list a:hover::after {
        visibility: hidden;
    }

    .nav-menu-list.show {
        display: flex;
    }
}

@media (max-width: 480px) {
    .nav-menu-list {
        width: 100%;
        flex-direction: column;
        background-color: beige;
        gap: 20px;
        padding: 20px 0px 10px 40px;
        align-items: start;
        list-style: none;
    }

    .nav-menu-list a {
        font-family: Arial, sans-serif;
        text-decoration: none;
        color: black;
        font-weight: bolder;
        font-size: 19px;
        display: block;
        padding-bottom: 5px;
        text-align: left;
    }
}


/*** 

====================================================================
                        Home-Page-One
====================================================================

***/

/* Top scroll message with gradient and continuous scrolling */
.qc-top-scroll-message {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #fffbe6 0%, #ffe5b4 100%);
    padding: 2px 0;
    position: relative;
    border-bottom: 1.5px solid #D4A017;
}

.qc-top-scroll-message p {
    display: inline-block;
    white-space: nowrap;
    color: #8B5A2B;
    font-size: 1.05rem;
    font-weight: 500;
    padding-left: 100%;
    animation: qc-scroll-left 18s linear infinite;
    letter-spacing: 0.5px;
    margin-bottom: 0px;
}

@keyframes qc-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* point higlighting styling */
.point-higlighting {
    background-color: #8FBC8F;
    border-radius: 15px;
    margin: 5px 10px 5px 10px;
    display: flex;
}

.point-higlighting h3 {
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.point-higlighting span {
    padding: 15px 5px 15px 20px;
    margin-left: 50%;
    font-weight: bold;
}


/* main banner styling */
.banners-scroll-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-container {
    display: flex;
    transition: transform 0.5s ease;
}

.main-banner,
.second-banner,
.third-banner,
.fourth-banner,
.fifth-banner {
    width: 100%;
    height: 400px;
    flex-shrink: 0;
}

.main-banner {
    display: flex;
    flex-direction: row;
    height: 400px;
    background-color: #FFF1D0;
}

.main-banner img {
    width: 850px;
    height: 400px;
}

.main-banner-content-block {
    width: 400px;
}

/* content on main banner styles */
.main-left-qc-heading {
    padding: 20px 0px 0px 60px;
    display: flex;
    flex-direction: column;
}

.content-on-main-banner {
    padding: 20px 0px 0px 60px;
    display: flex;
}

.content-on-main-banner span {
    font-size: 32px;
    font-weight: bold;
    color: #8B5A2B;
}

.content-on-main-banner p {
    font-weight: bold;
    margin: 0px;
    font-size: 26px;
    color: #8B5A2B;
}

.content-on-main-banner img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* Curved rotating text around QR image */
.qc-circle-text-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 18px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qc-circle-text-container img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    z-index: 2;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.08);
}

.qc-circle-svg {
    width: 180px;
    height: 180px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.qc-rotating-text {
    transform-origin: 90px 90px;
    animation: qc-rotate-circle-svg 8s linear infinite;
}

@keyframes qc-rotate-circle-svg {
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 480px) {

    .qc-circle-text-container,
    .qc-circle-svg {
        width: 110px;
        height: 110px;
    }

    .qc-circle-text-container img {
        width: 60px;
        height: 60px;
    }

    .qc-circle-svg text {
        font-size: 10px;
    }
}

/* second banner styles */
.second-banner {
    background-color: rgba(245, 245, 220, 0.3);
    padding: 20px 20px 20px 40px;
    display: flex;
    gap: 120px;
}

.first-block-on-second-banner {
    width: 50%;
}

.first-block-on-second-banner h3 {
    font-weight: bold;
}

.second-banner-points {
    display: flex;
}

.bi-dot {
    font-size: 21px;
}

.second-banner-points p {
    margin: 0px;
    color: black;
    font-size: 19px;
    font-weight: 600;
}

.second-banner-points img {
    padding-left: 15px;
}

.bottom-quotation h4 {
    padding-top: 30px;
    font-weight: 600;
    text-align: center;
}

iframe {
    border-radius: 20px;
}

/* third banner styles
.third-banner {
    background-color: rgba(219, 235, 197, 0.3);
    padding: 20px 20px 20px 40px;
}

.content-on-third-banner {
    display: flex;
    gap: 50px;
}

.comparison-table-block h3 {
    font-weight: 600;
    padding-left: 30px;
}

.right-top-main-point p {
    font-size: 18px;
    font-weight: 600;
}

.key-points-on-third-banner h4 {
    font-size: 22px;
    font-weight: 600;
}

.temp-points {
    display: flex;
}

.temp-points i {
    font-size: 22px;
}

.temp-points p {
    font-size: 19px;
    margin: 0px;
}

.right-bottom-cooking-image img {
    border-radius: 10px;
} */

/* fourth banner styles
.fourth-banner {
    background-color: #F5F5F5;
    padding: 20px 20px 20px 40px;
}

.content-on-fourth-banner {
    display: flex;
    gap: 20px;
}

.health-benefits-table {
    width: 620px;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 1rem;
    overflow: hidden;
}

.health-benefits-table th,
.health-benefits-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    font-size: 13px;
    vertical-align: middle;
}

.health-benefits-table th {
    background-color: #f2f2f2;
    color: #2c3e50;
}

.health-benefits-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.health-benefits-table tr:hover {
    background-color: #f1f1f1;
} 

Remove outer borders
.health-benefits-table thead th:first-child,
.health-benefits-table tbody td:first-child {
    border-left: none;
}

.health-benefits-table thead th:last-child,
.health-benefits-table tbody td:last-child {
    border-right: none;
}

.health-benefits-table thead tr:first-child th {
    border-top: none;
}

.health-benefits-table tbody tr:last-child td {
    border-bottom: none;
}

.second-half-tr-block {
    border-top: none;
}

.second-half-of-table {
    width: 580px;
    margin-top: 90px;
/* } */

/* fifth banner styles
.fifth-banner {
    background-color: #F5F5F5;
    padding: 20px 20px 20px 30px;
}

.content-on-fifth-banner {
    display: flex;
    gap: 40px;
}

.content-block-one {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content-block-one {
    width: 95%;
}

.content-block-one p {
    margin: 0px;
    text-align: left;
    font-weight: 600;
    border-radius: 18px;
}

.first-para-content {
    padding: 5px 10px 5px 10px;
}

.second-para-content {
    padding: 5px 10px 5px 10px;
}

.third-para-content {
    padding: 5px 10px 5px 10px;
/* } */

/* Arrows on main banner styles */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    border-radius: 50px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.left {
    left: 15px;
}

.right {
    right: 15px;
}

.banners-scroll-block:hover .arrow {
    opacity: 1;
    visibility: visible;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Most loved section stylings */
.most-loved-section {
    background-color: #E3F0E1;
    padding: 20px;
    margin: 10px;
    border-radius: 15px;
    margin-top: 40px;
}

.most-loved-block h3 {
    font-family: "Poppins", sans-serif;
    text-align: left;
    margin-bottom: 20px;
    color: black;
    font-weight: 600;
}

.loved-product-list {
    display: flex;
    gap: 40px;
}

.loved-product img {
    border-radius: 5px;
    width: 200px;
    height: 200px;
}

.loved-product p {
    text-align: center;
    color: black;
    margin-top: 10px;
}

/* wide range of wood pressed oils / categories section stylings */
.categories-section h3 {
    font-family: "Poppins", sans-serif;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.categories-images-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.image-block {
    width: 240px;
}

.image-block img {
    border-radius: 5px;
}

.image-block h4 {
    text-align: center;
    margin-top: 5px;
}

/* home products bought message styles */
.home-product-bought-msg {
    color: gray;
    font-size: 0.97em;
    font-weight: 500;
    margin: 8px 0 2px 0px;
    letter-spacing: 0.01em;
}


.home-product-description-block {
    width: 240px;
    font-size: 21px;
}

/* home products Star rating styles */
.home-product-rating-block {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    gap: 6px;
}

.home-rating-stars {
    color: #FFA41C;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.home-rating-value {
    color: #111;
    font-size: 1em;
    margin-left: 2px;
}

/* home products Price styles */
.home-product-price-block {
    font-size: 1.15em;
    color: #111;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-product-old-price {
    color: #878787;
    text-decoration: line-through;
    font-size: 0.98em;
    margin-left: 8px;
    font-weight: 400;
}

.home-add-to-cart-button {
    padding: 5px 10px;
    border-radius: 10px;
    background-color: green;
    color: white;
}


.home-buy-now-button {
    padding: 5px 10px;
    border-radius: 10px;
    background-color: rgb(214, 214, 80);
    color: black;
}

/* brand logos display section stylings
.brand-logos-display-section {
    background-color: rgba(211, 204, 204, 0.5);
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.logos-display-block h3 {
    text-align: center;
    font-weight: bold;
}

.logos-block {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding-top: 40px;
    text-align: center;
    transition: transform 0.5s ease-in-out;
    align-items: center;
}

.logos-block div {
    flex-shrink: 0;
}

.brand-logo img {
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}

.arrow-left,
.arrow-right {
    position: absolute;
    top: 63%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    background-color: #558B2F;
    color: white;
    z-index: 10;
    padding: 0px 3px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.brand-logos-display-section:hover .arrow-left,
.brand-logos-display-section:hover .arrow-right {
    opacity: 1;
    visibility: visible;
}

.arrow-left {
    left: 28px;
}


.arrow-right {
    right: 28px;
}

.arrow-left:hover,
.arrow-right:hover {
    color: #D4A017;
} */

/* doctors / recommended section stylings */
.recommended-section {
    display: flex;
    justify-content: space-between;
    background-color: #a2c28c;
    border-radius: 20px;
    padding: 0px 50px;
    margin-top: 70px;
    margin-bottom: 50px;
}

.recommended-block h3 {
    font-family: "Poppins", sans-serif;
    text-align: left;
    padding: 20px 10px;
    color: black;
    font-weight: bold;
    margin-bottom: 0px;
}

.recommended-doctor-block {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 10px;
}

.recommended-doctor-block a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    background-color: #fff8e1;
    border-radius: 10px;
}

/* home FAQ section stylings */
.home-faqs-section {
    margin-top: 40px;
    padding: 32px 16px 40px 16px;
    background: #fffbe6;
    /* soft gold background */
    border-radius: 18px;
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 16px rgba(191, 161, 74, 0.10);
}

.home-faqs-section h2 {
    text-align: center;
    font-weight: 700;
    color: #295c2d;
    /* deep green */
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #f8faf6;
    /* very light green */
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(41, 92, 45, 0.06);
    overflow: hidden;
    border: 1.5px solid #bfa14a;
    /* gold */
    transition: box-shadow 0.2s;
}

.faq-item.open {
    box-shadow: 0 4px 16px rgba(41, 92, 45, 0.10);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.13rem;
    font-weight: 600;
    color: #295c2d;
    padding: 18px 18px 18px 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.18s;
}

.faq-item.open .faq-question {
    background: #eaf6e3;
    /* light green */
}

.faq-arrow {
    font-size: 1.2em;
    color: #bfa14a;
    margin-left: 10px;
    transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #295c2d;
    font-size: 1rem;
    padding: 0 22px;
    transition: max-height 0.35s cubic-bezier(0.77, 0, 0.18, 1), padding 0.2s;
    border-top: 1px solid #eaf6e3;
}

.faq-item.open .faq-answer {
    padding: 12px 22px 18px 22px;
    max-height: 200px;
}

.faq-answer a {
    color: #bfa14a;
    text-decoration: underline;
    font-weight: 500;
}

.faq-more-btn-block {
    text-align: center;
    margin-top: 32px;
}

.faq-more-btn {
    display: inline-block;
    background: #295c2d;
    color: #fffbe6;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    border: 2px solid #bfa14a;
    transition: background 0.18s, color 0.18s;
}

.faq-more-btn:hover {
    background: #bfa14a;
    color: #295c2d;
}

@media (max-width: 600px) {
    .home-faqs-section {
        padding: 18px 2vw 28px 2vw;
        max-width: 98vw;
    }

    .faq-question {
        font-size: 1rem;
        padding: 14px 12px 14px 14px;
    }

    .faq-answer {
        font-size: 0.98rem;
        padding: 0 14px;
    }

    .faq-item.open .faq-answer {
        padding: 10px 14px 14px 14px;
    }
}

/* home qc reviews section stylings */
.qc-reviews-section {
    padding: 60px 0 40px 0;
    background: #f8faf6;
    text-align: center;
}

.qc-reviews-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #295c2d;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.qc-reviews-subtitle {
    font-size: 1.18rem;
    color: #7a8c6e;
    margin-bottom: 36px;
    font-weight: 500;
}

.qc-reviews-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.qc-review-card {
    background: #eaf6e3;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(41, 92, 45, 0.06);
    padding: 32px 28px 28px 28px;
    flex: 1 1 320px;
    max-width: 350px;
    min-width: 260px;
    text-align: left;
    border: 2px solid #bfa14a;
    transition: box-shadow 0.2s, transform 0.2s;
}

.qc-review-card:hover {
    box-shadow: 0 6px 24px rgba(41, 92, 45, 0.13);
    transform: translateY(-6px) scale(1.03);
}

.qc-review-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #295c2d;
    margin-bottom: 12px;
}

.qc-review-card p {
    font-size: 1.02rem;
    color: #3d3d3d;
    margin-bottom: 28px;
    line-height: 1.6;
}

.qc-review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.qc-review-name {
    font-weight: 700;
    color: #295c2d;
    font-size: 1.05rem;
}

.qc-review-product {
    font-size: 0.97rem;
    color: #bfa14a;
    /* Gold */
    font-weight: 500;
    letter-spacing: 0.2px;
}

@media (max-width: 900px) {
    .qc-reviews-cards {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .qc-review-card {
        max-width: 95vw;
    }
}

/* Footer section stylings */
.footer-section {
    margin-top: 20px;
    background-color: #3E2C1E;
    padding: 40px 20px 40px 20px;
}

.footer-section-block {
    display: flex;
    justify-content: left;
    gap: 256px;
    color: #FFFFFF;
}

.our-products-list-in-footer p {
    font-size: 22px;
    font-weight: 600;
    color: #D4AF37;
}

.our-products-list-in-footer ul,
li {
    list-style: none;
    padding-left: 0px;
    font-size: 14px;
}

.our-products-list-in-footer li {
    margin-bottom: 10px;
}

.our-products-list-in-footer a {
    text-decoration: none;
    color: white;
}

.our-products-list-in-footer a:hover {
    color: rgb(166, 87, 87)
}

.know-us-block-in-footer {
    width: auto;
}

.know-us-heading {
    font-size: 22px;
    font-weight: 600;
    color: #D4AF37;
}

.know-us-list p {
    margin: 0px;
    margin-bottom: 4px;
    font-size: 14px;
}

.know-us-list a {
    text-decoration: none;
    color: white;
}

.know-us-list a:hover {
    color: rgb(166, 87, 87);
}

.social-media-block {
    color: #FFFFFF;
    width: 20%;
}

.logo-at-footer {
    margin-bottom: 10px;
}

.logo-at-footer img {
    border-radius: 15px;
}

.social-media-block p {
    font-size: 22px;
    font-weight: 600;
    color: #D4AF37;
}

.icons i {
    margin-right: 6px;
}

/* Styling the image */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.scroll-to-top img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.scroll-to-top.go-top {
    transform: scale(1.2);
}

/* Extra small devices (phones, ≤ 360px) */
@media (max-width: 360px) {}

/* Medium devices (tablets, ≤ 480px) */
@media (max-width: 480px) {
    html body {
        margin: 0px;
        padding: 0px;
    }

    /* point higlighting styling */
    .point-higlighting {
        background-color: #8FBC8F !important;
        border-radius: 15px;
        display: flex;
    }

    .point-higlighting h3 {
        padding: 10px 0px 10px 10px;
        font-weight: bolder;
        margin-bottom: 0px;
        font-size: 19px;
        width: 200px;
    }

    .point-higlighting span {
        padding: 8px 5px 8px 25px;
        margin-left: 5%;
        font-weight: bold;
        font-size: 13px;
        width: 180px;
    }

    /* main banner styling */
    .banners-scroll-block {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .banner-container {
        display: flex;
        transition: transform 0.5s ease;
    }

    .main-banner,
    .second-banner,
    .third-banner,
    .fourth-banner,
    .fifth-banner {
        width: 100%;
        height: 550px;
        flex-shrink: 0;
    }

    .main-banner {
        background-position: bottom 26% center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 400px;
        opacity: 0.9;
        position: relative;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .main-banner::before {
        content: '';
        position: absolute;
        z-index: 1;
    }

    .content-on-main-banner {
        padding: 50px 0px 0px 60px;
    }

    .content-on-main-banner span {
        font-size: 32px;
        font-weight: bold;
        color: black;
    }

    .content-on-main-banner p {
        font-weight: bold;
        margin: 0px;
        font-size: 26px;
        color: black;
    }

    /* second banner styles */
    .second-banner {
        background-color: rgba(245, 245, 220, 0.3);
        padding: 20px;
        display: flex;
        flex-direction: column;

    }

    .first-block-on-second-banner {
        width: 100%;
    }

    .first-block-on-second-banner h3 {
        font-weight: bold;
    }

    .second-banner-points {
        display: flex;
    }

    .bi-dot {
        font-size: 16px;
    }

    .second-banner-points p {
        margin: 0px;
        color: black;
        font-size: 14px;
        font-weight: 600;
    }

    .second-banner-points img {
        padding-left: 15px;
    }

    .live-video-img-block img {
        width: 70px;
        height: 30px;
    }

    .bottom-quotation h4 {
        padding-top: 10px;
        font-size: 18px;
        font-weight: 700;
        text-align: center;
    }

    .qr-code-block img {
        width: 60px;
        height: 50px;
    }

    .video-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    iframe {
        border-radius: 20px;
        width: 280px;
        height: 150px;
        margin-top: 20px;
    }

    /* third banner styles */
    .third-banner {
        background-color: rgba(219, 235, 197, 0.3);
        padding: 20px;
    }

    .content-on-third-banner {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .comparison-table-block h3 {
        font-weight: 700;
        padding-left: 10px;
        font-size: 21px;
    }

    .second-banner-table-block img {
        width: 100%;
        height: 180px;
    }

    .right-top-main-point p {
        font-size: 14px;
        font-weight: 600;
    }

    .key-points-on-third-banner h4 {
        font-size: 21px;
        font-weight: 600;
    }

    .temp-points {
        display: flex;
    }

    .temp-points i {
        font-size: 16px;
    }

    .temp-points p {
        font-size: 14px;
        margin: 0px;
    }

    .right-bottom-cooking-image {
        display: flex;
        justify-content: center;
    }

    .right-bottom-cooking-image img {
        border-radius: 10px;
        width: 250px;
        height: 120px;
        margin-top: 10px;
    }

    /* fourth banner styles */
    .fourth-banner {
        background-color: #F5F5F5;
        padding: 20px;
    }

    .tables-on-fourth-banner h3 {
        font-size: 16px;
        font-weight: 700;
    }

    .content-on-fourth-banner {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .health-benefits-table {
        width: 100%;
        border-collapse: collapse;
        margin: 10px 0px 0px 0px;
        border-radius: 1rem;
        font-size: 12px;
        overflow: hidden;
    }

    .health-benefits-table th,
    .health-benefits-table td {
        border: 1px solid #ddd;
        padding: 6px;
        text-align: left;
        font-size: 10px;
        vertical-align: middle;
    }

    .health-benefits-table th {
        background-color: #f2f2f2;
        color: #2c3e50;
    }

    .health-benefits-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .health-benefits-table tr:hover {
        background-color: #f1f1f1;
    }

    /* Remove outer borders */
    .health-benefits-table thead th:first-child,
    .health-benefits-table tbody td:first-child {
        border-left: none;
    }

    .health-benefits-table thead th:last-child,
    .health-benefits-table tbody td:last-child {
        border-right: none;
    }

    .health-benefits-table thead tr:first-child th {
        border-top: none;
    }

    .health-benefits-table tbody tr:last-child td {
        border-bottom: none;
    }

    .second-half-tr-block {
        border-top: none;
    }

    .second-half-of-table {
        width: 100%;
        margin-top: 0px;
    }

    /* fifth banner styles */
    .fifth-banner {
        background-color: #F5F5F5;
        padding: 20px;
    }

    .content-on-fifth-banner {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .smoke-points-img-block img {
        width: 100%;
        height: 180px;
        border-radius: 10px;
    }

    .list-smoke-table-block {
        display: flex;
        justify-content: center;
    }

    .list-smoke-table-block img {
        width: 250px;
        height: 150px;
        border-radius: 10px;
    }

    .content-block-one {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .content-block-one {
        width: 100%;
    }

    .content-block-one p {
        margin: 0px;
        text-align: left;
        font-weight: 600;
        font-size: 12px;
        border-radius: 18px;
    }

    .first-para-content {
        padding: 5px 10px 5px 10px;
    }

    .second-para-content {
        padding: 5px 10px 5px 10px;
    }

    .third-para-content {
        padding: 5px 10px 5px 10px;
    }

    /* Arrows on main banner styles */
    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        color: white;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        cursor: pointer;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .left {
        left: 10px;
    }

    .right {
        right: 10px;
    }

    .banners-scroll-block:hover .arrow {
        opacity: 1;
        visibility: visible;
    }

    .arrow:hover {
        background: rgba(0, 0, 0, 0.7);
    }

    /* product unique points stylings */
    .product-unique-points-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        padding: 20px 15px 10px 20px;
    }

    .guarantee-points-block {
        width: 40%;
    }

    .Quality-assurance-block {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .Quality-assurance-block h3 {
        font-family: 'Open Sans', sans-serif;
        color: #00796B;
        font-weight: 700;
        font-size: 28px;
    }

    .quality-assurance-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .quality-assurance-points-list {
        text-align: left;
    }

    .quality-assurance-points-list p {
        margin-bottom: 0px;
        font-size: 14px;
    }

    .sub-qc-members-heading-block {
        padding-left: 0px;
    }

    .sub-qc-members-heading-block h5 {
        padding-top: 15px;
        font-weight: 700;
    }

    .bottle-scan-link-image {
        display: flex;
        justify-content: center;
    }

    .naturally-rich-in-block {
        width: 90%;
    }

    .absolutely-free-of-block {
        width: 90%;
    }

    /* mainly used for block styles */
    .mainly-used-for-block {
        width: 100%;
        background-color: rgba(189, 252, 201, 0.4);
        border-radius: 30px;
        padding: 20px 20px 30px 20px;
        height: 350px;
    }

    /* guarantee points block styles */
    .guarantee-points-block {
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .guarantee-points-block h3 {
        color: #00796B;
        font-weight: bold;
        margin-bottom: 20px;
        padding-left: 25px;
    }

    .guarantee-image-block img {
        border-radius: 15px;
    }

    .naturally-rich-in-block {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .naturally-rich-in-block h3 {
        color: #00796B;
        font-weight: bold;
        margin-bottom: 20px;
        padding-left: 22px;
    }

    .rich-in-image-block img {
        border-radius: 15px;
    }

    .absolutely-free-of-block {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .absolutely-free-of-block h3 {
        color: #00796B;
        font-weight: bold;
        margin-bottom: 20px;
        padding-left: 18px;
    }

    .absolutely-free-of-image-block img {
        border-radius: 15px;
    }

    /* Most loved section stylings */
    .most-loved-section {
        padding: 20px;
        display: flex;
    }

    .most-loved-block h3 {
        font-family: "Poppins", sans-serif;
        text-align: left;
        margin-bottom: 20px;
        color: black;
        font-weight: 700;
        text-align: center;
    }

    .loved-product-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .loved-product p {
        margin-bottom: 0px;
        font-size: 14px;
    }

    .loved-product img {
        width: 90px;
        height: 90px;
    }

    /* recommended section stylings */
    .recommended-section {
        width: 90%;
    }

    .recommended-block h3 {
        font-weight: 700;
        margin-bottom: 20px;
    }

    .recommended-combo-pack-list {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    .combo-pack-of-6 img {
        width: 120px;
        height: 110px;
    }

    .combo-pack-of-8 img {
        width: 120px;
        height: 110px;
    }

    .combo-pack p {
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        margin-top: 10px;
    }

    /* categories section stylings*/
    .categories-section h3 {
        font-weight: 700;
        text-align: center;
        margin-bottom: 35px;
        margin-top: 50px;
    }

    .categories-images-block {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .image-block img {
        width: 150px;
        height: 190px;
    }

    .image-block h4 {
        font-size: 19px;
        padding-top: 10px;
    }

    /* brand logos display section stylings */
    .brand-logos-display-section {
        background-color: rgba(211, 204, 204, 0.5);
        height: 300px;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
    }

    .logos-display-block h3 {
        text-align: center;
        font-weight: bold;
    }

    .logos-block {
        display: flex;
        justify-content: space-between;
        gap: 100px;
        padding-top: 40px;
        text-align: center;
        transition: transform 0.5s ease-in-out;
        align-items: center;
    }

    .logos-block div {
        flex-shrink: 0;
    }

    .brand-logo img {
        border-radius: 5px;
        display: block;
        margin: 0 auto;
    }

    /* Temperature cooking section stylings */
    .temperature-cooking-section {
        display: flex;
        justify-content: space-between;
        background-color: #E6D6E3;
        border-radius: 20px;
        padding: 0px 50px;
        margin-top: 40px;

    }

    .temperature-cooking-block h3 {
        font-family: "Poppins", sans-serif;
        text-align: left;
        padding: 20px 10px;
        color: black;
        font-weight: bold;
    }

    .temperature-cooking-link-block {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        padding: 20px 10px;
    }

    .temperature-cooking-link-block a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: black;
        padding: 10px;
        background-color: #fff8e1;
        border-radius: 10px;
    }


    /* oils info tables stylings */
    .oils-info-tables-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .oils-info-tables-block img {
        width: 350px;
        height: 150px;
    }

    /* Footer section stylings */
    .footer-section {
        padding: 30px 10px 0px 10px;
    }

    .footer-section-block {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        color: #FFFFFF;

    }

    .our-products-list-in-footer p {
        font-size: 20px;
        font-weight: 700;
        color: #D4AF37;
    }

    /* know us block in footer styles */
    .know-us-block-in-footer {
        width: 140px;
    }

    .know-us-heading {
        font-size: 20px;
        font-weight: 700;
        color: #D4AF37;
    }

    .know-us-list p {
        margin: 0px;
        margin-bottom: 4px;
        font-size: 14px;
    }

    .our-products-list-in-footer li {
        margin-bottom: 4px;
    }

    .social-media-block {
        color: #FFFFFF;
        width: 51%;
        transform: translateY(-100px) translateX(170px);
    }

    .logo-at-footer img {
        margin-bottom: 10px;
        width: 140px;
        height: 100px;
    }
}

@media (max-width: 480px) {}

/*** 

====================================================================
                        Our-Products-Page-One
====================================================================

***/
.products-block h3 {
    font-weight: 600;
    margin-top: 50px;
}

.products-display-block {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 20px;
}

.image-block-in-our-product-page a {
    text-decoration: none;
}

.image-block-in-our-product-page {
    width: 240px;
    border: 1px solid #f5f5f5;
}

.image-block-in-our-product-page img {
    border-radius: 5px;
}

.image-info h2 {
    text-decoration: none;
    font-size: 15px;
    line-height: 24px !important;
    font-weight: 600;
    color: black;
    margin: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.image-info h2:hover {
    color: #8B4513;
}

.star-rating {
    margin-left: 0px;
    margin-right: 0px;
    overflow: hidden;
    position: relative;
    height: 1.618em;
    line-height: 1.618;
    font-size: 1.6em;
    width: 4.2em;
    font-family: star;
    font-weight: 400;
}

.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    width: 90%;
}

.star-rating span::before {
    content: '\2605\2605\2605\2605\2605';
    top: 0;
    position: absolute;
    left: 0;
    color: #f9ca63;
}

.star-rating span.filled::before {
    color: #f9ca63;
}

.star-rating::before {
    content: '\2605\2605\2605\2605\2605';
    opacity: .25;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.price-tag-in-our-produts-page {
    font-size: 29px;
    font-weight: 600;
    color: black;
}

.sub-price-tag-in-our-products-page {
    font-size: 14px;
    color: black;
}

.cart-btn-in-our-products-page {
    border-radius: 12px;
    padding: 5px 15px;
    background-color: #558B2F;
    color: #F5F5DC;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .image-block-in-our-product-page {
        border: 1px solid #f5f5f5;
        padding: 10px;
        width: 100%;
    }

    .img-and-info-block {
        display: flex;
        width: 100%;
    }

    .image-block-in-our-product-page img {
        width: 200px;
    }

    .image-info {
        padding-left: 10px;
        width: 600px;
    }

    .star-rating {
        width: 4.5em;
    }

    .cart-content-block {
        display: flex;
        justify-content: center;
    }

    .cart-btn-in-our-products-page {
        padding: 5px 45px;
        background-color: #558B2F;
        color: #F5F5DC;
        font-weight: 600;
        margin-top: 10px;
    }

}

/*** 

====================================================================
                        About-oils-Page-One
====================================================================

***/
/* first section in about oil styles */
.image-display-block {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.about-oils-top-image img {
    border-radius: 10px;
    margin-top: 40px;
}

/* second section in about oil styles */
.about-oils-second-section {
    margin-top: 30px;
}

.second-section-img-block {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* product unique points stylings */
.product-unique-points-section {
    margin-top: 20px;
}

.product-unique-points-block {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 10px 15px 10px 30px;
}

.Quality-assurance-block {
    width: 70%;
    background-color: rgba(255, 255, 200, 0.4);
    border-radius: 30px;
    padding: 20px 20px 30px 20px;
    margin-bottom: 15px;
}

.Quality-assurance-block h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    color: #00796B;
}

.quality-assurance-content {
    display: flex;
    gap: 50px;
}

.assurance-point {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.quality-assurance-points-list {
    margin-top: 10px;
}

.quality-assurance-points-list p {
    margin-bottom: 0px;
    font-size: 18px;
}

.sub-qc-members-heading-block {
    padding-left: 0px;
}

.sub-qc-members-heading-block h5 {
    padding-top: 15px;
    font-weight: 600;
}

.bottle-scan-link-image img {
    border-radius: 16px;
}

/* mainly used for block styles */
.mainly-used-for-block {
    width: 26%;
    background-color: rgba(189, 252, 201, 0.4);
    border-radius: 30px;
    padding: 20px 20px 30px 20px;
    height: 416px;
}

.mainly-used-for-block h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    color: #00796B;
    margin-bottom: 20px;
}

.point-and-image-block {
    display: flex;
    gap: 10px;
}

.mainly-used-block-button button {
    padding: 10px 30px 10px 30px;
    border-radius: 15px;
    color: black;
    font-size: 19px;
    font-weight: 600;
}

/* guarantee points block styles */
.guarantee-points-block {
    width: 30%;
}

.guarantee-points-block h3 {
    color: #00796B;
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 25px;
}

.guarantee-image-block img {
    border-radius: 15px;
}

.naturally-rich-in-block {
    width: 30%;
}

.naturally-rich-in-block h3 {
    color: #00796B;
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 22px;
}

.rich-in-image-block img {
    border-radius: 15px;
}

.absolutely-free-of-block {
    width: 30%;
}

.absolutely-free-of-block h3 {
    color: #00796B;
    font-weight: bold;
    margin-bottom: 20px;
    padding-left: 18px;
}

.absolutely-free-of-image-block img {
    border-radius: 15px;
}

/* third banner styles */
.third-banner {
    background-color: rgba(219, 235, 197, 0.3);
    padding: 20px 20px 20px 40px;
}

.content-on-third-banner {
    display: flex;
    gap: 50px;
}

.comparison-table-block h3 {
    font-weight: 600;
    padding-left: 30px;
}

.right-top-main-point p {
    font-size: 18px;
    font-weight: 600;
}

.key-points-on-third-banner h4 {
    font-size: 22px;
    font-weight: 600;
}

.temp-points {
    display: flex;
}

.temp-points i {
    font-size: 22px;
}

.temp-points p {
    font-size: 19px;
    margin: 0px;
}

.right-bottom-cooking-image img {
    border-radius: 10px;
}

/* fourth banner styles */
.fourth-banner {
    background-color: #F5F5F5;
    padding: 20px 20px 20px 40px;
}

.content-on-fourth-banner {
    display: flex;
    gap: 20px;
}

.health-benefits-table {
    width: 620px;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 1rem;
    overflow: hidden;
}

.health-benefits-table th,
.health-benefits-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    font-size: 13px;
    vertical-align: middle;
}

.health-benefits-table th {
    background-color: #f2f2f2;
    color: #2c3e50;
}

.health-benefits-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.health-benefits-table tr:hover {
    background-color: #f1f1f1;
}

/* Remove outer borders */
.health-benefits-table thead th:first-child,
.health-benefits-table tbody td:first-child {
    border-left: none;
}

.health-benefits-table thead th:last-child,
.health-benefits-table tbody td:last-child {
    border-right: none;
}

.health-benefits-table thead tr:first-child th {
    border-top: none;
}

.health-benefits-table tbody tr:last-child td {
    border-bottom: none;
}

.second-half-tr-block {
    border-top: none;
}

.second-half-of-table {
    width: 580px;
    margin-top: 90px;
}

/* fifth banner styles */
.fifth-banner {
    background-color: #F5F5F5;
    padding: 20px 20px 20px 30px;
}

.content-on-fifth-banner {
    display: flex;
    gap: 40px;
}

.content-block-one {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.content-block-one {
    width: 95%;
}

.content-block-one p {
    margin: 0px;
    text-align: left;
    font-weight: 600;
    border-radius: 18px;
}

.first-para-content {
    padding: 5px 10px 5px 10px;
}

.second-para-content {
    padding: 5px 10px 5px 10px;
}

.third-para-content {
    padding: 5px 10px 5px 10px;
}

@media (max-width: 768px) {

    /* first section in about oil styles */
    .image-display-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .about-oils-top-image img {
        width: 390px;
        height: 300px;
        border-radius: 10px;
    }

    .about-oils-second-image img {
        margin-top: 0px;
    }

    .oils-machine-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .oils-machine-image img {
        width: 300px;
        height: 200px;
        margin-top: 10px;
    }

    /* second section in about oil styles */
    .about-oils-second-section {
        margin-top: 30px;
    }

    .second-section-img-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .second-section-img-block img {
        width: 380px;
        height: 210px;
    }
}


/*** 

====================================================================
                        account-Page-One
====================================================================

***/
.signup-section {
    font-family: Arial, sans-serif;
    background-color: #fdf6e4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.signup-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 320px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.signup-container h2 {
    color: #4CAF50;
    text-align: center;
}

.label-block {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.input-block {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.terms-and-conditions-block {
    padding: 20px 0px 5px 0px;
}

#terms {
    width: auto;
}

.button-block {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.button-block:hover {
    background-color: #45a049;
}

.error {
    color: red;
    font-size: 0.875em;
    display: none;
}



/*** 

====================================================================
                        cart-Page-One
====================================================================

***/
.cart-page-section {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* cart container stylings */
.cart-container {
    width: 80%;
    margin: 40px auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cart-container h1 {
    text-align: center;
    color: #4CAF50;
    margin-bottom: 30px;
}

/* cart items headings stylings */
.cart-items-heading-section {
    margin-top: 20px;
}

.cart-item-headings {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    background-color: #F1F1F1;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.cart-item-headings span {
    flex: 1;
}

/* cart items in js dynamic styligns */
.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.cart-item-name {
    text-align: center;
    width: 430px;
}

.cart-item-price,
.cart-item-subtotal {
    flex: 1;
    text-align: center;
}

.cart-item-quantity {
    flex: 1.5;
    text-align: center;
}

.cart-item-quantity button {
    background-color: #FFEB3B;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.cart-item-remove {
    flex: 0.8;
    text-align: center;
    color: #FF5733;
    cursor: pointer;
    font-weight: bold;
}

/* cart summary block stylings */
.cart-summary {
    margin-top: 30px;
    text-align: right;
    font-size: 18px;
}

.cart-summary input {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cart-summary button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.cart-summary h3 {
    margin-top: 10px;
    color: #FF5733;
}

#checkout {
    margin-top: 20px;
    background-color: #FF5733;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

/* Medium devices (tablets, ≤ 480px) */
@media (max-width: 480px) {
    .cart-page-section {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    /* cart container stylings */
    .cart-container {
        width: 80%;
        margin: 40px auto;
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .cart-container h1 {
        text-align: center;
        color: #4CAF50;
        margin-bottom: 30px;
    }

    /* cart items headings stylings */
    .cart-items-heading-section {
        margin-top: 20px;
    }

    .cart-item-headings {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-weight: bold;
        background-color: #F1F1F1;
        padding: 10px;
        border-radius: 5px;
        text-align: center;
    }

    .cart-item-headings span {
        display: flex;
        flex: 1;
    }

    /* cart items in js dynamic styligns */
    .cart-item {
        display: flex;
        justify-content: space-between;
        padding: 15px;
        border-bottom: 1px solid #eee;
        align-items: center;
    }

    .cart-item-image img {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }

    .cart-item-name {
        text-align: center;
        width: 430px;
    }

    .cart-item-price,
    .cart-item-subtotal {
        flex: 1;
        text-align: center;
    }

    .cart-item-quantity {
        flex: 1.5;
        text-align: center;
    }

    .cart-item-quantity button {
        background-color: #FFEB3B;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
    }

    .cart-item-remove {
        flex: 0.8;
        text-align: center;
        color: #FF5733;
        cursor: pointer;
        font-weight: bold;
    }

    /* cart summary block stylings */
    .cart-summary {
        margin-top: 30px;
        text-align: right;
        font-size: 18px;
    }

    .cart-summary input {
        padding: 10px;
        margin-right: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .cart-summary button {
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
        display: flex;
        margin: 20px 0px;

    }

    .cart-summary h3 {
        margin-top: 10px;
        color: #FF5733;
    }

    #checkout {
        margin-top: 20px;
        background-color: #FF5733;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        border-radius: 5px;
    }
}

/*** 

====================================================================
                        Check-out-Page-One
====================================================================

***/
/* checkout page , checkout container stylings */
.checkout-page-section {
    font-family: Arial, sans-serif;
    padding-top: 10px;
}

.checkout-container {
    max-width: 90%;
    margin: 0px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.checkout-container h1 {
    text-align: center;
    color: #4CAF50;
    padding-bottom: 20px;
}

.checkout-form {
    display: flex;
    flex-wrap: wrap;
}

/* shipping details section stylings */
.shipping-details-section {
    margin-bottom: 20px;
    width: 40%;
    padding-left: 30px;
}

.shipping-details-section h2 {
    color: #8B4513;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 10px;
}

.shipping-details-form-section label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.shipping-details-form-section input,
select {
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* payment details section stylings */
.payment-details-section {
    width: 40%;
    margin-left: 190px;
}

.payment-details-section h2 {
    color: #8B4513;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 10px;
}

.payment-details-form-section label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.payment-details-form-section input {
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* upi payments block stylings */
.upi-payment {
    margin-top: 20px;
}

.upi-payment h3 {
    color: #4CAF50;
    margin-top: 20px;
}

.upi-payment label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.upi-payment input {
    width: 50%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.upi-button {
    display: block;
    width: 60%;
    padding: 10px;
    background-color: #8B4513;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.upi-button:hover {
    background-color: #7a3b12;
}

/* items details block stylings */
.item-details-section {
    width: 100%;
}

.item-details-section h2 {
    color: #8B4513;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 10px;
}

.item-details {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.item img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
}

.item-info {
    flex-grow: 1;
}

.item-info p {
    margin: 0px;
}

.item-name {
    font-weight: bold;
    color: #333;
}

.item-price {
    color: #4CAF50;
}

/* order details block stylings */
.order-details-section {
    width: 60%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.order-details-section h2 {
    color: #8B4513;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 10px;
}

.order-summary {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.order-summary p {
    margin: 0 0 10px;
    color: #555;
}

.order-summary span {
    float: right;
    color: #333;
}

/* place order button stylings */
.checkout-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.checkout-button:hover {
    background-color: #45a049;
}

/* Medium devices (tablets, ≤ 480px) */
@media (max-width: 480px) {

    /* checkout page , checkout container stylings */
    .checkout-page-section {
        font-family: Arial, sans-serif;
        padding-top: 10px;
    }

    .checkout-container {
        max-width: 90%;
        margin: 0px auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 10px;
    }

    .checkout-container h1 {
        text-align: center;
        color: #4CAF50;
        font-weight: 700;
        padding-bottom: 20px;
    }

    .checkout-form {
        display: flex;
        flex-wrap: wrap;
    }

    /* shipping details section stylings */
    .shipping-details-section {
        margin-bottom: 20px;
        width: 100%;
        padding-left: 0px;
    }

    .shipping-details-section h2 {
        color: #8B4513;
        border-bottom: 2px solid #8B4513;
        padding-bottom: 10px;
    }

    .shipping-details-form-section label {
        display: block;
        margin-bottom: 5px;
        color: #555;
    }

    .shipping-details-form-section input,
    select {
        width: 95%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    /* payment details section stylings */
    .payment-details-section {
        width: 90%;
        margin-left: 0px;
    }

    .payment-details-section h2 {
        color: #8B4513;
        border-bottom: 2px solid #8B4513;
        padding-bottom: 10px;
    }

    .payment-details-form-section label {
        display: block;
        margin-bottom: 5px;
        color: #555;
    }

    .payment-details-form-section input {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    /* upi payments block stylings */
    .upi-payment {
        margin-top: 20px;
    }

    .upi-payment h3 {
        color: #4CAF50;
        margin-top: 20px;
    }

    .upi-payment label {
        display: block;
        margin-bottom: 5px;
        color: #555;
    }

    .upi-payment input {
        width: 50%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    .upi-button {
        display: block;
        width: 60%;
        padding: 10px;
        background-color: #8B4513;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        cursor: pointer;
    }

    .upi-button:hover {
        background-color: #7a3b12;
    }

    /* items details block stylings */
    .item-details-section {
        width: 100%;
        margin-top: 30px;
    }

    .item-details-section h2 {
        color: #8B4513;
        border-bottom: 2px solid #8B4513;
        padding-bottom: 10px;
    }

    .item-details {
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 5px;
        border: 1px solid #ddd;
    }

    .item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .item img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        border-radius: 5px;
    }

    .item-info {
        flex-grow: 1;
    }

    .item-info p {
        margin: 0px;
    }

    .item-name {
        font-weight: bold;
        color: #333;
    }

    .item-price {
        color: #4CAF50;
    }

    /* order details block stylings */
    .order-details-section {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .order-details-section h2 {
        color: #8B4513;
        border-bottom: 2px solid #8B4513;
        padding-bottom: 10px;
    }

    .order-summary {
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 5px;
        border: 1px solid #ddd;
    }

    .order-summary p {
        margin: 0 0 10px;
        color: #555;
    }

    .order-summary span {
        float: right;
        color: #333;
    }

    /* place order button stylings */
    .checkout-button {
        display: block;
        width: 100%;
        padding: 15px;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 18px;
        cursor: pointer;
    }

    .checkout-button:hover {
        background-color: #45a049;
    }
}


/*** 

====================================================================
                        Products-details-Page-One
====================================================================

***/
.product-details-section {
    display: flex;
    margin-top: 40px;
    padding: 20px;
}

/* sub imgaes block stylings */
.sub-images-block {
    width: 10%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.left-small-image-block img {
    border-radius: 10px;
    border: 1px solid black;
    cursor: pointer;
    transition: transform 0.3s ease;

}

.left-small-image-block img:hover {
    transform: scale(1.1);
    /* Enlarge the thumbnail image on hover */
}

/* main image block stylings */
.image-block-container {
    width: 30%;
}

.main-image {
    border-radius: 10px;
    border: 1px solid black;
}

.small-image-block img {
    margin-top: 10%;
    bottom: 30%;
}

/* product full details block stylings */
.product-full-details-block {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.product-full-details-block h1 {
    font-size: 24px;
}

.bottom-line {
    border-bottom: 1px solid #d5d9d9;
    width: 90%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.price-block span {
    font-size: 29px;
    font-weight: 600;
}

/* product sizes block stylings */
/* sixes block styles */

.sizes-block-container {
    display: flex;
    gap: 10px;
}

.quantity-btn {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border 0.3s ease;
    border: none;
}

.quantity-btn p {
    font-size: 14px;
    background-color: #558B2F;
    color: #FAF9F6;
    border-radius: 8px;
    padding: 5px 10px;
    margin: 0px;
    font-weight: 600;
    text-align: center;
}

.quantity-btn span {
    display: none;
    font-size: 13px;
    font-weight: 510;
    padding-left: 10px;
}

.quantity-btn.selected {
    border: 2px solid #FFD700;
}

.quantity-btn.hovered {
    border: 2px solid blue;
}

/* Quantity Selector Block Stylings */
.quantity-selector-block {
    display: flex;
    align-items: start;
    justify-content: left;
    width: 50%;
    min-width: 90px;
    max-width: 140px;
    margin: 18px auto 18px auto;
    background: #f8faf6;
    border: 2px solid #bfa14a;
    border-radius: 16px;
    padding: 10px 12px;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(41, 92, 45, 0.07);
}

.quantity-selector-block button {
    background: #295c2d;
    color: #fffbe6;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector-block button:hover {
    background: #bfa14a;
    color: #295c2d;
}

#product-qty {
    font-size: 1.15em;
    font-weight: 700;
    color: #295c2d;
    min-width: 28px;
    text-align: center;
    display: inline-block;
    background: #fff;
    border-radius: 6px;
    padding: 2px 10px;
    border: 1px solid #eaf6e3;
}

/* product specification block stylings */
.product-specifications-block table {
    width: 100%;
    border-collapse: collapse;
}

.left-heading {
    font-size: 18px;
    font-weight: 600;
    width: 30%;
    margin-bottom: 10px;
}

/* about this item block stylings */
.product-landing-about {
    margin-top: 32px;
    padding: 0 0 24px 0;
    font-family: "Poppins", Arial, sans-serif;
    color: #222;
}

.product-landing-about h2 {
    font-size: 1.45em;
    font-weight: 700;
    margin-bottom: 12px;
    color: #295c2d;
    letter-spacing: 0.5px;
}

.product-landing-about h3 {
    font-size: 1.18em;
    font-weight: 600;
    margin: 22px 0 10px 0;
    color: #bfa14a;
    letter-spacing: 0.2px;
}

.product-landing-about ul {
    list-style: disc inside;
    margin: 0 0 0 10px;
    padding: 0 0 0 10px;
}

.product-landing-about li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 1.05em;
}

.product-landing-about li strong {
    color: #295c2d;
    font-weight: 600;
}

.product-landing-about details {
    margin-top: 18px;
    border: 1.5px solid #bfa14a;
    border-radius: 10px;
    background: #fffbe6;
    padding: 0;
    font-size: 1em;
    transition: box-shadow 0.2s;
}

.product-landing-about details[open] {
    box-shadow: 0 2px 12px rgba(191, 161, 74, 0.08);
}

.product-landing-about summary {
    cursor: pointer;
    font-weight: 600;
    color: #bfa14a;
    padding: 12px 18px;
    outline: none;
    font-size: 1.08em;
    border-radius: 10px 10px 0 0;
    background: none;
    transition: background 0.18s;
}

.product-landing-about details[open] summary {
    background: #f8faf6;
}

.product-landing-nutrition ul {
    margin: 0 0 10px 18px;
    padding: 0 0 10px 0;
    list-style: disc inside;
}

.product-landing-nutrition li {
    font-size: 1em;
    margin-bottom: 7px;
    color: #295c2d;
}

.qc-about-section {
    margin-top: 32px;
    padding: 0 0 24px 0;
    font-family: "Poppins", Arial, sans-serif;
    color: #222;
}

.qc-about-title {
    font-size: 1.45em;
    font-weight: 700;
    margin-bottom: 12px;
    color: #295c2d;
    letter-spacing: 0.5px;
}

.qc-about-list {
    list-style: disc inside;
    margin: 0 0 0 10px;
    padding: 0 0 0 10px;
}

.qc-about-list li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 1.05em;
}

.qc-about-list li strong {
    color: #295c2d;
    font-weight: 600;
}

.qc-nutrition-btn {
    margin-top: 18px;
    background: #bfa14a;
    color: #295c2d;
    border: none;
    border-radius: 8px;
    padding: 8px 22px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    display: inline-block;
}

.qc-nutrition-btn:hover {
    background: #295c2d;
    color: #fffbe6;
}

.qc-nutrition-content {
    margin-top: 16px;
}

.qc-nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    font-size: 1em;
}

.qc-nutrition-table th,
.qc-nutrition-table td {
    border: 1px solid #eaf6e3;
    padding: 6px 12px;
    text-align: left;
}

.qc-nutrition-table th {
    background: #f8faf6;
    color: #295c2d;
    font-weight: 700;
}

.qc-nutrition-table tr:nth-child(even) td {
    background: #fffbe6;
}

@media (max-width: 600px) {
    .qc-about-section {
        padding: 0 2vw 18px 2vw;
    }

    .qc-about-title {
        font-size: 1.18em;
    }
}

@media (max-width: 600px) {
    .product-landing-about {
        padding: 0 2vw 18px 2vw;
    }

    .product-landing-about h2 {
        font-size: 1.18em;
    }

    .product-landing-about h3 {
        font-size: 1.05em;
    }
}

/* right small block stylings */
.right-small-block {
    width: 20%
}

.right-block-content {
    border: 1px solid black;
    border-radius: 10px;
    height: 400px;
    padding: 20px;
}

.original-price-span {
    font-size: 26px;
    font-weight: 600;
    color: black;
}

.sub-one-litre-span {
    font-size: 14px;
    font-weight: 500;
    padding-left: 4px;
    transform: translateY(10px);
}

.location-block {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.location-block p {
    margin: 0px;
    font-size: 12px;
}

.quantity-selector {
    border: 1px solid gray;
    background-color: lightgray;
    border-radius: 6px;
    color: black;
    padding: 3px 10px;
    margin-top: 20px;
}

.selection-block {
    background-color: lightgray;
    width: 115px;
    color: black;
}

/* buttons block stylings */
.buttons-block {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.add-to-cart-btn {
    background-color: #D4A017;
    border-radius: 10px;
    padding: 5px 15px;
}

.buy-now-btn {
    background-color: #8B5A2B;
    border-radius: 10px;
    padding: 5px 15px;
}

.bottom-thin-border-line {
    border: 1px solid lightgrey;
    margin-top: 10px;
}

.add-to-wish-list-btn {
    border: 1px solid gray;
    margin-top: 15px;
    padding: 3px 78px 3px 10px;
    border-radius: 6px;
}

/* Right Products Overview Block stylings */
.right-products-overview-block {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 10px 0px 60px;
}

.right-products-overview-list h3 {
    font-size: 22px;
    font-weight: 700;
    color: black;
    margin-bottom: 15px;
}

.products-list-display-block p {
    margin-bottom: 5px;
}

.products-list-display-block a {
    text-decoration: none;
    color: #183F12;
}

.qc-related-section {
    margin: 60px auto 0 auto;
    padding: 0 0 40px 0;
    max-width: 1200px;
    text-align: center;
}

.qc-related-title {
    color: #295c2d;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.qc-related-subtitle {
    color: #bfa14a;
    font-size: 1.18rem;
    margin-bottom: 32px;
    margin-top: 4px;
    font-weight: 500;
}

.qc-related-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
    margin-top: 18px;
}

.qc-related-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(41, 92, 45, 0.08);
    width: 320px;
    padding: 0 0 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.18s, transform 0.18s;
    border: 1.5px solid #eaf6e3;
    position: relative;
}

.qc-related-card:hover {
    box-shadow: 0 8px 32px rgba(41, 92, 45, 0.13);
    transform: translateY(-4px) scale(1.03);
    border-color: #bfa14a;
}

.qc-related-img-wrap {
    width: 100%;
    position: relative;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
    background: #f8faf6;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qc-related-img-wrap img {
    width: 90%;
    height: 210px;
    object-fit: cover;
    border-radius: 14px;
    margin: 12px 0 0 0;
    background: #fff;
}

.qc-related-off {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e95d5d;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 8px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.qc-related-info {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    margin-top: 10px;
}

.qc-related-name {
    color: #295c2d;
    font-size: 1.08em;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    min-height: 48px;
    transition: color 0.18s;
}

.qc-related-name:hover {
    color: #bfa14a;
}

.qc-related-price {
    font-size: 1.13em;
    color: #295c2d;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.qc-related-new {
    color: #295c2d;
    font-weight: 700;
}

.qc-related-old {
    color: #878787;
    text-decoration: line-through;
    font-size: 0.98em;
    margin-left: 8px;
    font-weight: 400;
}

.qc-related-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1em;
    margin-top: 2px;
}

.qc-related-stars {
    color: #FFA41C;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.qc-related-value {
    color: #111;
    font-size: 1em;
    margin-left: 2px;
}

@media (max-width: 1100px) {
    .qc-related-cards {
        gap: 18px;
    }

    .qc-related-card {
        width: 98vw;
        max-width: 340px;
    }
}

@media (max-width: 700px) {
    .qc-related-section {
        padding: 0 2vw 30px 2vw;
    }

    .qc-related-card {
        width: 98vw;
        max-width: 340px;
    }

    .qc-related-img-wrap img {
        height: 160px;
    }
}

.qc-reviews-section {
    max-width: 1100px;
    margin: 60px auto 0 auto;
    padding: 0 0 60px 0;
    font-family: "Poppins", Arial, sans-serif;
}

.qc-reviews-title {
    text-align: center;
    color: #295c2d;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.qc-reviews-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.qc-reviews-summary-left {
    flex: 1 1 220px;
    text-align: left;
}

.qc-reviews-stars-icons {
    color: #295c2d;
    font-size: 1.5em;
    margin-right: 8px;
}

.qc-reviews-score {
    font-size: 1.18em;
    font-weight: 600;
    color: #295c2d;
}

.qc-reviews-count {
    color: #222;
    font-size: 1.08em;
    margin-top: 4px;
}

.qc-reviews-verified {
    color: #4ecbaf;
    margin-left: 6px;
    font-size: 1.1em;
}

.qc-reviews-summary-center {
    flex: 1 1 320px;
    min-width: 260px;
}

.qc-reviews-bars {
    margin-top: 8px;
}

.qc-reviews-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.qc-reviews-bar-stars {
    width: 38px;
    color: #295c2d;
    font-size: 1em;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.qc-reviews-bar {
    flex: 1;
    height: 12px;
    background: #f8faf6;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 6px;
    min-width: 80px;
}

.qc-reviews-bar-fill {
    height: 100%;
    background: #295c2d;
    border-radius: 8px;
}

.qc-reviews-bar-count {
    width: 28px;
    color: #295c2d;
    font-size: 1em;
    text-align: right;
}

.qc-reviews-summary-right {
    flex: 1 1 180px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.qc-reviews-write-btn {
    background: #14390e;
    color: #fffbe6;
    font-weight: 700;
    font-size: 1.18em;
    border: none;
    border-radius: 4px;
    padding: 12px 38px;
    cursor: pointer;
    transition: background 0.18s;
}

.qc-reviews-write-btn:hover {
    background: #295c2d;
}

.qc-reviews-divider {
    border-top: 1px solid #eaf6e3;
    margin: 32px 0 24px 0;
}

.qc-reviews-authenticity {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.qc-reviews-auth-icon {
    font-size: 2.2em;
    color: #bfa14a;
    margin-bottom: 4px;
}

.qc-reviews-auth-label {
    color: #878787;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.qc-reviews-auth-score {
    color: #295c2d;
    font-size: 1.3em;
    font-weight: 700;
    margin-top: 2px;
}

.qc-reviews-sort-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.08em;
    color: #222;
    margin-bottom: 18px;
    margin-left: 0;
}

.qc-reviews-list {
    margin-top: 0;
}

.qc-review-item {
    border-bottom: 1px solid #eaf6e3;
    padding: 24px 0 18px 0;
}

.qc-review-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.qc-review-stars {
    color: #295c2d;
    font-size: 1.2em;
    min-width: 90px;
}

.qc-review-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qc-review-avatar {
    background: #f8faf6;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #295c2d;
    font-size: 1.2em;
}

.qc-review-name {
    font-weight: 600;
    color: #295c2d;
    font-size: 1.08em;
}

.qc-review-verified {
    background: #295c2d;
    color: #fffbe6;
    font-size: 0.95em;
    font-weight: 600;
    border-radius: 4px;
    padding: 2px 10px;
    margin-left: 4px;
}

.qc-review-date {
    margin-left: auto;
    color: #878787;
    font-size: 1em;
    min-width: 110px;
    text-align: right;
}

.qc-review-content {
    font-size: 1.08em;
    color: #222;
    margin-left: 50px;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .qc-reviews-section {
        padding: 0 2vw 40px 2vw;
    }

    .qc-reviews-summary-row {
        flex-direction: column;
        gap: 12px;
    }

    .qc-reviews-summary-right {
        justify-content: flex-start;
        margin-top: 12px;
    }

    .qc-review-content {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .product-details-section {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 40px;
        padding: 20px;
    }

    /* sub imgaes block stylings */
    .sub-images-block {
        width: 20%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .left-small-image-block img {
        border-radius: 10px;
        border: 1px solid black;
        cursor: pointer;
        transition: transform 0.3s ease;
        position: static;
    }

    .left-small-image-block img:hover {
        transform: scale(1.1);
    }

    /* main image block stylings */
    .image-block-container {
        width: 80%;
    }

    .main-image {
        border-radius: 10px;
        border: 1px solid black;
    }

    .small-image-block img {
        margin-top: 25%;
        position: static;
        bottom: 30%;
    }

    /* product full details block stylings */
    .product-full-details-block {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 30px;
    }

    .product-full-details-block h1 {
        font-size: 24px;
    }

    .bottom-line {
        border-bottom: 1px solid #d5d9d9;
        width: 90%;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .price-block span {
        font-size: 29px;
        font-weight: 600;
    }

    /* product sizes block stylings */
    /* sixes block styles */
    .sizes-block-container {
        display: flex;
        gap: 10px;
    }

    .quantity-btn {
        border: 1px solid black;
        width: 20%;
        height: 30px;
        border-radius: 8px;

        cursor: pointer;
        transition: border 0.3s ease;
    }

    .quantity-btn p {
        font-size: 14px;
        background-color: #558B2F;
        color: #FAF9F6;
        border-radius: 8px;
        border-bottom: 1px solid black;
        margin: 0px;
        font-weight: 600;
        text-align: center;
        height: 30px;
    }

    .quantity-btn span {
        display: none;
        font-size: 13px;
        font-weight: 510;
        padding-left: 10px;
    }

    .quantity-btn.selected {
        border: 2px solid #FFD700;
    }

    .quantity-btn.hovered {
        border: 2px solid blue;
    }

    /* product specification block stylings */
    .product-specifications-block table {
        width: 100%;
        border-collapse: collapse;
    }

    .left-heading {
        font-size: 18px;
        font-weight: 600;
        width: 30%;
        margin-bottom: 10px;
    }

    /* about this item block stylings */
    .about-this-item-block ul {
        list-style: disc;
        padding-left: 20px;
    }

    .about-this-item-block li {
        margin-bottom: 10px;
    }

    .about-this-item-block li span {
        font-size: 16px;
        line-height: 1.5;
    }

    /* right small block stylings */
    .right-small-block {
        width: 20%
    }

    .right-block-content {
        border: 1px solid black;
        border-radius: 10px;
        height: 400px;
        padding: 20px;
    }

    .original-price-span {
        font-size: 26px;
        font-weight: 600;
        color: black;
    }

    .sub-one-litre-span {
        font-size: 14px;
        font-weight: 500;
        padding-left: 4px;
        transform: translateY(10px);
    }

    .location-block {
        display: flex;
        gap: 8px;
        margin-top: 10px;
    }

    .location-block p {
        margin: 0px;
        font-size: 12px;
    }

    .quantity-selector {
        border: 1px solid gray;
        background-color: lightgray;
        border-radius: 6px;
        color: black;
        padding: 3px 10px;
        margin-top: 20px;
    }

    .selection-block {
        background-color: lightgray;
        width: 115px;
        color: black;
    }

    /* buttons block stylings */
    .buttons-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .add-to-cart-btn {
        background-color: #D4A017;
        border-radius: 14px;
        padding: 5px 0px;
    }

    .buy-now-btn {
        background-color: #8B5A2B;
        border-radius: 14px;
        padding: 5px 0px;
    }

    .bottom-thin-border-line {
        border: 1px solid lightgrey;
        margin-top: 10px;
    }

    .add-to-wish-list-btn {
        border: 1px solid gray;
        margin-top: 15px;
        padding: 3px 78px 3px 10px;
        border-radius: 6px;
    }
}


/*** 

====================================================================
                        Privacy-policy-Page-One
====================================================================

***/
.privacy-policy {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 900px;
    margin: 20px auto;
}

.privacy-policy h1 {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-policy-footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px;
    margin-top: 20px;
}

.privacy-policy h1,
h2 {
    color: #333;
    margin-bottom: 15px;
}

.privacy-policy h2 {
    margin-top: 30px;
    font-size: 1.3em;
}

.privacy-policy ul {
    margin-left: 20px;
    list-style-type: disc;
}

.privacy-policy ul li {
    margin-bottom: 10px;
}

address {
    margin-top: 20px;
    font-style: normal;
}

.address-block a {
    color: #0066cc;
}

.address-block a:hover {
    text-decoration: underline;
}

/*** 

====================================================================
                        FAQ'S-Page-One
====================================================================

***/

.faqs-top-heading-block {
    display: flex;
    justify-content: center;
}

.faqs-main-header {
    display: flex;
    justify-content: center;
    width: 80%;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 15px;
    margin: 50px;
    border-radius: 10px;
}

.faq-container {
    width: 80%;
    margin: 20px auto;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
}

.faq-title {
    text-align: center;
    font-size: 24px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.accordion {
    background-color: #e4e4e4;
    color: #333;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion:hover {
    background-color: #c0d7b5;
}

.accordion:focus {
    outline: none;
}

.panel {
    padding: 15px;
    display: none;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
}

.panel p {
    margin: 0;
}

.accordion.open {
    background-color: #8bc34a;
}

.accordion img {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.accordion.open img {
    transform: rotate(-90deg);
}


/*** 

====================================================================
                        About-us-Page-One
====================================================================

***/
/* about us Styles */

.about-us {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

.about-us h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4CAF50;
    animation: fadeIn 1.5s ease-in-out;
}

.about-us p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    animation: fadeIn 2s ease-in-out;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4CAF50;
}

.feature p {
    font-size: 1rem;
    color: #555;
}

/* Mission and Values Section */
.mission,
.values {
    margin-top: 60px;
    text-align: left;
}

.mission h2,
.values h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #4CAF50;
    animation: fadeIn 1.5s ease-in-out;
}

.mission p,
.values ul {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    animation: fadeIn 2s ease-in-out;
}

.values ul {
    list-style-type: none;
    padding: 0;
}

.values ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.values ul li::before {
    content: "✔";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

/* Call to Action */
.call-to-action {
    margin-top: 60px;
    background-color: #4CAF50;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    animation: fadeIn 2s ease-in-out;
}

.call-to-action h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.call-to-action p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.call-to-action button {
    padding: 12px 30px;
    background-color: #fff;
    color: #4CAF50;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.call-to-action button:hover {
    background-color: #45a049;
    color: white;
}

/* about us Footer */
.about-us-footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 60px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*** 

====================================================================
                        Contact-us-Page-One
====================================================================

***/
/* contact us stylings */
.contact-hero {
    background-color: #8bc34a;
    padding: 100px 20px;
    text-align: center;
    color: white;
    animation: fadeIn 1.5s ease-in-out;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    padding: 60px 20px;
    background-color: #fff;
    animation: fadeIn 2s ease-in-out;
}

.contact-form h2 {
    font-size: 2.2rem;
    color: #4CAF50;
    /* Green */
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    font-size: 1rem;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

.contact-form button {
    padding: 12px 30px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #45a049;
}

/* Contact Details Cards Section */
.contact-details {
    padding: 60px 20px;
    background-color: #f9f9f9;
    animation: fadeIn 2s ease-in-out;
}

.contact-details h2 {
    font-size: 2.2rem;
    color: #4CAF50;
    margin-bottom: 40px;
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4CAF50;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #4CAF50;
}

.contact-card p {
    font-size: 1rem;
    color: #555;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    background-color: #fff;
    animation: fadeIn 2s ease-in-out;
}

.map-section h2 {
    font-size: 2.2rem;
    color: #4CAF50;
    margin-bottom: 30px;
    text-align: center;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* contact us footer styles */
.contact-us-footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.contact-us-footer p {
    margin: 0;
    font-size: 1rem;
}

.contact-us-footer .social-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0;
}

.contact-us-footer .social-links li {
    margin: 0 15px;
}

.contact-us-footer .social-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-us-footer .social-links li a:hover {
    color: #4CAF50;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*** 

====================================================================
                        Terms-and-conditions-us-Page-One
====================================================================

***/
/* terms and conditions Styles */
.terms-and-conditions-header {
    background-color: #8bc34a;
    color: white;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.terms-and-conditions-header h1 {
    margin: 0;
    font-size: 2.5rem;
}

.terms-and-conditions-header p {
    font-size: 1.1rem;
}

.terms-and-conditions-block {
    padding: 20px;
    background-color: white;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.terms-section {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #fff8e1;
    border-left: 5px solid #d4a373;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.terms-section h2 {
    color: #5d4037;
    margin-top: 0;
}

.terms-section a {
    color: #8bc34a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-section a:hover {
    color: #689f38;
}

.terms-and-conditions-footer {
    background-color: #5d4037;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-and-conditions-header h1 {
        font-size: 2rem;
    }

    .terms-and-conditions-header p {
        font-size: 1rem;
    }

    .terms-and-conditions-block {
        margin: 10px;
    }

    .terms-section {
        padding: 10px;
    }
}