/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'Bitter', serif;
    color: #1a202c;
    background-color: #f0f0f0;
    min-height: 100vh;
    line-height: 1.5;
}

a {
    color: #EAB34A;
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

ul,
ol {
    list-style: none;
}

/* ===== Layout Wrapper ===== */
.page-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background-color: #fff;
    min-height: 100vh;
    position: relative;
    padding-top: 48px;
    /* offset for sticky countdown bar */
}


@media screen and (min-width: 768px) {
    body {
        background-color: #e8e8e8;
    }

    .page-wrapper {
        max-width: 480px;
        margin: 0 auto;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
        min-height: 100vh;
    }
}

/* ===== Main Content ===== */
.main-content {
    padding: 24px 16px 100px;
}

/* ===== Title ===== */
.page-title {
    font-size: 20px;
    line-height: 1.3;
    color: #EAB34A;
    margin-bottom: 16px;
    font-weight: 700;
}

@media screen and (min-width: 375px) {
    .page-title {
        font-size: 23px;
    }
}

/* ===== PDF Sample Pages Slider ===== */
.pdf-slider {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
}

.pdf-slider-track {
    overflow: hidden;
    position: relative;
    max-height: 30vh;
}

.pdf-slider-slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
    height: 100%;
}

.pdf-slider-slide {
    min-width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 30vh;
}

.pdf-slider-slide img {
    width: 100%;
    height: 100%;
    max-height: 30vh;
    display: block;
    object-fit: contain;
}

/* Slider Navigation Arrows (overlaid on image) */
.pdf-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(45, 55, 72, 0.6);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-shrink: 0;
    z-index: 2;
}

.pdf-slider-arrow-prev {
    left: 6px;
}

.pdf-slider-arrow-next {
    right: 6px;
}

.pdf-slider-arrow:hover {
    background-color: rgba(45, 55, 72, 0.85);
}

.pdf-slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.pdf-slider-arrow svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Dots bar (below image) */
.pdf-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px 4px;
}

.pdf-slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pdf-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #d0d0d0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.25s, transform 0.25s;
}

.pdf-slider-dot.active {
    background-color: #EAB34A;
    transform: scale(1.25);
}

.pdf-slider-label {
    text-align: center;
    font-size: 13px;
    color: #EAB34A;
    padding: 2px 0 10px;
    margin: 0;
    letter-spacing: 0.3px;
}

/* ===== PDF Lightbox ===== */
.pdf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pdf-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.pdf-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
}

.pdf-lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 92vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pdf-lightbox.active .pdf-lightbox-content {
    transform: scale(1);
}

.pdf-lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.pdf-lightbox-close {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Bitter', serif;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
}

.pdf-lightbox-close:hover {
    background-color: #c0392b;
}

.pdf-lightbox-close:active {
    transform: scale(0.95);
}

/* ===== Product Description ===== */
.product-description {
    margin-bottom: 16px;
}

.product-description p {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.product-description ul {
    margin-left: 24px;
    list-style: disc;
    margin-bottom: 8px;
}

.product-description ul li {
    font-size: 16px;
    margin-bottom: 6px;
    line-height: 1.6;
}

.product-description strong {
    font-weight: 700;
}

.product-description em {
    font-style: italic;
}

.product-description u {
    text-decoration: underline;
}

/* ===== Bonus Box & Highlighting Effect ===== */
.bonus-box {
    position: relative;
    margin: 20px 0 14px 0;
    padding: 16px 18px 14px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fffdf2 0%, #fef3c7 100%);
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
    animation: bonusContinuousHighlight 2.5s ease-in-out infinite;
}

@keyframes bonusContinuousHighlight {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4), 0 4px 12px rgba(245, 158, 11, 0.15);
        border-color: #f59e0b;
    }

    50% {
        box-shadow: 0 0 20px 6px rgba(245, 158, 11, 0.5), 0 6px 18px rgba(245, 158, 11, 0.25);
        border-color: #d97706;
    }
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 16px;
    background: linear-gradient(135deg, #e11d48 0%, #b91c1c 100%);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 2px 10px;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(185, 28, 28, 0.35);
    text-transform: uppercase;
    line-height: 1.4;
}

.bonus-text {
    font-size: 15px;
    line-height: 1.6;
    color: #78350f;
    margin-bottom: 0 !important;
    font-weight: 600;
}

/* ===== Sparkling Print Line & PDF/Print Emoji ===== */
.print-info-container {
    margin: 10px 0 16px 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.pdf-print-emoji {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    line-height: 1;
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.5));
    animation: emojiPulseHighlight 2s ease-in-out infinite;
}

@keyframes emojiPulseHighlight {

    0%,
    100% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.4));
    }

    50% {
        transform: scale(1.25) translateY(-2px);
        filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.9));
    }
}

.sparkle-text {
    font-weight: 700;
    font-size: 15px;
    background: linear-gradient(110deg,
            #1e293b 0%,
            #1e293b 35%,
            #f59e0b 50%,
            #fbbf24 55%,
            #1e293b 70%,
            #1e293b 100%);
    background-size: 200% 100%;
    color: #1e293b;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textSparkleShimmer 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes textSparkleShimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

.checklist-title {
    margin-top: 22px !important;
    margin-bottom: 10px !important;
}

/* ===== Countdown Timer Bar (Top Sticky) ===== */
.countdown-bar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: #e74c3c;
    padding: 10px 16px;
    z-index: 1000;
    box-shadow: 0 3px 14px rgba(231, 76, 60, 0.4);
}

.countdown-bar.expired {
    display: none;
}

.countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.countdown-emoji {
    font-size: 16px;
    flex-shrink: 0;
    animation: pulseEmoji 1s ease-in-out infinite;
}

@keyframes pulseEmoji {

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

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

.countdown-text {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Badge: timer number + label side by side */
.countdown-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    animation: badgeBounce 5s ease-in-out infinite;
}

@keyframes badgeBounce {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-5px);
    }

    20% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-5px);
    }

    40% {
        transform: translateY(0);
    }

    /* steady for remaining 60% (3 seconds at 5s cycle) */
    40.01%,
    100% {
        transform: translateY(0);
    }
}

.countdown-timer {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 1.5px;
    font-variant-numeric: tabular-nums;
    min-width: 64px;
    text-align: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.countdown-label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}


/* ===== Social Proof Popup ===== */
.social-proof-popup {
    position: fixed;
    bottom: 90px;
    left: 16px;
    right: 88px; /* 56px WA button + 16px gap + 16px screen edge */
    transform: translateY(100px);
    max-width: 440px;
    background: #e74c3c;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow:
        0 6px 24px rgba(231, 76, 60, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.4s ease;
}

.social-proof-popup.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.social-proof-popup.hide {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.social-proof-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.social-proof-message {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    white-space: normal;
    word-break: break-word;
}

.pricing-card-sticky {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pricing-info {
    display: flex;
    flex-direction: column;
}

.pricing-label {
    font-size: 12px;
    color: #718096;
    margin-bottom: 2px;
}

.pricing-amounts {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-current {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
}

.price-original {
    font-size: 14px;
    color: #a0aec0;
    text-decoration: line-through;
}

.btn-download {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Bitter', serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
}

.btn-download:hover {
    background-color: #c0392b;
    color: #fff;
    text-decoration: none;
}

.btn-download:active {
    transform: scale(0.97);
}

/* ===== Share Button ===== */
.share-section {
    text-align: center;
    margin: 24px 0;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.share-btn {
    background: none;
    border: none;
    color: #EAB34A;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Bitter', serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 16px;
}

.share-btn:hover {
    opacity: 0.8;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: #EAB34A;
}

/* ===== Section Divider ===== */
.section-divider {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    opacity: 0.6;
    margin: 40px 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    margin-bottom: 16px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #EAB34A;
    margin-bottom: 24px;
    line-height: 1.2;
}

.testimonial-carousel {
    position: relative;
    padding: 24px 0 12px;
}

.testimonial-track {
    overflow: hidden;
    position: relative;
}

.testimonial-slides {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 8px;
    text-align: center;
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 20px;
    padding: 0 8px;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 28px;
    color: #a0aec0;
}

.testimonial-quote::after {
    content: '\201D';
    font-size: 28px;
    color: #a0aec0;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.testimonial-designation {
    font-size: 14px;
    color: #a0aec0;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #2d3748;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    background-color: #4a5568;
}

.carousel-arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d0d0d0;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s;
}

.carousel-dot.active {
    background-color: #444463;
}

/* ===== FAQs Section ===== */
.faqs-section {
    margin-bottom: 56px;
}

.faq-list {
    border-top: 1px solid #e2e8f0;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 8px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Bitter', serif;
    color: #1a202c;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.15s;
    gap: 12px;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 8px 16px;
    font-size: 14px;
    color: #696982;
    line-height: 1.6;
}

/* ===== Footer ===== */
.site-footer {
    padding: 0 16px 190px;
    text-align: center;
}

.footer-brand {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.footer-brand-tagline {
    font-size: 14px;
    color: #a0aec0;
}

.footer-links {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e74c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: #2d3748;
    font-weight: 600;
}

.footer-links .copyright-text {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
}

/* ===== Accessibility ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== Toast/Snackbar ===== */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d3748;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Bitter', serif;
    z-index: 200;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
}

/* ===== Modal Overlay ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 300;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Modal Container (Terms & Refund) ===== */
.modal-container {
    background: #fff;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    padding: 24px 24px 16px;
    flex-shrink: 0;
}

.modal-scroll-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 24px;
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    -webkit-overflow-scrolling: touch;
}

.modal-scroll-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.modal-scroll-content p {
    margin-bottom: 12px;
}

.modal-scroll-content ol {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 12px;
}

.modal-scroll-content ol ol {
    list-style-type: lower-alpha;
    margin-top: 6px;
}

.modal-scroll-content li {
    margin-bottom: 8px;
}

.modal-scroll-content strong {
    color: #1a202c;
    font-weight: 700;
}

/* Close Button */
.modal-close-btn {
    width: 100%;
    padding: 16px;
    background-color: #5a4fcf;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Bitter', serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.modal-close-btn:hover {
    background-color: #4a3fb8;
}

.modal-close-btn:active {
    background-color: #3d35a0;
}

/* ===== Share Modal ===== */
.modal-container-share {
    border-radius: 16px 16px 0 0;
    max-height: none;
    padding: 24px;
}

.modal-header-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header-share .modal-title {
    padding: 0;
    margin: 0;
}

.modal-close-icon {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: #e74c3c;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.modal-close-icon:hover {
    opacity: 0.7;
}

.modal-close-icon svg {
    width: 32px;
    height: 32px;
}

/* Share Options Grid */
.share-options {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 8px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2d3748;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s;
    min-width: 64px;
}

.share-option:hover {
    opacity: 0.8;
    text-decoration: none;
}

.share-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-option-icon svg {
    width: 24px;
    height: 24px;
}

/* Icon colors */
.share-icon-facebook svg {
    fill: #1877F2;
}

.share-icon-twitter svg {
    fill: #1DA1F2;
}

.share-icon-email {
    color: #5a4fcf;
}

.share-icon-email svg {
    stroke: #5a4fcf;
    fill: none;
}

.share-icon-whatsapp svg {
    fill: #25D366;
}

/* Copy Link Section */
.share-copy-section {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.share-url-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Bitter', serif;
    color: #718096;
    background: transparent;
    min-width: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.share-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: none;
    border: none;
    border-left: 1px solid #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Bitter', serif;
    color: #2d3748;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s;
}

.share-copy-btn:hover {
    background-color: #f7fafc;
}

.share-copy-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}