@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Nude & Rose Gold Theme */
    --bg-main:       #FCFBF9; /* Very soft cream/nude */
    --bg-card:       transparent; /* Removing boxy feel */
    --border-light:  rgba(183, 110, 121, 0.15); /* Soft rose gold tint for subtle dividers */
    
    --text-main:     #4A4036; /* Deep elegant brown/grey */
    --text-muted:    #82786E;
    --text-white:    #FFFFFF;
    
    --accent:        #B76E79; /* Classic Rose Gold */
    --accent-hover:  #A05E68;
    --accent-light:  #F5EBEB; /* Very light rose tint */
    
    --section-pad:   70px 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, .logo {
    font-family: 'Outfit', sans-serif;
}
a { text-decoration: none; color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

/* TOP BAR */
.top-bar {
    background: var(--text-main);
    color: var(--text-white);
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.marquee { overflow: hidden; white-space: nowrap; width: 100%; }
.marquee-content { display: inline-block; animation: scrollText 25s linear infinite; }
.marquee-spacer { margin: 0 30px; opacity: 0.5; }
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* HEADER */
.site-header {
    background: rgba(252, 251, 249, 0.9);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 90;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-weight: 700; font-size: 1.6rem; color: var(--text-main); letter-spacing: -0.5px; }
.header-cta-link {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    padding: 10px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.header-cta-link:hover { background: var(--text-main); color: var(--text-white); }

/* BUTTONS */
.btn-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--text-white);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 40px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.25);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(183, 110, 121, 0.4); color: white; }
.btn-large { padding: 20px 50px; font-size: 1.15rem; }

/* E-COMMERCE HERO SECTION */
.ecommerce-hero-section {
    padding: 50px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.ecommerce-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

/* GALLERY (LEFT) */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.main-image-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(74, 64, 54, 0.08);
}
.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}
.thumbnail-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.thumb-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s ease;
}
.thumb-img:hover {
    opacity: 1;
}
.thumb-img.active-thumb {
    opacity: 1;
    border-color: var(--accent);
}

/* PRODUCT INFO (RIGHT) */
.product-info {
    padding-top: 10px;
}
.product-badge {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 5px;
}
.product-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}
.title-accent { font-style: italic; color: var(--accent); font-weight: 400; }
.price-display-ecommerce {
    margin-bottom: 35px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}
.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.3rem;
}
.price-new {
    color: var(--accent);
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}
.product-bullets {
    list-style: none;
    margin-bottom: 40px;
}
.product-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.5;
}
.product-bullets svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}
.btn-ecommerce {
    width: 100%;
    display: block;
    padding: 22px 20px;
    font-size: 1.15rem;
    margin-bottom: 25px;
}
.trust-row-ecommerce {
    display: flex;
    gap: 25px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    justify-content: center;
}
.trust-row-ecommerce span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* PROBLEM SECTION */
.problem-section {
    padding: var(--section-pad);
    text-align: center;
}
.problem-inner { max-width: 1000px; margin: 0 auto; }
.problem-section h2 { font-size: 2.8rem; margin-bottom: 60px; font-style: italic; }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}
/* Removed backgrounds to eliminate "box" feel */
.problem-card {
    padding: 20px;
}
.problem-icon { font-size: 2.5rem; display: block; margin-bottom: 20px; color: var(--accent); opacity: 0.8; }
.problem-card h3 { font-size: 1.4rem; margin-bottom: 15px; font-family: 'Montserrat', sans-serif; font-weight: 600;}
.problem-card p { color: var(--text-muted); font-size: 1rem; }
.solution-intro {
    background: transparent;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent);
}

/* WHAT'S INSIDE SECTION */
.whats-inside-section { padding: var(--section-pad); }
.whats-inside-inner { max-width: 1000px; margin: 0 auto; }
.whats-inside-inner h2 { text-align: center; font-size: 2.8rem; margin-bottom: 15px; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 60px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
/* Removing boxy card background */
.feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.feature-check {
    color: var(--accent);
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    flex-shrink: 0;
    line-height: 1;
}
.feature-card strong { font-size: 1.15rem; display: block; margin-bottom: 8px; font-weight: 600; font-family: 'Montserrat', sans-serif;}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; margin:0; }

/* COMPARISON SECTION */
.comparison-section {
    padding: var(--section-pad);
    background: var(--bg-main);
}
.comparison-inner {
    max-width: 900px;
    margin: 0 auto;
}
.comparison-inner h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
}
.comparison-table-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(74, 64, 54, 0.05);
    overflow-x: auto;
    margin-top: 50px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.comparison-table th, .comparison-table td {
    padding: 20px 25px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-light);
}
.comparison-table th {
    background: var(--accent-light);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}
.comparison-table th:first-child, .comparison-table td:first-child {
    font-weight: 600;
    width: 30%;
    color: var(--text-main);
}
.col-excel {
    width: 35%;
    color: var(--text-muted);
}
.col-karapaca {
    width: 35%;
    background: rgba(183, 110, 121, 0.03);
    font-weight: 600;
}
.icon-check {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    stroke-width: 3;
    fill: none;
    vertical-align: text-bottom;
    margin-right: 8px;
}
.icon-cross {
    width: 20px;
    height: 20px;
    stroke: #D1A3A4;
    stroke-width: 2;
    fill: none;
    vertical-align: text-bottom;
    margin-right: 8px;
}

/* HIGHLIGHTS SECTION */
.highlights-section { padding: var(--section-pad); }
.highlights-inner { max-width: 1000px; margin: 0 auto; }
.highlights-inner h2 { text-align: center; font-size: 2.8rem; margin-bottom: 15px; }
.highlight-row {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.highlight-row > div {
    flex: 1;
}
.highlight-row.reverse-row {
    flex-direction: row-reverse;
}
.highlight-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    color: var(--accent);
}
.highlight-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}
.highlight-benefits {
    list-style: none;
    margin: 0; padding: 0;
}
.highlight-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}
.highlight-benefits span {
    color: var(--accent);
    font-weight: bold;
}
.highlight-image img {
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(74, 64, 54, 0.08);
    transition: transform 0.4s ease;
}
.highlight-image img:hover {
    transform: translateY(-5px);
}

/* HOW IT WORKS */
.how-it-works-section {
    padding: var(--section-pad);
    background: var(--accent-light); /* Soft wash of color instead of a box */
}
.how-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.how-inner h2 { font-size: 2.8rem; margin-bottom: 60px; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}
.step-item { padding: 0 10px; }
.step-number {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1;
}
.step-item h3 { margin-bottom: 15px; font-size: 1.3rem; font-weight: 600; font-family: 'Montserrat', sans-serif;}
.step-item p { color: var(--text-muted); font-size: 1rem; }

/* FAQ SECTION */
.faq-section { padding: var(--section-pad); max-width: 800px; margin: 0 auto; }
.faq-inner h2 { text-align: center; font-size: 2.8rem; margin-bottom: 50px; }
.faq {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 5px;
}
.faq summary {
    padding: 25px 0;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}
.faq summary::after {
    content: '+'; position: absolute; right: 0; font-size: 1.5rem; color: var(--accent); top: 22px; font-weight: 300;
}
.faq[open] summary::after { content: '−'; }
.faq-body { padding: 0 0 30px 0; color: var(--text-muted); font-size: 1rem; }

/* FINAL CTA */
.final-cta-section {
    text-align: center;
    padding: 120px 20px;
}
.final-cta-inner { max-width: 700px; margin: 0 auto; }
.final-cta-inner h2 { font-size: 3rem; margin-bottom: 25px; line-height: 1.2; }
.final-trust p { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 25px; }

/* FOOTER */
.site-footer {
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid var(--border-light);
}
.footer-brand { font-family: 'Outfit', sans-serif; font-size: 1.6rem; margin-bottom: 20px; font-weight: 700; color: var(--accent); }
.footer-contact {
    margin-bottom: 25px;
}
.footer-contact p {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 500;
}
.footer-contact a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}
.footer-copyright { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .ecommerce-hero-inner, .problem-grid, .features-grid, .steps-grid { grid-template-columns: 1fr; gap: 50px; }
    .product-title { font-size: 2.8rem; }
    .ecommerce-hero-section { padding: 50px 20px; }
    .trust-row-ecommerce { flex-direction: column; gap: 15px; align-items: center; }
    .problem-section h2, .whats-inside-inner h2, .how-inner h2, .faq-inner h2, .final-cta-inner h2, .highlights-inner h2 { font-size: 2.2rem; }
    
    .highlight-row, .highlight-row.reverse-row {
        flex-direction: column-reverse;
        gap: 40px;
    }
}

/* ===== WHOP CHECKOUT BOX ===== */
.checkout-box {
    margin-top: 28px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #fafafa;
    padding: 20px;
}

.checkout-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 14px;
}

.whop-iframe-wrapper {
    width: 100%;
    min-height: 420px;
    border-radius: 10px;
    overflow: hidden;
}

.whop-iframe-wrapper > div {
    width: 100% !important;
    min-height: 420px !important;
}
