:root {
    --primary-dark: #0d1b2a;
    --accent-gold: #cea85b;
    --accent-orange: #ff7200;
    --bg-light: #f7f9fc;
    --text-main: #1b263b;
}

body {
    font-family: 'Calibri', sans-serif;
    color: var(--text-main);
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-weight: 800;
    color: #0d1b2a;
    line-height: 1.25;
    letter-spacing: -0.5px;
    font-family: var(--main-font);
    font-size: var(--heading-size);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--primary-dark);
    line-height: 1.1;
    font-weight: 700;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.3;
    margin: 0;
    font-weight: 400;
    text-align: left;
    font-size: 1.1rem;
}

.section-padding {
    padding: 50px 0;
}

.bg-dark-blue,
.solution-card-dark {
    background-color: var(--primary-dark) !important;
    color: white !important;
}

.bg-light-gray,
.bg-light-gray h3,
.bg-light-gray p,
.bg-light-gray span {
    font-family: 'Calibri', sans-serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 17px;
    font-size: 17px !important;
}

.solution-title-gold {
    color: #fff !important;
}

.text-gold {
    color: #ff7200;
    font-family: 'Calibri', sans-serif;
    font-style: normal;
    font-weight: 400;
    /* font-size: 19px; */
    /* font-family: 'calibri'; */
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-top: 5px;
}

.feature-item h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: "Open Sans Condensed Light";
}

.feature-item p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1b263b 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 114, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.btn-premium {
    background: var(--accent-orange);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Open Sans Condensed', sans-serif;
}

.btn-premium:hover {
    background: #e66600;
    transform: scale(1.05);
    color: white;
}

.btn-pink {
    background: #d81b60;
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Open Sans Condensed', sans-serif;
}

.btn-pink:hover {
    background: #ad1457;
    transform: scale(1.05);
    color: white;
}

.intro-text {
    color: #000;
    line-height: 1.3;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    font-family: 'Calibri';
}

.eco-image {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.stats-num {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
}

.stats-label {
    font-size: 1rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Additional Utility Classes to replace inline styles */
.hero-wrapper {
    padding: 50px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-light-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-text-accent {
    text-align: left;
    padding: 50px;
    margin: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

/* Responsive fixes for Hero Section */
@media (max-width: 768px) {
    .hero-wrapper {
        padding: 40px 0;
    }

    .hero-text-accent {
        padding: 25px;
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 25px !important;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-intro-p {
        margin: 0 auto 20px !important;
        font-size: 1rem;
    }

    .eco-image {
        max-height: 350px;
        margin-top: 10px;
    }
}

.hero-title {
    font-size: clamp(2.3rem, 5.3vw, 2.3rem);
    color: #0d1b2a;
    line-height: 1.1;
    margin-bottom: 35px !important;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-family: 'calibri';
    font-style: normal;
    font-weight: 400;
}

.text-orange {
    color: var(--accent-orange) !important;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50px;
    width: 80px;
    height: 5px;
    background: var(--accent-orange);
    border-radius: 10px;
}

.hero-intro-p {
    color: #000;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 25px !important;
    /* font-family: 'Calibri', sans-serif; */
    font-family: 'Calibri';
}

.btn-pink {
    background: #e91e63;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    font-family: "Open Sans Condensed Light";
}

.btn-premium {
    background: var(--accent-orange);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    text-transform: capitalize;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 114, 0, 0.3);
    text-decoration: none;
    font-family: 'calibri';
    font-style: normal;
    font-weight: 400;
    font-size: 1rem !important;
}

.eco-image {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    /* Changed to fill column width */
    max-height: 390px;
    /* Increased height */
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 5px solid white;
    /* Professional frame look */
    transition: all 0.5s ease;
}

.eco-image:hover {
    transform: scale(1.02);
}

.bg-white {
    background: white;
}

.bg-light-box {
    background: #eeeff1;
}

.sub-header-p {
    font-size: 1.2rem;
    max-width: 850px;
    margin: 0 auto;
    color: #cbd5e1;
    line-height: 1.5;
    font-family: 'Calibri';
    font-weight: 400;
}

.revolution-content-block {
    border-left: 5px solid var(--accent-orange);
    padding-left: 30px;
    margin: 30px 0;
}

.one {
    font-size: 1.1rem;
    color: #000;
    font-family: 'Calibri';
    font-weight: 600;
}

/* --- Added Professional Breadcrumb & Partner Program Styles --- */

.breadcrumb-area {
    background: #fdfdfd;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-area .breadcrumb {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-area .breadcrumb-item {
    font-size: 0.9rem;
    font-family: 'Calibri', sans-serif;
    font-weight: 400;
    color: #777;
    text-transform: capitalize;
}

.breadcrumb-area .breadcrumb-item a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-area .breadcrumb-item a:hover {
    color: var(--accent-orange);
}

.breadcrumb-area .breadcrumb-item.active {
    color: var(--accent-orange);
    font-weight: 600;
}

.breadcrumb-area .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    color: #ccc;
    padding: 0 10px;
}

/* Partner Program Section Style (Matching Screenshot 2) */
.partner-program-wrapper {
    background-color: #f6f7f9;
    background-image: url('../assets/images/geometric-bg.png');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.partner-program-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-accent-bar {
    width: 6px;
    height: 120px;
    background-color: var(--accent-orange);
    flex-shrink: 0;
}

.partner-text-block h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: #0d1b2a;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: none;
    /* Override uppercase if set globally */
    font-weight: 800;
    text-align: left;
}

.partner-text-block p {
    font-size: 1.35rem;
    color: #5d6f85;
    line-height: 1.4;
    font-family: 'Calibri', sans-serif;
    font-weight: 400;
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .partner-program-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .partner-accent-bar {
        display: none;
    }

    .partner-text-block h2,
    .partner-text-block p {
        text-align: center;
    }
}

/* Video Showcase Styles */
.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 8px solid white;
    transition: transform 0.4s ease;
    background: #fff;
    margin: 20px 0;
}

.video-container:hover {
    transform: translateY(-5px);
}

/* Trending Products Section */
.trending-products {
    padding: 50px 0;
    background: #fff;
    font-family: 'Calibri', sans-serif;
}

.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    position: relative;
}

.trending-title-wrapper {
    position: relative;
    padding-bottom: 10px;
}

.trending-title-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a4b;
    margin: 0;
    text-transform: none;
    /* font-family: 'Calibri', sans-serif; */
    font-family: "Open Sans Condensed Light";
}

.trending-title-wrapper::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 4px;
    background: #e91e63;
    border-radius: 2px;
}

.view-more-link {
    color: #777;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.view-more-link:hover {
    color: #e91e63;
}

.product-card {
    background: #fff;
    border: 1px solid #ffd1e1;
    border-radius: 12px;
    padding: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.08);
    border-color: #e91e63;
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e91e63;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(233, 30, 99, 0.2);
}

.product-img-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #ffffff;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin: -15px -15px 15px -15px;
    /* Offset the card padding for the image */
    width: calc(100% + 30px);
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a4b;
    margin-bottom: 0px;
    text-transform: none;
    font-family: 'Calibri', sans-serif;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.4em;
}

.rating-stars {
    color: #ffb400;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.old-price {
    font-size: 0.9rem;
    color: #777;
    text-decoration: line-through;
    font-weight: 400;
}

.new-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e91e63;
}

.add-to-cart {
    width: 35px;
    height: 35px;
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s;
    flex-shrink: 0;
}

.add-to-cart:hover {
    background: #d81b60;
    transform: scale(1.1);
}

/* Slider Navigation */
.trending-slider-container {
    padding: 0 40px;
}

.trending-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
    pointer-events: auto;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.trending-prev,
.deals-prev {
    left: -20px;
}

.trending-next,
.deals-next {
    right: -20px;
}

.nav-btn:hover {
    background: #d81b60;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.5);
}

@media (max-width: 1200px) {
    .trending-slider-container {
        padding: 0 50px;
    }

    .trending-prev,
    .deals-prev {
        left: -10px;
    }

    .trending-next,
    .deals-next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .trending-slider-container {
        padding: 0 15px;
    }

    .trending-prev,
    .deals-prev {
        left: 5px;
    }

    .trending-next,
    .deals-next {
        right: 5px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

.video-container .ratio {
    border-radius: 12px;
    overflow: hidden;
}

/* Best Deals Section */
.best-deals {
    padding: 50px 0;
    background-color: #fdf0f4;
    font-family: 'Calibri', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background Circle Decoration */
.best-deals::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -50px;
    width: 400px;
    height: 400px;
    /* background: #f9dbe4; */
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
}

.best-deals .container {
    position: relative;
    z-index: 1;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.deals-header.text-center {
    justify-content: center;
}

.deals-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a4b;
    margin: 0;
    font-family: "Open Sans Condensed Light";
}

.deals-title .accent-text {
    color: #e91e63;
}

.countdown-timer {
    display: flex;
    gap: 12px;
}

.timer-block {
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.timer-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e91e63;
    line-height: 1;
}

.timer-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #1a1a4b;
    text-transform: uppercase;
    margin-top: 5px;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 0;
    background: #e91e63;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px 0 0 20px;
    z-index: 2;
    box-shadow: -2px 2px 5px rgba(233, 30, 99, 0.2);
}

@media (max-width: 991px) {
    .deals-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .deals-title {
        font-size: 1.8rem;
    }

    .countdown-timer {
        gap: 8px;
    }

    .timer-block {
        min-width: 60px;
        padding: 5px 8px;
    }
}

/* MAPS Grid Section */
.maps-grid-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Calibri', sans-serif;
}

.maps-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a4b;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: center;
}

.maps-sub-title {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.map-grid-card {
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-card-inner {
    border: 2px solid #f39c12;
    /* Golden/Orange border as per screenshot */
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
}

.map-img-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    text-align: left;
    padding-left: 2px;
}

.map-grid-card:hover .map-card-inner {
    border-color: #e67e22;
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.2);
}

.map-grid-card:hover .map-card-title {
    color: #e67e22;
}

@media (max-width: 991px) {
    .maps-main-title {
        font-size: 2.2rem;
    }

    .map-card-inner {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .maps-main-title {
        font-size: 1.8rem;
    }

    .map-card-inner {
        height: 240px;
    }
}

/* Support Services Section */
.support-services-section {
    padding: 50px 0 50px;
    background: #fff;
    font-family: 'Calibri', sans-serif;
}

.support-services-inner {
    background-color: #fdf0f4;
    border-radius: 12px;
    padding: 30px 15px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 10px 15px;
}

/* Vertical divider for desktop */
@media (min-width: 992px) {
    .support-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 50px;
        width: 1px;
        background-color: #d1d1d1;
    }
}

.support-icon-box {
    width: 60px;
    height: 60px;
    background-color: #e91e63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.2);
}

.support-text h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a4b;
}

.support-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .support-item {
        margin-bottom: 25px;
        justify-content: center;
        text-align: left;
    }

    .support-item:last-child {
        margin-bottom: 0;
    }

    .support-services-inner {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .support-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Product Details Page Styling - Premium Overhaul */
.section-padding {
    padding: 50px 0;
}

.theme-color {
    color: #e91e63 !important;
}

.theme-btn-pink {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    border: none !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.theme-btn-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.3);
    color: #fff !important;
}

.btn-outline-pink {
    border: 2px solid #e91e63 !important;
    color: #e91e63 !important;
    background: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-outline-pink:hover {
    background: #e91e63 !important;
    color: #fff !important;
    transform: rotate(15deg);
}

/* Breadcrumb - Screenshot matched Design */
.product-breadcrumb {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}

.product-breadcrumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    /* Very light overlay as per screenshot */
    z-index: 1;
}

.product-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a4b;
    margin-bottom: 15px;
    font-family: 'Calibri', sans-serif;
    letter-spacing: 0.5px;
}

.breadcrumb-item {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
    /* Remove default bootstrap slash */
}

.breadcrumb-item.hidden-separator {
    padding: 0 10px;
    color: #1a1a4b;
    opacity: 0.8;
}

.breadcrumb-item a {
    color: #1a1a4b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #e91e63;
}

.breadcrumb-item.active {
    color: #e91e63;
}

/* Gallery - Refined */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(233, 30, 99, 0.05);
    transition: all 0.3s ease;
}

.main-image-wrapper img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.thumb-item {
    padding: 10px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.thumb-item img {
    border-radius: 10px;
    height: 100px !important;
}

.thumb-item.active {
    border-color: #e91e63;
    transform: scale(1.05);
}

/* Content - Elegant */
.product-info-content {
    padding-left: 20px;
}

.product-info-content .product-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a4b;
    margin-bottom: 15px;
    font-family: 'Open Sans Condensed', sans-serif;
}

.review-count {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.product-price .new-price {
    font-size: 2.2rem;
    color: #e91e63;
    font-weight: 800;
}

.product-price .old-price {
    font-size: 1.4rem;
    opacity: 0.5;
}

/* Product Main Details - Premium Professional Look */
.product-main-details {
    padding-top: 50px;
    background: #ffffff;
}

.product-gallery .main-image-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.product-gallery .main-image-wrapper:hover {
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.05);
}

.product-gallery .main-image-wrapper img {
    border-radius: 8px;
}

.product-gallery .thumb-item {
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.product-gallery .thumb-item.active,
.product-gallery .thumb-item:hover {
    border-color: #e91e63;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.08);
}

.product-info-content .product-title {
    font-family: 'Calibri', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a4b;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.product-info-content .product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-info-content .product-rating .stars i {
    font-size: 0.85rem;
    filter: drop-shadow(0 2px 4px rgba(233, 30, 99, 0.1));
}

.product-info-content .product-price {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
}

.product-info-content .product-price .old-price {
    font-size: 1.2rem;
    color: #b0b0b0;
    font-weight: 400;
}

.product-info-content .product-price .new-price {
    font-size: 2rem;
    font-weight: 800;
    color: #e91e63 !important;
    font-family: 'Calibri', sans-serif;
}

.product-short-desc {
    font-size: 1.1rem;
    color: #4a4a68 !important;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 25px;
}

.product-options-row {
    padding: 20px 0;
    margin-bottom: 25px;
}

.option-group label {
    display: block;
    font-weight: 800;
    color: #1a1a4b;
    margin-bottom: 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qty-display {
    color: #e91e63;
    font-weight: 800;
    font-size: 1.3rem;
}

.size-options .size-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    color: #1a1a4b;
    font-weight: 600;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.size-options .size-btn:hover,
.size-options .size-btn.active {
    border-color: #1a1a4b;
    background: #fff;
    color: #1a1a4b;
}

/* Professional Quantity Selector */
.quantity-selector {
    border: 1px solid #f0f0f0;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-flex;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.qty-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a4b;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    color: #e91e63;
    transform: scale(1.2);
}

.qty-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #e91e63;
    min-width: 30px;
    text-align: center;
}

.product-meta-minimal {
    border-top: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
    padding: 25px 0;
    margin-bottom: 35px;
}

.meta-row {
    max-width: 300px;
}

.meta-label {
    font-weight: 700;
    color: #666;
    font-size: 0.95rem;
}

.meta-value {
    font-size: 0.95rem;
}

.fw-800 {
    font-weight: 800;
}

.text-navy {
    color: #1a1a4b !important;
}

.product-actions-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.add-to-cart-v2 {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.25);
}

.add-to-cart-v2:hover {
    background: #1a1a4b;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 26, 75, 0.25);
}

.add-to-cart-v2 i {
    font-size: 1.1rem;
}

.wishlist-btn-v2 {
    width: 42px;
    height: 42px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.wishlist-btn-v2:hover {
    background: #1a1a4b;
}

.share-section-v2 {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 700;
    color: #1a1a4b;
    font-size: 0.85rem;
}

.share-icons-v2 .share-link {
    width: 32px;
    height: 32px;
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.share-icons-v2 .share-link:hover {
    background: #1a1a4b;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .nav-tabs .nav-link {
        width: 100%;
        text-align: center;
    }

    .thumb-item img {
        height: 80px !important;
    }
}

/* Product Highlights / Trust Badges */
.highlight-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: #e91e63;
}

.highlight-item i {
    font-size: 1.2rem;
}

.highlight-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a4b;
}

/* Custom Table for Info */
.custom-table {
    border-radius: 15px;
    overflow: hidden;
    border: none !important;
}

.custom-table th {
    background-color: #f8f9fa;
    color: #1a1a4b;
    font-weight: 700;
    border-color: #eee;
}

.custom-table td {
    color: #666;
    border-color: #eee;
}

/* Reviews Styling */
.review-item {
    transition: all 0.3s ease;
}

.review-item:hover {
    padding-left: 10px;
}

.review-item h6 {
    color: #1a1a4b;
    font-weight: 700;
}

/* Enhanced Tabs Section */
.product-tabs-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.product-tabs-wrapper .nav-tabs {
    border-bottom: 2px solid #f0f0f0;
    gap: 15px;
}

.product-tabs-wrapper .nav-link {
    border: none !important;
    font-weight: 800;
    font-size: 1rem;
    color: #666;
    padding: 12px 30px;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-tabs-wrapper .nav-link:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.05);
}

.product-tabs-wrapper .nav-link.active {
    background: #e91e63 !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
}

.tab-content .product-tab-title {
    font-family: 'Calibri', sans-serif;
    font-size: 2.2rem;
    color: #1a1a4b;
    margin-bottom: 20px;
    font-weight: 700;
}

.tab-content .product-tab-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333 !important;
    /* High Visibility */
    margin-bottom: 25px;
    font-weight: 500;
}

.product-features-list {
    list-style: none;
    padding-left: 0;
}

.product-features-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #222 !important;
    /* High Visibility */
    font-weight: 600;
    display: flex;
    align-items: center;
}

.product-features-list li::before {
    content: '\f058';
    /* Font Awesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #e91e63;
    font-size: 1.2rem;
}

/* Related Products Mini Cards */
.related-products .product-card {
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.related-products .product-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.related-products .product-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.related-products .product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-products .product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.text-navy {
    color: #1a1a4b !important;
}

.section-title h3 {
    font-family: 'Calibri', sans-serif;
    font-size: 2.8rem;
    text-transform: uppercase;
}

/* Best Deals Section - Premium Screenshot Style */
.best-deals-section {
    background: #fff5f8;
    padding: 80px 0;
    margin-top: 80px;
    border-radius: 40px;
}

.countdown-timer-wrapper .timer-box {
    background: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.05);
    min-width: 70px;
}

.timer-box .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e91e63;
    line-height: 1;
}

.timer-box .label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #1a1a4b;
    text-transform: uppercase;
    margin-top: 5px;
}

.deal-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(233, 30, 99, 0.05);
}

.deal-card:hover {
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.08);
    transform: translateY(-5px);
}

.deal-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #fdfdfd;
}

.deal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.deal-card:hover .deal-img-wrapper img {
    transform: scale(1.1);
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e91e63;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.deal-info {
    padding: 20px;
}

.deal-title {
    font-family: 'Calibri', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a4b;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    height: 2.8rem;
    text-transform: uppercase;
}

.deal-price .old-price {
    font-size: 0.85rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 8px;
}

.deal-price .new-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #e91e63;
}

.cart-btn-mini {
    width: 40px;
    height: 40px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-btn-mini:hover {
    background: #1a1a4b;
    transform: scale(1.1);
}

.best-deals-grid {
    position: relative;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #1a1a4b;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

@media (max-width: 991px) {
    .nav-btn {
        display: none;
    }

    .best-deals-section {
        border-radius: 20px;
        padding: 40px 15px;
    }

    .countdown-timer-wrapper {
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .best-deals-grid .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Common Best Deals & Product Card Design */
.best-deals {
    padding: 50px 0;
    background-color: #fff5f8;
    border-radius: 40px;
    /* margin: 40px 0; */
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.deals-title {
    font-family: 'Calibri', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a4b;
    margin: 0;
}

.deals-title .accent-text {
    color: #e91e63;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.timer-block {
    background: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.05);
}

.timer-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #e91e63;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #1a1a4b;
    margin-top: 5px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(233, 30, 99, 0.05);
    border: 1px solid #ff7200;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.08);
    transform: translateY(-5px);
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e91e63;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.product-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-info {
    padding: 2px;
}

.product-info h3 {
    font-family: 'Calibri', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a4b;
    margin-bottom: 10px;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: uppercase;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box .old-price {
    font-size: 0.85rem;
    color: #888;
    text-decoration: line-through;
    margin-right: 8px;
}

.price-box .new-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #e91e63;
}

.add-to-cart {
    width: 40px;
    height: 40px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #1a1a4b;
    transform: scale(1.1);
}

.trending-nav .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
    transition: all 0.3s ease;
}

.trending-nav .nav-btn:hover {
    background: #1a1a4b;
    transform: translateY(-50%) scale(1.1);
}

.trending-nav .prev-btn {
    left: -22px;
}

.trending-nav .next-btn {
    right: -22px;
}

@media (max-width: 991px) {
    .deals-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .best-deals {
        border-radius: 20px;
        padding: 40px 15px;
    }

    .trending-nav .nav-btn {
        display: none;
    }
}

/* Simple Workflow Section Styles */
.workflow-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.workflow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(255, 114, 0, 0.12);
    border-color: rgba(255, 114, 0, 0.3);
}

.workflow-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-orange);
    opacity: 0.8;
    margin-bottom: 20px;
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: 1.5px;
}

.workflow-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 0;
    text-transform: capitalize;
    /* font-family: 'Open Sans Condensed', sans-serif; */
    font-family: 'calibri';
    font-style: normal;
    font-weight: 600;
}

.workflow-result {
    padding-top: 30px;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}

.workflow-result p {
    font-family: 'Calibri', sans-serif;
    letter-spacing: 0.5px;
}

/* Audience Card Section Styles */
.audience-card {
    background: #ffffff;
    padding: 30px 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-orange);
}

.audience-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon {
    transform: scale(1.1);
}

.audience-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
    margin-bottom: 0;
    /* font-family: 'Open Sans Condensed', sans-serif; */
    letter-spacing: 0.5px;
    font-family: 'calibri';
}

@media (max-width: 1200px) {
    .audience-title {
        font-size: 0.85rem;
    }
}