/* ------------------------------ Global Style ------------------------------ */
body {
    font-family: "Inter", sans-serif;
    color: #6a6a6a;
    background-color: #eff2f1;
    margin: 0;
    overflow-x: hidden !important;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    color: #2f2f2f;
    margin-bottom: 1rem;
}

.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    color: #ffffff;
    background: #2f2f2f;
    border: 2px solid #2f2f2f;
}

/* Header */
.custom-navbar {
    background: #3b5d50;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.custom-navbar.scrolled {
    border-bottom: 3px solid #f9bf29;
    transition: border-top 0.3s ease;
}

.custom-navbar .nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-navbar .navbar-brand {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    z-index: 1001;
}

.custom-navbar .navbar-brand img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

@media (max-width: 568px) {
    .custom-navbar .navbar-brand img {
        height: 48px;
    }
}

.custom-navbar .nav-container .right-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.custom-navbar .navbar-right-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-navbar .navbar-collapse {
    display: flex;
    align-items: center;
}

.custom-navbar .custom-navbar-nav,
.custom-navbar .custom-navbar-cta {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}

.custom-navbar .custom-navbar-nav li {
    margin: 0 15px;
}

.custom-navbar .custom-navbar-nav li a {
    font-weight: 500;
    color: #ffffff;
    opacity: .5;
    transition: .3s all ease;
    position: relative;
    padding: 8px 0;
    text-decoration: none;
}

.custom-navbar .custom-navbar-nav li a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    background: #f9bf29;
    height: 5px;
    width: 0;
    transition: .15s all ease-out;
}

.custom-navbar .custom-navbar-nav li a:hover,
.custom-navbar .custom-navbar-nav li.active a {
    opacity: 1;
}

.custom-navbar .custom-navbar-nav li a:hover:before,
.custom-navbar .custom-navbar-nav li.active a:before {
    width: calc(100% - 16px);
}

.custom-navbar .custom-navbar-cta li a {
    color: #ffffff;
    font-size: 1.2rem;
    position: relative;
    text-decoration: none;
}

.custom-navbar .icon-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #f9bf29;
    color: #2f2f2f;
    font-weight: bold;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-navbar .navbar-toggler {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    width: 30px;
    height: 22px;
}

.custom-navbar .hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-navbar .navbar-toggler i {
    color: #ffffff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
    .custom-navbar .navbar-toggler {
        display: block;
    }

    .custom-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #3b5d50;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .custom-navbar .navbar-collapse.show {
        transform: translateX(0);
    }

    .custom-navbar .custom-navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .custom-navbar .custom-navbar-nav li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .custom-navbar .navbar-collapse.show .custom-navbar-nav li {
        opacity: 1;
        transform: translateY(0);
    }

    .custom-navbar .navbar-collapse.show .custom-navbar-nav li:nth-child(1) {
        transition-delay: 0.2s;
    }

    .custom-navbar .navbar-collapse.show .custom-navbar-nav li:nth-child(2) {
        transition-delay: 0.3s;
    }

    .custom-navbar .navbar-collapse.show .custom-navbar-nav li:nth-child(3) {
        transition-delay: 0.4s;
    }

    .custom-navbar .navbar-collapse.show .custom-navbar-nav li:nth-child(4) {
        transition-delay: 0.5s;
    }

    .custom-navbar .custom-navbar-nav li a {
        font-size: 2rem;
        font-weight: 600;
        opacity: 1;
    }

    .custom-navbar .custom-navbar-nav li a:before {
        height: 2px;
    }

    .custom-navbar.nav-open .hamburger-icon span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .custom-navbar.nav-open .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }

    .custom-navbar.nav-open .hamburger-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Footer */
.footer-section {
    padding: 60px 20px 20px 20px;
    background: #2c4a3f;
    background-size: 400% 400%;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    animation: moveGradient 20s ease infinite;
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    animation: moveDots 5s linear infinite;
}

@keyframes moveDots {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 20px 20px;
    }
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-section .footer-grid {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.footer-section .footer-logo-wrap {
    margin-bottom: 1.5rem;
}

.footer-section .footer-logo {
    font-size: 38px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
}

.footer-section .footer-logo span {
    opacity: 0.6;
}

.footer-section .footer-about p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-section .footer-about .navbar-brand img {
    height: 80px;
    margin-bottom: 1rem;
}

@media (max-width: 568px) {
    .footer-section .footer-about .navbar-brand img {
        height: 65px;
        margin-bottom: 1rem;
    }
}

.footer-section .footer-links-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-section .footer-links-wrapper ul {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
}

.footer-section .list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #f9bf29;
}

.footer-section .copyright-section {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 14px;
    text-align: center;
}

.footer-section .copyright-links ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

@media (max-width: 767px) {
    .footer-section .copyright-section {
        justify-content: center;
        flex-direction: column-reverse;
    }

    .footer-section .copyright-links {
        order: 1;
    }

    .footer-section .copyright-content {
        order: 2;
    }
}

.footer-wave svg {
    position: relative;
    bottom: -0.3rem;
    background-color: #eff2f1;
}


.footer-wave::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    animation: moveDots 5s linear infinite;
}

/* Home Page Hero Section */
.hero {
    background: #3b5d50 !important;
    background-size: 400% 400%;
    padding: 8rem 0 10rem 0;
    position: relative;
    animation: moveGradient 20s ease infinite;
}


@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .hero-content-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .intro-excerpt,
.hero .hero-img-wrap {
    flex: 1 1 50%;
}

.hero .intro-excerpt {
    position: relative;
    z-index: 4;
}

.hero .intro-excerpt h1 {
    font-weight: 800;
    color: transparent;
    background: linear-gradient(to right, #ffffff, #f9bf29);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 30px;
    font-size: 64px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.8s ease-out forwards;
}

.hero .intro-excerpt h1 .d-block {
    display: block;
    font-size: 0.8em;
}

.hero .intro-excerpt .intro-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 500px;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero .intro-excerpt p:last-of-type {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero .hero-img-wrap {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
}

.hero .hero-img-wrap:after {
    content: "";
    position: absolute;
    width: 255px;
    height: 217px;
    right: -20px;
    bottom: 20px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 3px, transparent 3px);
    background-size: 25px 25px;
    z-index: 1;
}

.hero .hero-img-wrap .hero-image {
    width: 600px;
    height: auto;
    position: absolute;
    bottom: -120px;
    right: 0%;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite;
}

.hero .btn-secondary {
    color: #2f2f2f;
    background: #f9bf29;
    border: 2px solid #f9bf29;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px 35px;
    font-weight: 700;
}

.hero .btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .hero {
        padding: 6rem 0 4rem 0;
    }

    .hero .hero-content-grid {
        flex-direction: column;
    }

    .hero .intro-excerpt,
    .hero .hero-img-wrap {
        flex-basis: 100%;
        position: relative;
        width: 100%;
        height: auto;
    }

    .hero .intro-excerpt {
        padding-bottom: 22rem;
    }

    .hero .intro-excerpt h1 {
        font-size: 42px;
    }

    .hero .intro-excerpt .intro-text {
        max-width: 100%;
    }

    .hero .hero-img-wrap .hero-image {
        width: initial;
        bottom: -12rem;
    }
}

@media (max-width: 480px) {
    .hero .intro-excerpt {
        padding-bottom: 0;
    }

    .hero .hero-img-wrap .hero-image {
        display: none;
    }

    .hero .hero-img-wrap:after {
        display: none;
    }

    .hero:after {
        content: "";
        position: absolute;
        width: 255px;
        height: 217px;
        right: -80px;
        bottom: -50px;
        background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 3px, transparent 3px);
        background-size: 25px 25px;
        z-index: 1;
    }
}

/* Other Pages Hero Section */
.page-hero {
    background: #3b5d50;
    padding: 7rem 0 5rem 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* --------------------------- All Sections Style --------------------------- */

/* ------ */
.product-section {
    padding: 10rem 0 5rem 0;
    background-color: #eff2f1;
}

@media (max-width: 480px) {
    .product-section {
        padding: 5rem 0;
        background-color: #eff2f1;
    }
}

.product-section.products-page {
    padding: 7.5rem 0 8rem 0;
    background-color: #eff2f1;
}

.product-section .product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

.product-section .product-item {
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    padding: 2rem;
    background: #ffffff;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #2f4a40;
}

.product-section .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-section .product-item::before {
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    content: "";
    background: #eff2f1;
    height: 65%;
    z-index: 0;
    border-radius: 0 0 20px 20px;
}

.product-section .product-item .product-thumbnail {
    margin-bottom: 2rem;
    position: relative;
    top: -0px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px dashed #2f4a40;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.product-section .product-item h3,
.product-section .product-item strong {
    position: relative;
    z-index: 1;
}

.product-section .product-item h3 {
    font-weight: 700;
    font-size: 1rem;
    color: #2f2f2f;
    margin-bottom: 0.5rem;
}

.product-section .product-item strong {
    font-weight: 800;
    font-size: 1.1rem;
    color: #3b5d50;
}

.product-section .product-item .icon-plus {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b5d50;
    color: #ffffff;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 2;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(59, 93, 80, 0.3);
}

.product-section .product-footer-button {
    text-align: center;
    margin-top: 4rem;
}

.product-section .product-footer-button .btn {
    background-color: #3b5d50;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-section .product-footer-button .btn:hover {
    background-color: #2f4a40;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .product-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .product-section .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ------ */
.why-choose-section {
    padding-top: 5rem;
    border-top: 1px solid #2f4a40;
}


@media (max-width: 991px) {
    .why-choose-section {
        padding-bottom: 5rem;
        border-top: 1px solid #2f4a40;
    }

}

.why-choose-section .choose-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.why-choose-section .choose-us-content {
    width: 100%;
}

.why-choose-section .choose-us-image {
    width: 100%;
}

.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 3rem 0;
}

.why-choose-section .feature {
    margin-bottom: 30px;
}

.why-choose-section .feature .icon {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.why-choose-section .feature .icon img {
    max-width: 100%;
    height: auto;
}

.why-choose-section .feature .icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-choose-section .feature .icon::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    background: rgba(59, 93, 80, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-choose-section .feature .icon i {
    font-size: 1.6rem;
    color: #3b5d50;
    position: relative;
    z-index: 1;
}

.why-choose-section .feature h3 {
    font-size: 16px;
    color: #2f2f2f;
}

.why-choose-section .feature p {
    font-size: 14px;
    line-height: 22px;
    color: #6a6a6a;
}

.why-choose-section .img-wrap {
    position: relative;
}

.why-choose-section .img-wrap:before {
    content: "";
    position: absolute;
    width: 255px;
    height: 217px;
    right: -40px;
    top: -120px;
    background-image: radial-gradient(circle, #f9bf29 3px, transparent 3px);
    background-size: 25px 25px;
    z-index: -1;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .why-choose-section .img-wrap:before {
        top: initial;
        right: -80px;
        bottom: -120px !important;
    }
}


.why-choose-section .img-wrap img {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
    border: 2px dashed #2f4a40;
}

@media (min-width: 992px) {
    .why-choose-section .choose-us-content {
        width: 48%;
    }

    .why-choose-section .choose-us-image {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .why-choose-section .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 0;
        margin-top: rem;
    }

}

/* ------ */
.popular-product {
    padding: 0 0 7rem 0;
}

.popular-product .popular-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.popular-product .product-item-sm {
    display: flex;
    align-items: center;
}

.popular-product .product-item-sm h3 {
    font-size: 14px;
    font-weight: 700;
    color: #2f2f2f;
}

.popular-product .product-item-sm a {
    text-decoration: none;
    color: #2f2f2f;
    transition: .3s all ease;
}

.popular-product .product-item-sm a:hover {
    color: rgba(47, 47, 47, 0.5);
}

.popular-product .product-item-sm p {
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: 14px;
}

.popular-product .product-item-sm .thumbnail {
    margin-right: 10px;
    flex: 0 0 120px;
    position: relative;
}

.popular-product .product-item-sm .thumbnail:before {
    content: "";
    position: absolute;
    border-radius: 20px;
    background: #dce5e4;
    width: 98px;
    height: 98px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.popular-product .product-item-sm .thumbnail img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .popular-product .popular-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .popular-product .popular-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ------ */
.testimonial-section {
    padding: 7rem 0;
    background-color: #3b5d50;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.testimonial-section .testimonial-title-wrapper {
    text-align: center;
    margin: 0 auto 4rem auto;
    max-width: 600px;
}

.testimonial-section .section-title {
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.testimonial-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #f9bf29;
    border-radius: 2px;
}

.testimonial-section .testimonial-slider-wrap {
    position: relative;
}

.testimonial-section .testimonial-block {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-section .testimonial-block::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.testimonial-section .testimonial-block blockquote {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto 2rem auto;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-section .author-info {
    position: relative;
    z-index: 1;
}

.testimonial-section .author-info .author-pic {
    width: 80px;
    height: 80px;
    background-color: #f9bf29;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #3b5d50;
    box-shadow: 0 0 0 4px #f9bf29;
}

.testimonial-section .author-info .author-pic span {
    color: #3b5d50;
    font-size: 2rem;
    font-weight: 700;
}

.testimonial-section .author-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.testimonial-section .author-info .author-position {
    display: block;
    margin-top: 4px;
    color: #f9bf29;
    font-size: 0.9rem;
}

.testimonial-section #testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    width: 100%;
    display: none;
}

.testimonial-section #testimonial-nav span {
    cursor: pointer;
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: .3s all ease;
    text-align: center;
}

.testimonial-section #testimonial-nav span:hover {
    background: #f9bf29;
    color: #3b5d50;
}

.testimonial-section #testimonial-nav .prev {
    left: -25px;
}

.testimonial-section #testimonial-nav .next {
    right: -25px;
}

.testimonial-section .tns-nav {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-section .tns-nav button {
    background: none;
    border: none;
    display: inline-block;
    position: relative;
    width: 10px !important;
    height: 10px !important;
    margin: 0 4px;
    padding: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: .3s all ease;
}

.testimonial-section .tns-nav button.tns-nav-active {
    background-color: #f9bf29;
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .testimonial-section #testimonial-nav {
        display: block;
    }
}

/* ------ */
.newsletter-section {
    padding: 5rem 0;
    background-color: #eff2f1;
}

.newsletter-section .newsletter-panel {
    position: relative;
    padding: 4rem;
    background: #3b5d50;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
}

.newsletter-section.section-glowing .newsletter-panel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f9bf29, transparent 70%);
    filter: blur(100px);
    opacity: 0.5;
    z-index: 1;
    animation: glowPulse 8s ease-in-out infinite alternate;
}

.newsletter-section .newsletter-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

@keyframes glowPulse {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.4;
    }

    to {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.newsletter-section .newsletter-text,
.newsletter-section .newsletter-form-wrapper {
    position: relative;
    z-index: 2;
}

.newsletter-section .newsletter-text i {
    font-size: 3rem;
    color: #f9bf29;
    margin-bottom: 1.5rem;
    display: block;
}

.newsletter-section .newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-section .newsletter-text .newsletter-subtitle {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.newsletter-section .newsletter-form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-section .newsletter-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease;
}

.newsletter-section .newsletter-form:focus-within {
    box-shadow: 0 0 0 3px rgba(249, 191, 41, 0.3);
    border-color: #f9bf29;
}

.newsletter-section .newsletter-form input {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    color: #ffffff;
}

.newsletter-section .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-section .newsletter-form .btn-primary {
    background-color: #f9bf29;
    color: #3b5d50;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter-section .newsletter-form .btn-primary:hover {
    background-color: #ffca43;
    transform: scale(1.05);
}

.newsletter-section .newsletter-notice {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 991px) {
    .newsletter-section .newsletter-panel {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .newsletter-section.section-glowing .newsletter-panel::before {
        left: 50%;
        top: 20%;
    }
}

@media (max-width: 576px) {
    .newsletter-section .newsletter-form {
        flex-direction: column;
        gap: 10px;
        background-color: transparent;
        border: none;
        padding: 0;
    }

    .newsletter-section .newsletter-form input {
        padding: 15px 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        background-color: rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .newsletter-section .newsletter-form input:focus {
        border-color: #f9bf29;
    }

    .newsletter-section .newsletter-form .btn-primary {
        padding: 15px 30px;
    }
}

/* ------ */
.blog-section {
    padding: 0 0 5rem 0;
}

.blog-section.blog-page {
    padding: 5rem 0;
}

.blog-section .blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-section .blog-header .section-title {
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    color: #2f2f2f;
}

.blog-section .blog-header .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #f9bf29;
    border-radius: 2px;
}

.blog-section .blog-header .more {
    display: inline-block;
    background-color: #3b5d50;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-section .blog-header .more:hover {
    background-color: #2f4a40;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.blog-section .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-section .post-entry {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #2f4a40;
}

.blog-section .post-entry:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-section .post-thumbnail {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-bottom: 3px solid #2f4a40;
}

.blog-section .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.blog-section .post-entry:hover .post-thumbnail img {
    transform: scale(1.05);
}

.blog-section .post-content-entry {
    padding: 1.5rem;
}

.blog-section .post-content-entry h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 0.5rem;
}

.blog-section .post-content-entry h3 {
    text-decoration: none;
    color: #2f2f2f;
    transition: color 0.3s ease;
}

.blog-section .post-entry:hover .post-content-entry h3 {
    color: #3b5d50;
}

.blog-section .post-content-entry .meta {
    font-size: 0.85rem;
    color: #6a6a6a;
}

.blog-section .post-content-entry .meta span {
    color: #3b5d50;
    text-decoration: none;
    font-weight: 600;
}

@media (min-width: 576px) {
    .blog-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .blog-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ------ */
.post-hero {
    background: #3b5d50;
    padding: 7rem 0 5rem 0;
    color: #ffffff;
}

.post-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    max-width: 800px;
    line-height: 1.4;
}

.post-hero .meta {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.post-hero .meta a {
    color: #f9bf29;
    text-decoration: none;
    font-weight: 600;
}

.post-content-section {
    padding: 7rem 0;
}

.post-body {
    max-width: 800px;
    margin: 0 auto;
}

.post-body .featured-image {
    border-radius: 20px;
    margin-bottom: 3rem;
    max-width: 100%;
    height: auto;
    border: 2px solid #2f4a40;
}

.post-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6a6a6a;
    margin-bottom: 1.5rem;
}

.post-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2f2f2f;
    margin: 2.5rem 0 1rem 0;
}

.post-body blockquote {
    border-left: 4px solid #f9bf29;
    padding-left: 1.5rem;
    font-style: italic;
    font-size: 1.2rem;
    margin: 2rem 0;
}

@media (max-width: 576px) {
    .post-hero h1 {
        font-size: 1.8rem;
    }

    .post-content-section {
        padding: 3.5rem 0;
    }

}

/* ------ */
.cta-banner {
    padding: 5rem 0;
}

.home.cta-banner {
    padding: 0 0 5rem 0;
}

.cta-banner .cta-content {
    position: relative;
    padding: 3rem 4rem;
    background: #3b5d50;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
}

.cta-banner.section-decorated .cta-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f9bf29, transparent 60%);
    filter: blur(80px);
    opacity: 0.5;
}

.cta-banner .cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cta-banner .cta-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 500px;
}

.cta-banner .cta-action .btn-primary {
    background-color: #f9bf29;
    color: #3b5d50;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-banner .cta-action .btn-primary:hover {
    background-color: #ffca43;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .cta-banner .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .cta-banner .cta-text p {
        margin-bottom: 2rem;
    }
}

/* ------ */
@keyframes animateBackground {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    padding: 10rem 20px 3rem 20px;
    /* background-image: linear-gradient(45deg, #eff2f1, #e6e9e8); */
    position: relative;
    overflow: hidden;
    font-family: "Inter", sans-serif;
    color: #6a6a6a;
}

/* .auth-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b5d50, transparent 70%);
    top: -50px;
    left: -50px;
    opacity: 0.2;
    filter: blur(80px);
    animation: animateBackground 20s ease-in-out infinite alternate;
} */

/* .auth-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #f9bf29, transparent 70%);
    bottom: -50px;
    right: -50px;
    opacity: 0.2;
    filter: blur(80px);
    animation: animateBackground 20s ease-in-out infinite alternate-reverse;
} */

.auth-section .auth-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border: 2px solid #2f4a40;
    border-radius: 20px;
    /* box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1); */
    padding: 2.5rem;
    overflow: hidden;
    display: grid;
    grid-template-areas:
        "logo"
        "form";
    grid-template-rows: auto 1fr;
}

@media (max-width: 991px) {

    .auth-section .auth-container {
        padding: 2.5rem 1.5rem;
    }

}

.auth-section .auth-logo {
    grid-area: logo;
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-section .auth-logo a {
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    color: #3b5d50;
}

.auth-section .auth-logo a span {
    opacity: 0.6;
}

.auth-section .form-container {
    grid-area: form;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    width: 100%;
    height: 100%;
    padding: 0;
}

.auth-section .form-container form {
    width: 100%;
    text-align: center;
}

.auth-section .form-container h2 {
    font-weight: 800;
    color: #2f2f2f;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.auth-section .form-container .form-intro {
    color: #6a6a6a;
    margin-bottom: 2rem;
}

.auth-section .form-group {
    position: relative;
    margin-bottom: 2rem;
}

.auth-section .form-group .icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #ccc;
    transition: color 0.3s ease;
    display: none;
}

.auth-section .form-group input {
    width: 100%;
    padding: 12px 0 12px 0;
    border: none;
    border-bottom: 2px solid #818181;
    background-color: transparent;
    font-size: 1rem;
    color: #2f2f2f;
    transition: border-color 0.3s ease;
}

.auth-section .form-group input:focus {
    outline: none;
    border-bottom-color: #3b5d50;
}

.auth-section .form-group input:focus~.icon {
    color: #3b5d50;
}

.auth-section .form-group input::placeholder {
    color: #aaa;
}

.auth-section .btn-primary {
    background: linear-gradient(45deg, #2f4a40, #3b5d50);
    background-size: 200% 100%;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    margin-top: 1rem;
}

.auth-section .btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 93, 80, 0.3);
}

.auth-section .form-switcher {
    margin-top: 1.5rem;
    text-align: center;
    color: #6a6a6a;
}

.auth-section .form-switcher a {
    color: #3b5d50;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.auth-section .login-container {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    grid-column: 1 / -1;
    grid-row: form;
}

.auth-section .register-container {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    z-index: 1;
    grid-column: 1 / -1;
    grid-row: form;
}

.auth-section .auth-container.right-panel-active .login-container {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.auth-section .auth-container.right-panel-active .register-container {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

/* ------- */
.cart-section {
    padding: 8rem 0 5rem 0;
    background-color: #eff2f1;
}

.cart-section .container {
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-section .cart-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-section .cart-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.cart-section .cart-table th {
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #2f2f2f;
    border-bottom: 2px solid #2f4a40;
}

.cart-section .cart-table td {
    padding: 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #b3b3b3;
}

.cart-section .cart-table tbody tr:last-child td {
    border-bottom: 0;
}

.cart-section .cart-table .product-thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px dashed #2c4a3f;
}

.cart-section .cart-table .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2f2f2f;
}

.cart-section .cart-table .quantity-container {
    display: flex;
    align-items: center;
    border: 1px solid #2f4a40;
    border-radius: 50px;
    max-width: 130px;
    margin: 0 auto;
}

.cart-section .cart-table .btn-quantity {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    color: #6a6a6a;
}

.cart-section .cart-table .quantity-amount {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    color: #2f2f2f;
    -moz-appearance: textfield;
}

.cart-section .cart-table .quantity-amount::-webkit-outer-spin-button,
.cart-section .cart-table .quantity-amount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-section .cart-table .btn-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eff2f1;
    color: #6a6a6a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-section .cart-table .btn-remove:hover {
    background: #dc3545;
    color: #ffffff;
}

.cart-section .cart-summary-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.cart-section .cart-actions {
    display: flex;
    flex-direction: column;
}

.cart-section .cart-actions .cart-buttons-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cart-section .cart-actions .btn {
    border-radius: 50px;
    padding: 12px 25px;
}

.cart-section .cart-actions .btn-primary {
    background: #3b5d50;
    color: #ffffff;
    border: none;
}

.cart-section .cart-actions .btn-secondary {
    background: transparent;
    border: 2px solid #3b5d50;
    color: #3b5d50;
}

.cart-section .cart-actions .btn-secondary:hover {
    background: #3b5d50;
    color: #ffffff;
}

.cart-section .cart-actions .coupon-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f2f2f;
    text-align: center;
}

.cart-section .cart-actions .coupon-form p {
    margin: 0.5rem 0 1rem 0;
    text-align: center;
}

.cart-section .cart-actions .coupon-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.cart-section .cart-actions .form-control {
    flex-grow: 1;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
}

.cart-section .cart-actions .btn-apply-coupon {
    background: #2f4a40;
    color: #ffffff;
    border-radius: 10px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.cart-section .cart-actions .btn-apply-coupon:hover {
    background: #3b5d50;
}


.cart-section .cart-totals {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #2f4a40;
}

.cart-section .cart-totals .totals-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2f2f2f;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2f4a40;
    margin-bottom: 1.5rem;
}

.cart-section .cart-totals .totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cart-section .cart-totals .totals-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eff2f1;
}

.cart-section .cart-totals .price {
    color: #2f2f2f;
}

.cart-section .checkout-button-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-decoration: none;
}

.cart-section .cart-totals .btn-checkout {
    width: fit-content;
    padding: 15px 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    display: flex;
    background: #3b5d50;
    color: #ffffff;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-section .cart-totals .btn-checkout:hover {
    background: #2f4a40;
}

@media (max-width: 991px) {
    .cart-section .cart-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .cart-section .cart-table thead {
        display: none;
    }

    .cart-section .cart-table,
    .cart-section .cart-table tbody,
    .cart-section .cart-table tr,
    .cart-section .cart-table td {
        display: block;
    }

    .cart-section .cart-table tr {
        margin-bottom: 1.5rem;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        background-color: #ffffff;
        position: relative;
        border: 1px solid #2f2f2f;
    }

    .cart-section .cart-table td {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid #f0f0f0;
        flex-wrap: wrap;
        text-align: center;
    }

    .cart-section .cart-table td:last-child {
        border-bottom: none;
        position: absolute;
        top: -0.5rem;
        right: -0.5rem;
    }

    .cart-section .cart-table td:nth-child(4){
        padding-bottom: 1.5rem;
    }
    .cart-section .cart-table td:nth-child(5){
        display: none;
    }

    .cart-section .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #2f2f2f;
        margin-right: 1rem;
        margin-bottom: 0.5rem;
        flex-shrink: 0;
        text-align: left;
        flex-basis: auto;
        text-align: center;
    }

    .cart-section .cart-table td>*:not(img):not(.btn-remove) {
        flex-grow: unset;
        text-align: center;
        margin: 0;
    }

    .cart-section .cart-table .product-thumbnail {
        justify-content: center;
        flex-direction: column;
        padding-bottom: 1rem;
        align-items: center;
    }

    .cart-section .cart-table .product-thumbnail::before {
        display: none;
    }

    .cart-section .cart-table .product-thumbnail img {
        margin-top: 0.5rem;
        width: 80px;
        height: 80px;
    }

    .cart-section .cart-table .product-name {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cart-section .cart-table .product-name::before {
        margin-bottom: 0.5rem;
    }

    .cart-section .cart-table .product-title {
        font-size: 1rem;
    }

    .cart-section .cart-table .quantity-container {
        max-width: 100%;
        margin: 0 auto;
        justify-content: center;
    }

    .cart-section .cart-table .product-price,
    .cart-section .cart-table .product-total {
        font-weight: 700;
        width: 100%;
        text-align: center;
    }

    .cart-section .cart-table .product-remove {
        justify-content: center;
        padding-top: 0.5rem;
        align-items: flex-end;
    }

    .cart-section .cart-table .product-remove::before {
        display: none;
    }

    .cart-section .cart-actions .cart-buttons-group,
    .cart-section .cart-actions .coupon-input-group {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cart-section .cart-actions .btn,
    .cart-section .cart-actions .form-control,
    .cart-section .cart-actions .btn-apply-coupon {
        width: 100%;
        max-width: 300px;
    }

    .cart-section .cart-actions .coupon-input-group .form-control {
        margin-bottom: 10px;
    }

    .cart-section .checkout-button-row {
        justify-content: center;
    }

    .cart-section .cart-totals .btn-checkout {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}

.cart-section .empty-cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 3rem auto 0 auto;
    min-height: 300px;
    border: 2px solid #2c4a3f;
}

.cart-section .empty-cart-container .empty-cart-icon {
    font-size: 5rem;
    color: #aebfd1;
    margin-bottom: 1.5rem;
}

.cart-section .empty-cart-container h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a3b4c;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cart-section .empty-cart-container p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #6c7a89;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 400px;
    margin: auto;
}

.cart-section .empty-cart-container .btn-continue-shopping {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3b5d50;
    margin-top: 1.5rem;
    color: #ffffff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cart-section .empty-cart-container .btn-continue-shopping:hover {
    background: #2f4a40;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .cart-section .empty-cart-container {
        padding: 3rem 1.5rem;
    }

    .cart-section .empty-cart-container h2 {
        font-size: 2rem;
    }

    .cart-section .empty-cart-container p {
        font-size: 1rem;
    }

    .cart-section .empty-cart-container .empty-cart-icon {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .cart-section .empty-cart-container {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto;
    }

    .cart-section .empty-cart-container h2 {
        font-size: 1.8rem;
    }

    .cart-section .empty-cart-container p {
        font-size: 0.95rem;
    }

    .cart-section .empty-cart-container .empty-cart-icon {
        font-size: 3.5rem;
    }

    .cart-section .empty-cart-container .btn-continue-shopping {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ------ */
.checkout-section {
    padding: 10rem 0 5rem 0;
}

.checkout-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.checkout-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f2f2f;
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-section .checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.checkout-section .checkout-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #2f4a40;
}

.checkout-section .checkout-form .form-section {
    margin-bottom: 2rem;
}

.checkout-section .checkout-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3b5d50;
    margin: 0;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #2f4a40;
}

.checkout-section .checkout-form .form-group {
    margin-bottom: 1.2rem;
}

.checkout-section .checkout-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
}

.checkout-section .checkout-form input[type="email"],
.checkout-section .checkout-form input[type="text"] {
    width: 100%;
    padding: 1rem 0;
    border: 1px solid #9c9c9c;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.checkout-section .checkout-form input[type="email"]:focus,
.checkout-section .checkout-form input[type="text"]:focus {
    border-color: #3b5d50;
    outline: none;
}

.checkout-section .order-summary {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #2f4a40;
}

.checkout-section .order-summary h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3b5d50;
    margin: 0;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #2f4a40;
}

.checkout-section .order-summary #summary-items-container {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #868686;
}

.checkout-section .order-summary .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
}

.checkout-section .order-summary .summary-item .item-name {
    font-weight: 500;
    color: #2f2f2f;
}

.checkout-section .order-summary .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.checkout-section .order-summary .summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2f2f2f;
    padding-top: 1.5rem;
    border-top: 1px solid #868686;
    margin-bottom: 2rem;
}

.checkout-section .order-summary .btn-place-order {
    display: block;
    width: 100%;
    padding: 1rem 0;
    background: #3b5d50;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease;
    cursor: pointer;
}

.checkout-section .order-summary .btn-place-order:hover {
    background: #2f4a40;
}

@media (max-width: 991px) {
    .checkout-section .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .checkout-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .checkout-section .checkout-form,
    .checkout-section .order-summary {
        padding: 2rem 1.5rem;
    }

    .checkout-section .checkout-form h3,
    .checkout-section .order-summary h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .checkout-section .checkout-form input[type="email"],
    .checkout-section .checkout-form input[type="text"] {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }

    .checkout-section .order-summary .summary-total {
        font-size: 1.1rem;
    }

    .checkout-section .order-summary .btn-place-order {
        font-size: 1rem;
        padding: 0.9rem 0;
    }
}

/* ------ */
.cookie-policy-section,
.policy-section,
.terms-section {
    padding: 8rem 0 5rem 0;
    background-color: #f0f4f7;
}

.cookie-policy-section .container,
.policy-section .container,
.terms-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cookie-policy-section h2,
.policy-section h2,
.terms-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;
    margin: 0;
    font-weight: 800;
    color: #2a3b4c;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.cookie-policy-section .cookie-policy-content,
.policy-section .policy-content,
.terms-section .terms-content {
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    color: #4a5a6b;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    border: 1px solid #2c4a3f;
}

.cookie-policy-section h3,
.policy-section h3,
.terms-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #3b5d50;
    margin-top: 3.5rem;
    margin-bottom: 1.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #e0e6eb;
    letter-spacing: -0.015em;
}

.cookie-policy-section p,
.policy-section p,
.terms-section p {
    margin-bottom: 1.4rem;
}

.cookie-policy-section strong,
.policy-section strong,
.terms-section strong {
    font-weight: 700;
    color: #2f2f2f;
}

.cookie-policy-section ul,
.policy-section ul,
.terms-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.8rem;
    padding-left: 0;
}

.cookie-policy-section ul li,
.policy-section ul li,
.terms-section ul li {
    margin-bottom: 0.8rem;
}

.cookie-policy-section a,
.policy-section a,
.terms-section a {
    color: #3b5d50;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.cookie-policy-section a::after,
.policy-section a::after,
.terms-section a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #3b5d50;
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.cookie-policy-section a:hover,
.policy-section a:hover,
.terms-section a:hover {
    color: #2f4a40;
}

.cookie-policy-section a:hover::after,
.policy-section a:hover::after,
.terms-section a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


@media (max-width: 991px) {

    .cookie-policy-section .container,
    .policy-section .container,
    .terms-section .container {
        padding: 0 1rem;
    }

    .cookie-policy-section h2,
    .policy-section h2,
    .terms-section h2 {
        font-size: 2.8rem;
        margin-bottom: 3rem;
    }

    .cookie-policy-section .cookie-policy-content,
    .policy-section .policy-content,
    .terms-section .terms-content {
        padding: 3rem;
    }

    .cookie-policy-section h3,
    .policy-section h3,
    .terms-section h3 {
        font-size: 2rem;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
    }

    .cookie-policy-section p,
    .policy-section p,
    .terms-section p,
    .cookie-policy-section ul li,
    .policy-section ul li,
    .terms-section ul li {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {

    .cookie-policy-section h2,
    .policy-section h2,
    .terms-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
        letter-spacing: -0.02em;
    }

    .cookie-policy-section .cookie-policy-content,
    .policy-section .policy-content,
    .terms-section .terms-content {
        padding: 2.5rem;
        border-radius: 18px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

    .cookie-policy-section h3,
    .policy-section h3,
    .terms-section h3 {
        font-size: 1.6rem;
        margin-top: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .cookie-policy-section ul,
    .policy-section ul,
    .terms-section ul {
        margin-left: 1.5rem;
    }

    .cookie-policy-section p,
    .policy-section p,
    .terms-section p,
    .cookie-policy-section ul li,
    .policy-section ul li,
    .terms-section ul li {
        font-size: 1.2rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {

    .cookie-policy-section h2,
    .policy-section h2,
    .terms-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        letter-spacing: -0.01em;
    }

    .cookie-policy-section .cookie-policy-content,
    .policy-section .policy-content,
    .terms-section .terms-content {
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    }

    .cookie-policy-section h3,
    .policy-section h3,
    .terms-section h3 {
        font-size: 1.25rem;
        margin-top: 1.8rem;
        margin-bottom: 1rem;
    }

    .cookie-policy-section ul,
    .policy-section ul,
    .terms-section ul {
        margin-left: 1rem;
    }

    .cookie-policy-section p,
    .policy-section p,
    .terms-section p,
    .cookie-policy-section ul li,
    .policy-section ul li,
    .terms-section ul li {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* ------ */
.notification-overlay {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3000;
    width: 100%;
    max-width: 350px;
    pointer-events: none;
}


@media (max-width: 400px) {
    .notification-overlay {
        max-width: 92%;
    }
}

.notification-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid;
    border-left: 5px solid;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: all;
}

.notification-box.show {
    transform: translateX(0);
}

.notification-icon-container {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.notification-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2f2f2f;
    margin: 0 0 0.25rem 0;
}

.notification-text p {
    font-size: 0.9rem;
    color: #6a6a6a;
    margin: 0;
}

.notification-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #727272;
    cursor: pointer;
    margin-left: auto;
    padding: 0 0 0 0.5rem;
}

.notification-box.success {
    border-color: #28a745;
    border-left-color: #28a745;
}

.notification-box.success .notification-icon-container {
    color: #28a745;
}

.notification-box.error {
    border-left-color: #dc3545;
}

.notification-box.error .notification-icon-container {
    color: #dc3545;
}

/* ------ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2f4a40; 
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-top: 2px solid #f9bf29;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner .cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-banner .cookie-message {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-banner .cookie-link {
    color: #f9bf29;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner .cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0; 
}

.cookie-banner .btn-primary {
    background-color: #f9bf29;
    color: #2f4a40;
    border: none;
}

.cookie-banner .btn-tertiary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-banner .btn-tertiary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .cookie-banner .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
}