:root {
    --adenosil-cyan: #0089C9;
    --adenosil-navy: #1E3E7B;
    --text-blue: #1E3E7B;
    --btn-border: #999;
}

body {
    font-family:  "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* 1. Header Top Bar with Gradient (Cyan to Navy) */
.top-header-bar {
    background: linear-gradient(to right, var(--adenosil-cyan) 0%, var(--adenosil-navy) 100%);
    height: 60px;
    width: 100%;
    position: relative;
    z-index: 1; /* Keeps it behind the overlapping image */
}

/* 2. Hero Section */
.hero-section {
    padding: 60px 0 20px 0;
    position: relative;
    z-index: 5;
    background-color: white;
}

/* Typography Scaling */
.adenosil-logo {
    color: var(--adenosil-cyan);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -3px;
    font-size: clamp(3.5rem, 8vw, 6.5rem); 
    margin-bottom: 10px;
}

.adenosil-tagline {
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    margin-bottom: 30px;
}

.hero-description {
    color: var(--text-blue);
    line-height: 1.35;
    max-width: 550px;
    font-weight: 500;
    font-size: clamp(1.1rem, 3vw, 1.65rem);
    margin-bottom: 40px;
}

/* Hero Button */
.hero-action-btn {
    background: linear-gradient(to right, var(--adenosil-cyan) 0%, var(--adenosil-navy) 100%);
    color: white;
    border: 3px solid var(--btn-border);
    border-radius: 5px;
    padding: 12px 30px;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

/* 3. Bottom Navy Bar with Gradient (Navy to Cyan) */
.bottom-hero-bar {
    background: linear-gradient(to right, var(--adenosil-navy) 0%, var(--adenosil-cyan) 100%);
    height: 80px;
    width: 100%;
    position: relative;
    z-index: 1; /* Keeps it behind the overlapping image */
}

/* --- RESPONSIVE IMAGE OVERLAP LOGIC --- */
.product-collage-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.product-collage-img {
    display: block;
    width: min(100%, 680px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 100; /* Higher than bars to ensure overlap works */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

/* Desktop Settings */
@media (min-width: 992px) {
    .product-collage-img {
        width: min(52vw, 720px);
        height: auto;
        max-height: 560px;
        margin-top: -110px;   /* Pulls image into the Top Bar */
        margin-bottom: -120px; /* Pulls image into the Bottom Bar */
    }
}

/* Mobile Settings */
@media (max-width: 991px) {
    .hero-text-col {
        text-align: center;
        margin-bottom: 50px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .product-collage-wrapper {
        justify-content: center;
    }
    .product-collage-img {
        width: min(92vw, 560px);
        max-height: none;
        margin-top: 0; 
        margin-bottom: -80px; /* Overlap only the bottom bar on mobile */
    }
}

@media (max-width: 575px) {
    .product-collage-img {
        width: min(96vw, 440px);
        margin-bottom: -54px;
    }
}


/* --- SECTION: BENEFITS & TECHNOLOGY STYLES --- */

.benefits-section {
    padding: 60px 0;
    background-color: #fff;
}

/* Cyan Subtitles */
.info-title-cyan {
    color: var(--adenosil-cyan);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Standard Paragraph Text */
.info-paragraph {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
}

/* Large Main Heading */
.main-benefits-title {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-top: 60px;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

/* Custom Checkmark List */
.benefits-check-list {
    list-style: none;
    padding: 0;
}

.benefits-check-list li {
    font-size: 1.8rem;
    color: var(--adenosil-navy); /* Dark blue text from image */
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: var(--adenosil-cyan);
    font-size: 2.2rem;
    margin-right: 20px;
    font-weight: 900;
}

/* Divider Bar (Same gradient as bottom hero but perhaps thinner) */
.section-divider-bar {
    background: linear-gradient(to right, var(--adenosil-navy) 0%, var(--adenosil-cyan) 100%);
    height: 40px;
    width: 100%;
}

/* Responsive Adjustments for Benefits Section */
@media (max-width: 991px) {
    .main-benefits-title {
        font-size: 2.2rem;
        margin-top: 40px;
    }
    .benefits-check-list li {
        font-size: 1.3rem;
    }
    .info-title-cyan {
        font-size: 1.4rem;
    }
    .info-paragraph {
        font-size: 1.1rem;
    }
}

/* --- END SECTION: BENEFITS & TECHNOLOGY STYLES --- */


/* --- SECTION: GAMA ADENOSIL STYLES --- */

.gama-adenosil-section {
    background-color: #E1F5FE;
    padding: clamp(64px, 8vw, 110px) 0;
}

.gama-adenosil-section .container {
    max-width: 1260px;
}

.gama-title {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gama-subtitle {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: clamp(1.15rem, 3vw, 2.25rem);
    line-height: 1.12;
    text-transform: uppercase;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Wrapper */
.product-box-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    height: 100%;
}

/* Flip Card Container */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 390px;
    perspective: 1000px;
    margin-bottom: 18px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Flip Trigger */
.product-box-unit.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 3px solid var(--adenosil-cyan);
    border-radius: 34px 0 34px 0;
    box-shadow: 0 20px 44px rgba(17, 38, 88, 0.14);
    overflow: hidden;
}

/* Front Face (White) */
.flip-card-front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: clamp(22px, 2.4vw, 32px) clamp(18px, 2.4vw, 30px) clamp(14px, 1.8vw, 22px);
}

.product-name-front {
    color: var(--adenosil-cyan);
    font-weight: 900;
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    line-height: 1;
    margin-bottom: 10px;
    min-height: 2.1em;
    text-align: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.product-img-front {
    max-height: 76%;
    max-width: 98%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(30, 62, 123, 0.18));
    transition: transform 0.35s ease;
}

.product-box-unit:hover .product-img-front {
    transform: translateY(-6px) scale(1.03);
}

.flip-card-back {
    background: linear-gradient(145deg, #1E3E7B 0%, #112658 100%); /* Deep Navy Gradient */
    color: #fff;
    transform: rotateY(180deg);
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-name-back {
    font-weight: 800;
    font-size: 1.55rem;
    line-height: 1.05;
    margin-bottom: 18px;
    text-align: left;
    border-bottom: 2px solid var(--adenosil-cyan);
    padding-bottom: 12px;
    display: inline-block;
    width: 100%;
}

/* Flex wrapper for content */
.back-content-flex {
    display: grid;
    grid-template-columns: minmax(130px, 45%) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    flex: 1;
    position: relative;
    min-height: 0;
}

/* THE OVERFLOWING IMAGE */
.product-img-back {
    height: auto;
    max-height: 245px;
    max-width: 100%;
    justify-self: center;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4)) brightness(1.1);
    z-index: 10;
    transition: transform 0.4s ease;
}

/* Larger Text Area */
.back-text-area {
    text-align: left;
    min-width: 0;
}

.back-text-area p {
    font-size: 1.12rem;
    line-height: 1.2;
    margin-bottom: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.back-text-area p:last-child {
    margin-bottom: 0;
}

/* Optional: Slight animation when card is flipped */
.product-box-unit.flipped .product-img-back {
    transform: none;
}

/* --- THE DYNAMIC BUTTON --- */
.buy-now-btn-external {
    background-color: var(--adenosil-cyan);
    color: white;
    border: none;
    width: min(88%, 340px);
    padding: 14px 18px;
    font-size: clamp(1.15rem, 1.7vw, 1.5rem);
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    border-radius: 5px;
    
    /* Initially hidden */
    opacity: 0;
    visibility: hidden;
}

/* Show button only when unit is flipped */
.product-box-unit.flipped .buy-now-btn-external {
    opacity: 1;
    visibility: visible;
}

.buy-now-btn-external:hover { background-color: #0077af; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .gama-adenosil-section {
        padding: 64px 0;
    }

    .flip-card {
        height: 390px;
    }

    .product-box-unit.flipped .flip-card {
        height: 500px;
    }

    .product-img-back {
        max-height: 235px;
    }

    .back-text-area p {
        font-size: 1.06rem;
    }
}

@media (max-width: 767px) {
    .gama-adenosil-section {
        padding: 48px 0;
    }

    .gama-adenosil-section .row {
        --bs-gutter-y: 1.35rem;
    }

    .gama-title {
        font-size: 2.7rem;
        margin-bottom: 10px;
    }

    .gama-subtitle {
        font-size: clamp(1.05rem, 5.6vw, 1.55rem);
        margin-bottom: 1.75rem !important;
    }

    .flip-card {
        height: min(118vw, 460px);
        margin-bottom: 14px;
    }

    .product-box-unit.flipped .flip-card {
        height: 430px;
    }

    .product-box-densactive.flipped .flip-card,
    .product-box-shampoo.flipped .flip-card {
        height: 390px;
    }

    .flip-card-front {
        justify-content: flex-start;
        padding: 22px 16px 12px;
    }

    .product-name-front {
        min-height: auto;
        font-size: clamp(1.65rem, 7vw, 2.25rem);
        margin-bottom: 4px;
    }

    .product-img-front {
        flex: 1;
        min-height: 0;
        max-height: none;
        max-width: 112%;
        width: 100%;
    }

    .flip-card-back {
        padding: 22px 20px 18px;
    }

    .product-name-back {
        width: 100%;
        text-align: center;
        font-size: clamp(1.35rem, 6vw, 1.85rem);
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .back-content-flex {
        flex-direction: column;
        display: flex;
        justify-content: flex-start;
        gap: 14px;
    }

    .product-img-back {
        height: auto;
        max-height: 190px;
        max-width: 88%;
    }

    .back-text-area {
        text-align: center;
    }

    .back-text-area p {
        font-size: 1rem;
        line-height: 1.16;
        margin-bottom: 8px;
    }

    .buy-now-btn-external {
        width: 92%;
        padding: 14px 16px;
    }
}

@media (max-width: 420px) {
    .flip-card {
        height: 460px;
    }

    .product-box-unit.flipped .flip-card {
        height: 420px;
    }

    .product-box-densactive.flipped .flip-card,
    .product-box-shampoo.flipped .flip-card {
        height: 380px;
    }

    .flip-card-front {
        padding-top: 20px;
    }

    .product-img-back {
        max-height: 180px;
    }

    .back-text-area p {
        font-size: 0.94rem;
    }
}




/* --- END SECTION: GAMA ADENOSIL STYLES --- */

/* --- SECTION: RITUALUL ADENOSIL (PROTOCOLS) STYLES --- */
.ritual-protocols-section { background-color: #fff; }

.ritual-title {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 2.2rem;
    text-align: center; /* Ensure main title is centered */
}

/* Accordion Styling */
.custom-dashed-accordion .accordion-item { border: none; }

.custom-dashed-accordion .accordion-button {
    background-color: #fff;
    border: 3px dashed var(--adenosil-cyan);
    color: var(--adenosil-cyan);
    padding: 1.5rem 1rem;
    border-radius: 0 !important;
    box-shadow: none;

    /* 1. FLEX CENTERING */
    display: flex;
    justify-content: center; /* Centers the .header-content horizontally */
    align-items: center;     /* Centers content vertically */
    text-align: center;      
    position: relative;      /* CRITICAL: Allows the + icon to float on the right */
}

/* --- FIXED RITUAL ACCORDION ICON (Detached from Center) --- */
.custom-dashed-accordion .accordion-button::after {
    background-image: none;
    content: "✕"; 
    font-family:  "Roboto", sans-serif;
    font-weight: 300;
    font-size: 1.8rem;
    color: var(--adenosil-cyan);
    transition: 0.3s;
    
    /* POSITION ABSOLUTE: This prevents the icon from pushing the text left */
    position: absolute;
    right: 25px; 
    margin-left: 0; 
}

.custom-dashed-accordion .accordion-button.collapsed::after {
    content: "＋"; 
    transform: none;
}

/* Container for Icon + Text */
.header-content {
    display: flex;
    align-items: center;
    justify-content: center; /* Keeps icon and text together in the middle */
    gap: 15px;               /* Space between magnifying glass and text */
    width: auto;             /* Ensure it only takes needed space to stay centered */
}

.magnifier-icon {
    font-size: 2.2rem;
    color: var(--adenosil-cyan);
    display: flex;
    align-items: center;
}

.protocol-header-text {
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.2;
    text-transform: uppercase;
}
/* Scheme Expansion Body */
.scheme-body {
    border: 3px solid var(--adenosil-cyan);
    border-top: none;
    padding: 0 !important;
}

.scheme-text-side {
    padding: 20px;
    border-right: none;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.dashed-top {
    border-top: 2px dashed var(--adenosil-cyan);
    margin-top: 10px;
    padding-top: 10px;
}

.scheme-visual-side {
    padding: 20px;
    background-color: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prod-entry h5 { color: var(--adenosil-cyan); font-weight: 700; margin-bottom: 3px; }
.prod-entry p { font-size: 1.1rem; color: #444; margin-bottom: 5px; }

/* Visual Calendar Elements */
.calendar-row { display: flex; align-items: center; gap: 6px; }

.protocol-calendar {
    justify-content: center;
    margin: 14px auto 18px;
    max-width: 420px;
}

.prod-entry .protocol-calendar:last-child {
    margin-bottom: 4px;
}

.shampoo-use {
    color: #555;
    font-weight: 800;
    text-align: center;
    margin-top: 18px;
}

@media (min-width: 768px) {
    .scheme-text-side {
        padding: 22px 28px;
    }

    .prod-entry {
        display: grid;
        grid-template-columns: minmax(0, 58%) minmax(260px, 42%);
        column-gap: 28px;
        align-items: center;
    }

    .prod-entry h5,
    .prod-entry p:not(.shampoo-use) {
        grid-column: 1;
    }

    .prod-entry h5 {
        margin-bottom: 4px;
    }

    .prod-entry .protocol-calendar {
        grid-column: 2;
        justify-content: center;
        margin: 4px 0;
        max-width: none;
    }

    .prod-entry .shampoo-use {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        margin: 0;
    }
}

.bubble {
    width: 35px; height: 35px;
    background-color: var(--adenosil-cyan);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.bubble.outline {
    background-color: transparent;
    border: 2px solid var(--adenosil-cyan);
    color: var(--adenosil-cyan);
}

.arr { color: #888; font-size: 1.5rem; }

.line-arrow {
    width: 120px; height: 2px;
    background-color: #bbb;
    position: relative;
    margin-right: 5px;
}

.line-arrow::after {
    content: '▶';
    position: absolute;
    right: -8px; top: -11px;
    color: #bbb;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .scheme-text-side { border-bottom: none; }
    .protocol-header-text { font-size: 1rem; }
    .line-arrow { width: 80px; }
}

@media (max-width: 575px) {
    .scheme-text-side {
        padding: 18px 14px;
    }

    .prod-entry p {
        font-size: 1rem;
        line-height: 1.25;
    }

    .protocol-calendar {
        gap: 5px;
        max-width: 100%;
        margin-top: 12px;
        margin-bottom: 16px;
    }

    .bubble {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }

    .arr {
        font-size: 1.25rem;
    }
}

/* --- END SECTION: RITUALUL ADENOSIL (PROTOCOLS) STYLES --- */


/* --- SECTION: WHY CHOOSE ADENOSIL STYLES --- */

.why-choose-adenosil-section {
    background-color: #E6F7FF; /* Specific very light blue background from image */
    padding: 60px 0;
}

.why-title {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 3.2rem; /* Large, bold title */
  
}

/* Container for each list item */
.why-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-left: 15%; /* Indent content like in the image */
}

/* Circular Icon Container */
.why-icon-circle {
    width: 90px;
    height: 90px;
    border: 3px solid var(--adenosil-cyan); /* Blue outline */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    flex-shrink: 0; /* Prevents circle from squishing */
    margin-right: 25px;
}

.why-icon-circle i {
    color: var(--adenosil-cyan);
    font-size: 3.2rem;
}

/* Description Text */
.why-text {
    font-size: 2.2rem;
    color: #555; /* Grayish text from image */
    font-weight: 600;
    line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .why-title {
        font-size: 2rem;
    }
    .why-item {
        padding-left: 0; /* Remove indent on mobile */
        margin-bottom: 25px;
    }
    .why-icon-circle {
        width: 55px;
        height: 55px;
    }
    .why-icon-circle i {
        font-size: 1.5rem;
    }
    .why-text {
        font-size: 1.1rem;
    }
}

/* --- END SECTION: WHY CHOOSE ADENOSIL STYLES --- */


/* --- SECTION: FAQ & FINAL CTA STYLES --- */

.faq-main-title {
    color: var(--adenosil-navy);
    font-weight: 800;
    font-size: 3rem;
}

/* Custom Accordion Styling to match image */
.custom-faq-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 10px;
}

.custom-faq-accordion .accordion-button {
    background-color: transparent !important;
    color: var(--adenosil-cyan);
    font-weight: 700;
    font-size: 1.8rem;
    padding: 10px 0;
    box-shadow: none;
    border: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* --- FIXED FAQ ARROW (PURE CSS) --- */
.custom-faq-accordion .accordion-button::after {
    background-image: none;
    content: "";
    width: 0; 
    height: 0; 
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--adenosil-cyan); /* This creates a triangle pointing UP */
    margin-left: 15px;
    transition: transform 0.3s ease;
}

/* When the accordion is closed, rotate the triangle to point DOWN */
.custom-faq-accordion .accordion-button.collapsed::after {
    transform: rotate(180deg);
}

.custom-faq-accordion .accordion-body {
    padding: 0 0 20px 0;
    font-size: 1.5rem;
    color: #444;
    font-weight: 400;
    line-height: 1.3;
}

/* Final CTA Styling */
.final-cta-title {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.1;

}

.final-cta-desc {
    color: #666;
    font-size: 1.8rem;
    font-weight: 500;
    max-width: 700px;
}

/* Hero Button Variation for CTA */
.no-border {
    border: none !important;
}

/* --- FOOTER STYLES --- */

.main-footer {
   background: linear-gradient(to right, var(--adenosil-cyan) 0%, var(--adenosil-navy) 100%);
    color: white;
    padding: 40px 0;
}

.footer-brand-name {
    font-family:  "Roboto", sans-serif;
    font-weight:lighter;
    letter-spacing: 8px;
    font-size: 2.5rem;
    margin: 0;
}

.footer-distributor-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.footer-pp-logo {
    height: 100px;
    width: auto;
}

.footer-contact-info {
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: left;
}

.footer-legal-note {
    background-color: #f4f8fb;
    color: #4a4a4a;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 14px 0;
    text-align: center;
}

/* Responsive Footer */
@media (max-width: 767px) {
    .footer-distributor-wrapper {
        flex-direction: column;
        justify-content: center;
        margin-top: 30px;
        text-align: center;
    }
    .footer-contact-info {
        text-align: center;
    }
    .faq-main-title { font-size: 2rem; }
    .accordion-button { font-size: 1.2rem; }
    .accordion-body { font-size: 1.1rem; }
    .final-cta-title { font-size: 1.5rem; }
    .final-cta-desc { font-size: 1.1rem; }
}

/* --- END SECTION: FAQ & FINAL CTA STYLES --- */


/* --- BUY MODAL STYLES --- */

.buy-modal-content {
    
    border-radius: 20px;
    
}

.buy-modal-header {
    background: linear-gradient(to right, var(--adenosil-cyan) 0%, var(--adenosil-navy) 100%);

    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-text-block {
    display: block;
    text-align: left;
}

.modal-buy-title, .modal-buy-subtitle, .modal-buy-volume {
    display: block;
    visibility: visible;
    opacity: 1;
}

.modal-buy-title {
    color: #ffffff; /* Bright cyan title */
    font-weight: 700;
    font-size: 1.9rem;
    margin-bottom: 2px;
}

.modal-buy-subtitle {
    color: #ffffff; /* Darker navy for description */
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 5px;
    font-weight: 400; /* Thinner than title */
    max-width: 500px;
}

.modal-buy-volume {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 400;
}

/* Close button - X in a white box */
.buy-modal-close {
background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}



/* Pharmacy Link Cards */
.pharmacy-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--adenosil-cyan);
    padding: 30px 15px;
    text-decoration: none;
    transition: 0.3s;
    height: 180px;
    background: #fff;
    border-radius: 10px;
}

.pharmacy-card:hover {
    border-color: var(--adenosil-cyan);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pharmacy-card-disabled,
.pharmacy-card-disabled:hover {
    opacity: 0.35;
    filter: grayscale(1);
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none;
}

.pharmacy-card img {
    max-width: 130px;
    max-height: 50px;
    margin-bottom: 25px;
    object-fit: contain;
}

.buy-online-text {
    color: #333;
    font-weight: 700;
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Responsive modal cards */
@media (max-width: 767px) {
    .pharmacy-card { height: auto; padding: 20px; }
    .modal-buy-title { font-size: 1.4rem; }
}


/* --- GENERAL BUY MODAL (WITH DROPDOWN) STYLES --- */

.general-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

/* Header with Navy background */
.general-modal-navy-header {
    background: linear-gradient(to right, var(--adenosil-cyan) 0%, var(--adenosil-navy) 100%);
    padding: 30px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.gen-modal-title-text { color: #fff; font-weight: 700; font-size: 1.8rem; margin: 0; }
.gen-modal-desc-text { color: #fff; font-size: 1.1rem; opacity: 0.9; margin: 5px 0; line-height: 1.2; }
.gen-modal-vol-text { color: #fff; font-size: 1rem; opacity: 0.8; }

.gen-modal-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Selector Box (Dashed Cyan Border) */
.gen-modal-selector-wrapper {
    border: 2px dashed var(--adenosil-cyan);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.gen-dropdown {
    border: 2px solid var(--adenosil-cyan);
    border-radius: 10px;
    padding: 12px;
    color: var(--adenosil-navy);
    font-weight: 700;
    margin-top: 10px;
}

.gen-dropdown:focus {
    border-color: var(--adenosil-navy);
    box-shadow: 0 0 0 0.25rem rgba(30, 62, 123, 0.15);
}

/* Pharmacy cards in this modal */
.general-modal-content .pharmacy-card {
    height: 140px;
    padding: 15px;
    border-radius: 10px;
}

/* --- PRODUCT DETAILS MODAL (CLINICAL INFO) --- */

.info-modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.info-modal-blue-header {
    background: linear-gradient(to right, var(--adenosil-cyan) 0%, var(--adenosil-navy) 100%);
    color: white;
    border-bottom: none;
}

/* Tabs Styling */
.custom-info-tabs {
    gap: 10px;
}

.custom-info-tabs .nav-link {
    background-color: #fff;
    color: var(--adenosil-cyan);
    border: 2px solid var(--adenosil-cyan);
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.2s;
}

.custom-info-tabs .nav-link:hover {
    background-color: #f0fbff;
}

.custom-info-tabs .nav-link.active {
    background: linear-gradient(to right, var(--adenosil-cyan) 0%, var(--adenosil-navy) 100%);
    color: #fff !important;
    border-color: var(--adenosil-navy);
}

/* Clinical Typography & Ribbons */
.info-title-ribbon {
    border-bottom: 5px solid var(--adenosil-cyan); /* Thicker line */
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding-right: 15px;
}

.info-title-ribbon h2 {
    color: var(--adenosil-cyan);
    font-weight: 400;
    font-size: 3.5rem; /* Matches image scale */
    margin: 0;
    letter-spacing: -2px;
}

/* The Triangle Pointer */
.info-title-ribbon::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 40px;
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 15px solid var(--adenosil-cyan);
}

.info-subtitle {
    color: var(--adenosil-cyan);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.info-highlight-text {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
}

.info-main-img,
.info-main-img-shampoo {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.14));
}

.info-main-img {
    max-height: 330px;
}

#info-gfm .info-main-img {
    max-width: 390px;
}

#info-densactive .info-main-img {
    max-width: 430px;
    transform: scale(1.08);
    transform-origin: center;
}

.info-ingredients-bar {
    color: var(--adenosil-navy);
    font-weight: 700;
    font-size: 1.1rem;
    border-top: 2px solid var(--adenosil-cyan);
    padding-top: 8px;
    margin-top: 15px;
    letter-spacing: 0.5px;
    text-align: center;
}

.info-ingredients-bar-vertical {
    color: var(--adenosil-cyan);

}

/* Gray Info Boxes */
.info-gray-box {
    background-color: #f2f2f2;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-intro-para {
    color: var(--text-blue);
    line-height: 1.4;
    font-weight: 500;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
}

.info-icon-circle {
    width: 70px; /* Slightly larger circles */
    height: 70px;
    border: 3px solid var(--adenosil-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}

.info-icon-circle i {
    color: var(--adenosil-cyan);
    font-size: 2.2rem;
}

.info-text-wrap h5 {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 1.6rem; /* Subheaders in Cyan */
    margin-bottom: 5px;
}

.info-text-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-text-wrap ul li {
    font-size: 1.1rem;
    color: #444;
    position: relative;
    padding-left: 25px;
    margin-bottom: 4px;
}

.info-text-wrap ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--adenosil-cyan);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Treatment Phases (The Table at the Bottom) */
.info-phases-row {
    border-top: 3px solid var(--adenosil-cyan);
    padding-top: 15px;
    margin-top: 30px;
}

.phase-item h4 {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.phase-item p {
    font-size: 1.4rem;
    line-height: 1.3;
    color: #333;
    margin-bottom: 3px;
}

/* Special Block for Shampoo */
.atodina-brand-block {
    background-color: var(--adenosil-navy);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

/* Footer Ribbons (Gradient Navy -> Cyan) */
.info-footer-ribbon {
    background: linear-gradient(to right, var(--adenosil-navy) 0%, var(--adenosil-cyan) 100%);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Utilities */
.tab-pane {
    transition: opacity 0.2s ease;
}

@media (max-width: 767px) {
    .custom-info-tabs { flex-direction: column; }
    .info-title-ribbon h2 { font-size: 2.2rem; }
    .info-highlight-text { text-align: center; margin-top: 15px; font-size: 1.4rem; }
    .info-ingredients-bar { text-align: center; }
    .info-gray-box { flex-direction: column; text-align: center; }
}

/* Large Brand Title (The second title) */
.brand-title-densactive {
color: var(--adenosil-cyan);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Ingredients Bar Center */
.info-ingredients-bar-center {
    color: var(--adenosil-navy);
    font-weight: 700;
    font-size: 1.1rem; /* Increased size */
    text-align: center;
    border-top: 2px solid var(--adenosil-cyan);
    padding-top: 10px;
    letter-spacing: 0.5px;
}

.info-promo-text-large {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

/* Complex Action Box */
.complex-action-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0 10px;
}

.info-icon-simple {
    color: var(--adenosil-cyan);
    font-size: 2.5rem;
    flex-shrink: 0;
}

.complex-text p {
    font-size: 1.15rem;
    line-height: 1.4;
    color: var(--adenosil-navy);
}

/* Gray Box Headers (Now Inside the Box) */
.box-inner-cyan-title {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-transform: none;
}

/* Responsive adjustment for extra large fonts */
@media (max-width: 767px) {
    .brand-title-densactive { font-size: 2.5rem; }
    .info-promo-text-large { font-size: 1.6rem; text-align: center; }
    .info-icon-simple { font-size: 1.8rem; }
    .complex-text p { font-size: 1rem; }
}


/* --- SHAMPOO SPECIFIC REFINEMENTS --- */

.info-promo-text-shampoo {
    color: var(--adenosil-cyan);
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.1;
    text-align: center;
}

/* The dark navy block for Atodina */
.atodina-navy-block {
        background: linear-gradient(to right, var(--adenosil-cyan) 0%, var(--adenosil-navy) 100%);
    color: #fff;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 1px;
}

.shampoo-ingredients-bar {
    color: var(--adenosil-navy);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

.atodina-tech-desc {
    color: var(--adenosil-navy);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.3;
}

.info-main-img-shampoo {
    max-width: 330px;
    max-height: 390px; /* Shampoo bottle is taller */
}

/* Checkmarks for Shampoo */
.clinical-check-list-shampoo {
    list-style: none;
    padding: 0;
}
.clinical-check-list-shampoo li {
    position: relative;
    padding-left: 25px;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.clinical-check-list-shampoo li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--adenosil-cyan);
    font-weight: 900;
}

/* Bullets for Usage */
.clinical-bullet-list-shampoo {
    list-style: none;
    padding: 0;
}
.clinical-bullet-list-shampoo li {
    position: relative;
    padding-left: 20px;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.clinical-bullet-list-shampoo li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--adenosil-navy);
    font-size: 1.5rem;
    line-height: 1;
}

/* Complex Multi-line Footer Ribbon */
.info-footer-ribbon-complex {
    background: linear-gradient(to right, var(--adenosil-navy) 0%, var(--adenosil-cyan) 100%);
    color: white;
    text-align: center;
    padding: 20px 30px;
}

.footer-shampoo-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.footer-shampoo-text {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0;
    max-width: 90%;
    margin: 0 auto;
}

/* Responsive adjustment */
@media (max-width: 767px) {
    .info-promo-text-shampoo { font-size: 1.4rem; text-align: center; }
    .atodina-navy-block { font-size: 1.2rem; }
    .atodina-tech-desc { font-size: 1.1rem; }
    .footer-shampoo-text { font-size: 0.95rem; }
    .info-main-img,
    .info-main-img-shampoo {
        max-width: min(86vw, 320px);
        max-height: 300px;
        margin-bottom: 16px;
    }

    #info-densactive .info-main-img {
        max-width: min(92vw, 360px);
        transform: none;
    }
}

.back-to-top-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1040;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 137, 201, 0.45);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: var(--adenosil-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 8px 22px rgba(30, 62, 123, 0.14);
}

.back-to-top-btn.is-visible {
    opacity: 0.72;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    opacity: 1;
    background: #fff;
}

