@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --text-white: #ffffff;
    --accent-teal: #5ca89e;
    --primary-bg: #051610;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    overflow-x: hidden;
}

main {
    position: relative;
    width: 100%;
}

/* Fixed Background Styling */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}

span.gradient-text.display-2 {
    font-size: 100px;
}

p.shop-payment-info.mb-4 {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 20.09px;
    line-height: 87.35px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}

.contact-subtitle {
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    line-height: 1.6;
}

a.btn-select-options {
    text-decoration: none;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 10px 35px;
}

p.product-section-info {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 25px;
    text-align: center;
    vertical-align: middle;
    line-height: 1.3;
    padding: 0 90px;
    margin-top: 80px;
}

.category-long-content {
    margin-top: 80px;
    padding: 0 15px;
}

.category-long-content img {
    max-width: 100%;
    height: auto;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.bg-overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(5, 22, 16, 0.7), rgba(5, 22, 16, 0.7));
}

/* Header & Navbar */
.navbar-header {
    position: fixed;
    /* Sticky/Fixed as requested */
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.navbar-header.scrolled {
    background: rgba(5, 22, 16, 0.9);
    padding: 10px;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-img {
    height: 60px;
    transition: height 0.3s ease;
}

.navbar-header.scrolled .logo-img {
    height: 45px;
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    min-width: 48px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 12px;
    transition: all 0.2s ease;
}

.language-toggle:hover,
.language-toggle:focus {
    border-color: var(--accent-teal);
    background: rgba(92, 168, 158, 0.16);
    color: #ffffff;
    box-shadow: none;
}

.language-toggle::after {
    margin-left: 0;
    border-top-color: currentColor;
}

.language-menu {
    min-width: 140px;
    padding: 8px;
    border: 1px solid rgba(92, 168, 158, 0.25);
    border-radius: 12px;
    background: rgba(5, 22, 16, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.language-menu .dropdown-item {
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    padding: 8px 10px;
}

.language-menu .dropdown-item:hover,
.language-menu .dropdown-item:focus,
.language-menu .dropdown-item.active {
    background: rgba(92, 168, 158, 0.18);
    color: #ffffff;
}

.nav-link {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white) !important;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--accent-teal) !important;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #5ca89e;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #051610;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
    line-height: 1;
    text-decoration: none !important;
    font-family: "Inter", sans-serif;
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.cart-bounce {
    animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Navbar Toggler Customization */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.testimonial-swiper {
    width: 100%;
    max-width: 1200px;
    /* Centering with a limit */
    margin: 0 auto;
    padding: 20px 20px 60px 20px !important;
    overflow: hidden !important;
    /* Keep it contained */
}

.testimonial-swiper .swiper-slide {
    height: auto;
    transition: transform 0.3s ease;
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: var(--accent-teal);
    opacity: 0.3;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .navbar-header {
        padding: 15px;
    }

    .navbar-collapse {
        background: rgba(5, 22, 16, 0.98);
        backdrop-filter: blur(15px);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 40px 20px;
        border-bottom: 1px solid rgba(92, 168, 158, 0.2);
        z-index: 1000;
    }

    .navbar-nav {
        text-align: left;
    }

    .nav-link {
        margin: 15px 0;
        font-size: 24px;
        font-weight: 500;
    }

    .mobile-lang-nav {
        margin-bottom: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(92, 168, 158, 0.2);
    }

    .mobile-lang-label {
        margin: 0 0 12px 0 !important;
        font-size: 18px !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.7) !important;
        pointer-events: none;
    }

    .mobile-lang-options {
        display: flex;
        gap: 12px;
    }

    .mobile-lang-btn {
        flex: 1;
        padding: 12px 16px;
        border: 1px solid rgba(92, 168, 158, 0.4);
        border-radius: 8px;
        background: transparent;
        color: #ffffff;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .mobile-lang-btn:hover,
    .mobile-lang-btn.active {
        background-color: #5ca89e;
        border-color: #5ca89e;
        color: #ffffff;
    }
}

/* Common Section Styling */
.gs-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    visibility: visible;
    overflow: hidden;
}

.main-content-section {
    display: block !important;
}

.main-content-section .scroll-container {
    position: relative;
    width: 100%;
}

.slider-section-inner,
.why-section-inner,
.impression-section-inner,
.testimonial-section-inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hero Section Specifics */
.main-title {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 94px;
    line-height: 1 !important;
}

button.btn.btn-link.text-white.p-0 {
    text-decoration: none;
}

.gradient-text {
    font-family: "Playfair", serif;
    font-weight: 900;
    font-style: italic;
    font-size: 120px;
    line-height: 1;
    letter-spacing: -0.06em;
    display: inline-block;
    background: linear-gradient(90deg, #5ca89e 0%, #eefffe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: -webkit-fill-available;
}

.hero-image-wrapper img {
    left: -200px;
    position: relative;
    width: 926px;
    bottom: -131px;
}

.home-content {
    padding-top: 250px;
}

.tooth-gif {
    overflow: visible;
    position: relative;
    mix-blend-mode: lighten;
}

.tooth-gif video {
    mix-blend-mode: screen;
}

.hero-tooth-video {
    width: 240%;
    max-width: none;
    margin-left: -70%;
    margin-top: 45px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.hero-tooth-video-centered {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Lab Video Cards */
.video-card {
    position: relative;
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: #000;
}

.video-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 9/16;
}

.how-it-works-hero-v2 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

@media (max-width: 991px) {
    .how-it-works-hero-v2 {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 50px;
    }
}

@media (max-width: 1400px) {
    .hero-tooth-video {
        width: 200%;
        margin-left: -50%;
    }
}

@media (max-width: 1200px) {
    .hero-tooth-video {
        width: 180%;
        margin-left: -40%;
    }
}

@media (max-width: 991px) {
    .hero-tooth-video {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
}

.btn-view-products {
    display: inline-block;
    padding: 16px 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-view-products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0%;
    background: var(--accent-teal);
    transition: all 4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
    border-radius: 0 0 100% 0;
    transform-origin: top left;
}

.btn-view-products:hover {
    color: #fff;
    border-color: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(92, 168, 158, 0.4);
}

.btn-view-products:hover::before {
    width: 250%;
    height: 500%;
}

.btn-view-products:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(92, 168, 158, 0.4);
}

/* Slider Section */
.slider-section {
    background-color: transparent;
    /* Allows parallax bg to show */
}

.section-heading {
    font-family: "Poppins", sans-serif;
    font-size: 100px;
    font-weight: 400;
    line-height: 0.8;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
}

.product-img-box {
    flex: 0 0 230px;
}

.product-img-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease-in-out;
}

.product-card:hover .product-img-box img {
    transform: scale(1.08) rotate(5deg);
}

.product-info {
    min-width: 0;
    flex: 1;
}

.product-info h3 {
    font-family: "Poppins", sans-serif;
    font-size: 33px;
    font-weight: 400;
    margin-bottom: 10px;
    max-width: 320px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-info p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 54px;
    /* Force 2 lines height for perfect vertical alignment */
}

.btn-sm-products {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--accent-teal);
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-sm-products:hover {
    background: var(--accent-teal);
}

/* Swiper Controls */
.swiper-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding-left: 20px;
}

.swiper-prev,
.swiper-next {
    cursor: pointer;
    transition: 0.3s;
}

.swiper-prev:hover,
.swiper-next:hover {
    opacity: 0.7;
}

.slide-label {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: var(--accent-teal);
    margin-left: auto;
}

/* Why Choose Section */
.why-section {
    flex-direction: column;
    justify-content: center;
}

.why-box {
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 25px 15px;
    height: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.why-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-teal);
}

.why-box img {
    width: 133px;
    height: 133px;
    object-fit: contain;
    margin-bottom: 20px;
}

.why-box p {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    line-height: 1.4;
    margin: 0;
}

/* Impression Section */
.impression-text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.impression-subtext {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: var(--accent-teal);
    font-weight: 600;
}

.mt-6 {
    margin-top: 3.5rem !important;
}

/* Testimonial Section */
.testimonial-card {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border-bottom-right-radius: 90px;
    padding: 40px 30px;
    padding-bottom: 60px;
    position: relative;
    background: transparent;
    height: 100%;
}

.testimonial-name {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.testimonial-stars {
    height: 20px;
    object-fit: contain;
}

.testimonial-text {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-quote {
    position: absolute;
    right: 40px;
    height: 50px;
}

.testimonial-avatar {
    position: absolute;
    bottom: -40px;
    left: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 10;
    padding-top: 50px;
}

.footer-heading {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #fff;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-info-item p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--accent-teal);
}

@media (max-width: 991.98px) {
    .footer-links {
        padding-left: 43px;
    }
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials img {
    width: 32px;
    height: 32px;
    transition: 0.3s;
}

.footer-socials a:hover img {
    opacity: 0.7;
}

.back-to-top {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.back-to-top:hover {
    background: #fff;
    color: var(--primary-bg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Scaling */
@media (max-width: 1400px) {
    .main-title,
    .section-heading {
        font-size: 80px;
    }

    .gradient-text {
        font-size: 120px;
    }

    .product-info h3 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .main-title,
    .section-heading {
        font-size: 60px;
        text-align: center;
    }

    .gradient-text {
        font-size: 90px;
    }

    .hero-image-wrapper img {
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .product-card {
        flex-direction: column;
        text-align: center;
    }

    .product-info h3 {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .product-img-box {
        flex: 0 0 auto;
        width: 200px;
    }
}

@media (max-width: 575px) {
    .main-title,
    .section-heading {
        font-size: 40px;
    }

    .product-main-slider {
        height: -webkit-fill-available;
    }

    .gradient-text {
        font-size: 60px;
        padding: 0 15px;
    }

    span.gradient-text.display-2 {
        font-size: 60px;
        padding: 10px;
    }

    .product-info h3 {
        font-size: 24px;
    }

    .home-content {
        padding-top: 39.5%;
        text-align: center;
    }

    p.product-section-info {
        font-size: 18px;
        line-height: 1.6;
        padding: 0;
    }
}

/* Premium Pricing & Nancy Card Styles */
.feature-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(92, 168, 158, 0.2);
    border: 2px solid var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
}

.nancy-card-premium {
    max-width: 500px;
    margin-left: auto;
}

.nancy-card-inner {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.nancy-img {
    width: 100%;
    display: block;
}

.nancy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(
        to top,
        rgba(92, 168, 158, 0.7) 0%,
        transparent 50%
    );
}

.quote-icon-top {
    align-self: flex-end;
}

.nancy-info {
    text-align: left;
}

.star {
    color: #f8b84e;
    font-size: 20px;
    margin-right: 2px;
}

.nancy-quote {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 300;
}

.nancy-name {
    font-family: "Playfair", serif;
    font-style: italic;
    font-weight: 900;
    font-size: 32px;
    color: #fff;
    margin: 0;
}

/* Technology Section Styles */
.tech-item {
    padding: 30px;
    border-right: 1px solid rgba(92, 168, 158, 0.3);
    height: 100%;
}

.tech-item.no-border {
    border-right: none;
}

.tech-item-title {
    font-family: "Playfair", serif;
    font-style: italic;
    font-weight: 900;
    font-size: 43px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #5ca89e 0%, #eefffe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.tech-divider {
    height: 2px;
    background: #5ca89e;
    margin: 0 auto 25px auto;
}

.tech-item-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 991px) {
    .tech-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(92, 168, 158, 0.3);
        padding: 40px 10px;
    }

    .tech-grid .row:last-child .tech-item:last-child {
        border-bottom: none;
    }

    .tech-section h3.gradient-text {
        font-size: 50px !important;
    }
}

@media (max-width: 575px) {
    .tech-item-title {
        font-size: 24px;
    }
}

/* Order Now CTA Section */
.cta-banner {
    position: relative;
    border-radius: 60px;
    background-size: cover;
    background-position: center;
    padding: 100px 40px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.cta-title {
    font-family: "Playfair", serif;
    font-style: italic;
    font-weight: 900;
    font-size: 85px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.4;
}

.coupon-badge {
    display: inline-block;
    padding: 15px 45px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 100px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.coupon-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .cta-title {
        font-size: 65px;
    }
}

@media (max-width: 991px) {
    .cta-banner {
        border-radius: 40px;
        padding: 70px 30px;
    }

    .cta-title {
        font-size: 50px;
    }

    .cta-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle br {
        display: none;
    }

    .coupon-badge {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* FAQ Accordion Styles */
.custom-faq .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(92, 168, 158, 0.4);
    margin-bottom: 0;
}

.custom-faq .accordion-button {
    background-color: transparent;
    color: #fff;
    font-family: "Playfair", serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 500;
    padding: 30px 0;
    box-shadow: none !important;
    text-align: left;
}

.custom-faq .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--accent-teal);
}

.custom-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235CA89E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-size: 2rem;
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.custom-faq .accordion-body {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    padding: 0 0 30px 0;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 991px) {
    .faq-section h3.gradient-text {
        font-size: 60px !important;
    }

    .custom-faq .accordion-button {
        font-size: 20px;
    }
}

/* Contact Form Styles */
.form-control-custom {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1.5px solid rgba(92, 168, 158, 0.5) !important;
    color: #fff !important;
    padding: 12px 0 !important;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 0 !important;
    outline: none !important;
}

.form-control-custom:focus {
    border-bottom-color: var(--accent-teal) !important;
    box-shadow: none !important;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.form-label {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.btn-submit {
    display: inline-block;
    padding: 12px 60px;
    border: 1.5px solid var(--accent-teal);
    border-radius: 100px;
    color: #fff;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--accent-teal);
    color: #fff;
    transform: translateY(-2px);
}

.btn-add-to-cart {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 34px !important;
    width: auto !important;
    min-width: 170px;
    padding: 10px 37px !important;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: 0.3s;
}

.btn-add-to-cart:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: scale(1.02);
}

.quantity-selector {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
}

.qty-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 0 10px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    color: var(--accent-teal);
}

.qty-input {
    width: 45px;
    background: transparent;
    border: none !important;
    color: #fff !important;
    text-align: center;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    outline: none !important;
    box-shadow: none !important;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shop-product-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.shop-product-link:hover {
    color: inherit;
    text-decoration: none;
}

.shop-product-title-link:hover .shop-product-title {
    opacity: 0.85;
}

.shop-product-img-link img {
    transition: transform 0.3s ease;
}

.shop-product-img-link:hover img {
    transform: translateY(-10px);
}

@media (max-width: 575px) {
    /* Shop Product Grid Styles */
    .partial-dentures-section {
        background: rgba(0, 0, 0, 0.2);
    }

    .shop-product-title {
        font-family: "Playfair Display", serif;
        font-style: italic;
        font-weight: 700;
        font-size: 24px;
        color: var(--accent-teal);
        line-height: 1.2;
    }

    .rating-stars {
        color: #ffb800;
        font-size: 16px;
    }

    .shop-product-price {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 22px;
        color: #fff;
    }

    .shop-payment-info {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    .btn-select-options {
        display: inline-block;
        padding: 10px 40px;
        border: 1px solid rgba(92, 168, 158, 0.5);
        border-radius: 50px;
        color: #fff;
        text-decoration: none;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        transition: 0.3s;
        background: transparent;
    }

    .btn-select-options:hover {
        background: var(--accent-teal);
        border-color: var(--accent-teal);
        color: #fff;
    }

    .vertical-divider {
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: rgba(92, 168, 158, 0.3);
    }

    .shop-product-img img {
        max-height: 200px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .shop-product-card:hover .shop-product-img img {
        transform: translateY(-10px);
    }
}

/* Product Detail Page Styles */
.product-main-slider {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.main-img-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.main-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.product-main-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.product-thumb-slider {
    padding-top: 15px;
}

.product-thumb-slider .swiper-slide {
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
    height: 100px;
}

.product-thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
}

.product-thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-teal {
    border: 1.5px solid rgba(92, 168, 158, 0.5);
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    transition: 0.3s;
}

.btn-outline-teal:hover,
.btn-check:checked + .btn-outline-teal {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
    color: #fff;
}

.quantity-input input::-webkit-outer-spin-button,
.quantity-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input input {
    -moz-appearance: textfield;
}

@media (max-width: 991px) {
    .product-detail-section {
        padding-top: 150px;
    }

    .product-main-slider {
        padding: 20px;
    }
}

/* Reviews Collapse Styles */
.show-reviews-btn {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 32px;
    background: linear-gradient(90deg, #5ca89e 0%, #eefffe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
}

.show-reviews-btn:hover {
    opacity: 0.8;
}

.reviews-summary-card {
    backdrop-filter: blur(10px);
}

.bg-teal {
    background-color: #5ca89e !important;
}

.text-teal {
    color: #5ca89e !important;
}

.border-teal {
    border-color: rgba(92, 168, 158, 0.4) !important;
}

.progress {
    background-color: transparent !important;
}

/* Custom Product Options & Booking Styles */
/* Custom Product Options & Booking Styles */
.custom-dropdown,
.custom-datepicker {
    background-color: transparent !important;
    border: 1px solid var(--accent-teal) !important;
    border-radius: 50px !important;
    color: #fff !important;
    padding: 12px 25px !important;
    font-family: "Poppins", sans-serif !important;
}

span.flatpickr-weekday {
    background: transparent !important;
}

input#visit-date::placeholder {
    color: #fff;
}

.custom-dropdown {
    background-color: #051610 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235CA89E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-size: 1.5rem !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    appearance: none;
}

.custom-dropdown option {
    background-color: #051610 !important;
    color: #fff !important;
    padding: 10px !important;
}

.custom-datepicker {
    background-image: url("../../front/images/date-picker.webp") !important;
    background-size: 1.5rem !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    cursor: pointer;
}

/* Hide native icon */
.custom-datepicker::-webkit-calendar-picker-indicator {
    opacity: 0;
    -webkit-appearance: none;
    position: absolute;
    right: 20px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

/* Flatpickr Theme Customization */
.flatpickr-calendar {
    background: #051610 !important;
    border: 1px solid rgba(92, 168, 158, 0.4) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8) !important;
    border-radius: 20px !important;
    font-family: "Poppins", sans-serif !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: #5ca89e !important;
    border-color: #5ca89e !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: rgba(92, 168, 158, 0.2) !important;
}

.flatpickr-day.today {
    border-color: #5ca89e !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255, 255, 255, 0.1) !important;
}

.hide-scrollbar {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.custom-tabs {
    flex-wrap: nowrap;
    gap: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-tabs .nav-item {
    margin: 0 !important;
}

.custom-tabs::-webkit-scrollbar {
    display: none;
}

.custom-tabs .nav-link {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    transition: 0.3s;
    font-size: 15px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .custom-tabs .nav-link {
        padding: 6px 8px;
        font-size: 12px;
    }
}

.custom-tabs .nav-link.active {
    background-color: #5ca89e !important;
    border-color: #5ca89e !important;
    color: #fff !important;
}

.custom-tab-content {
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.section-heading-sm {
    line-height: 1.2;
}

@media (max-width: 767px) {
    .section-heading-sm {
        font-size: 32px !important;
    }

    .custom-tabs {
        padding-bottom: 10px;
    }

    .custom-tabs .nav-item {
        white-space: nowrap;
    }
}

/* Save Section Styles */
.italic-display {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
}

.border-end-custom {
    position: relative;
}

.border-end-custom::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(92, 168, 158, 0.3);
}

.border-bottom-teal {
    height: 1px;
    background: rgba(92, 168, 158, 0.4);
}

.candidate-item {
    border-top: 1px solid rgba(92, 168, 158, 0.3);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.candidate-item.last-item {
    border-bottom: 1px solid rgba(92, 168, 158, 0.3);
}

.border-start-teal {
    border-left: 1px solid rgba(92, 168, 158, 0.3);
    min-width: 120px;
    text-align: center;
}

.text-teal {
    color: var(--accent-teal);
}

@media (max-width: 767px) {
    .border-end-custom::after {
        display: none;
    }

    .border-end-custom {
        border-bottom: 1px solid rgba(92, 168, 158, 0.2);
        margin-bottom: 20px;
    }
}

/* Comparison Table Styles */
.comparison-table-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    overflow: hidden;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    background: transparent !important;
}

.comparison-table {
    margin-bottom: 0;
    border-collapse: collapse;
    font-family: "Poppins", sans-serif;
}

.comparison-table th,
.comparison-table td {
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    vertical-align: middle;
}

.comparison-table thead th {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 40px;
    padding-bottom: 40px;
}

.comparison-table thead th .text-teal {
    color: #5ca89e !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table th {
    padding: 30px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: bottom;
}

.comparison-table td {
    padding: 25px 15px;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-name {
    text-align: left !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: var(--accent-teal) !important;
    background: #0d1a18 !important;
    /* Solid color for sticky overlap */
    padding-left: 25px !important;
    min-width: 250px;
    position: sticky;
    left: 0;
    z-index: 10;
}

/* Subtle shadow for sticky column on mobile */
@media (max-width: 991px) {
    .feature-name {
        box-shadow: 10px 0 15px rgba(0, 0, 0, 0.5);
    }
}

.table-prod-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table img[src*="tick"],
.comparison-table img[src*="cross"] {
    width: 28px !important;
    height: auto;
    opacity: 0.9;
}

/* Custom Scrollbar for the table */
.comparison-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 10px;
}

button.btn-add-to-cart.form-control {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 34px;
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
    font-family: "poppins";
}

@media (max-width: 1200px) {
    .feature-col {
        width: 200px;
    }

    .table-prod-img {
        height: 120px;
    }
}

@media (max-width: 991px) {
    .comparison-table-wrapper {
        border-radius: 0;
    }

    .feature-col {
        min-width: 150px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .feature-name {
        padding-right: 15px !important;
        font-size: 14px;
    }

    .table-prod-img {
        height: 80px;
    }

    .comparison-table thead th .text-teal {
        font-size: 14px;
    }

    .comparison-table img[src*="tick"],
    .comparison-table img[src*="cross"] {
        width: 35px !important;
    }
}

/* Blog Page Styles */
.blog-card {
    position: relative;
    height: 450px;
    border-radius: 35px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}

.blog-content {
    position: relative;
    z-index: 2;
}

.blog-date {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.date-icon {
    width: 16px;
    height: auto;
    opacity: 0.8;
}

.blog-title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    font-style: italic;
}

.read-more {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more:hover {
    color: #fff;
    padding-left: 5px;
}

.btn-explore {
    display: inline-block;
    padding: 12px 45px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.btn-explore:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .blog-card {
        height: 380px;
    }
}

/* Blog Detail Styles */
.back-link {
    color: var(--accent-teal);
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.back-link:hover {
    color: #fff;
    transform: translateX(-5px);
}

.blog-meta {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.featured-image-wrapper img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.blog-article-content {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

.blog-list {
    list-style: none;
    padding: 0;
}

.blog-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.blog-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 12px;
    height: 1px;
    background: var(--accent-teal);
}

.text-teal {
    color: var(--accent-teal) !important;
}

@media (max-width: 991px) {
    .blog-article-content {
        font-size: 16px;
    }

    .blog-detail-hero h1 {
        font-size: 40px !important;
    }
}

/* Cart & Checkout Styles */
.cart-table {
    border-color: rgba(255, 255, 255, 0.1);
}

.cart-table th {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.cart-table td {
    padding: 30px 0;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-table .quantity-selector {
    display: inline-flex !important;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 4px 8px;
}

.cart-table .qty-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    padding: 0;
    font-size: 16px;
    line-height: 1;
}

.cart-table .qty-input {
    width: 32px;
    min-width: 32px;
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 28px;
}

.cart-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.remove-item {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    transition: 0.3s;
}

.remove-item:hover {
    color: #ff4444;
}

.cart-totals-box,
.order-summary-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.btn-proceed {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-teal);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.btn-proceed:hover {
    background: #4d8c83;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(92, 168, 158, 0.2);
}

.btn-outline-teal {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--accent-teal);
    color: var(--accent-teal);
    border-radius: 100px;
    transition: 0.3s;
}

.btn-outline-teal:hover {
    background: var(--accent-teal);
    color: #fff;
}

.btn-outline-white {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 100px;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.form-check-input {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background-color: var(--accent-teal);
    border-color: var(--accent-teal);
}

@media (max-width: 991px) {
    .cart-actions {
        flex-direction: column;
        gap: 20px;
    }

    .coupon-area {
        width: 100%;
    }

    .coupon-area input {
        flex-grow: 1;
    }
}
