/* Deferred CSS - Below-the-fold styles for LP Benukokka */
/* Loaded asynchronously after critical page render */

/* Product Highlight */
.product-highlight {
    box-shadow: 0 8px 40px rgba(224,118,12,0.35) !important;
    transform: scale(1.02);
    border: 2px solid var(--primary);
}
.yt-lite{position:relative;width:315px;height:560px;border-radius:12px;overflow:hidden;margin:auto}
.yt-lite__play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:64px;height:64px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.9);font-weight:700}
.yt-lite>img{width:100%;height:100%;object-fit:cover;display:block}
@media(max-width:420px){.yt-lite{width:100%;height:calc(560/315*100vw);max-height:75vh}}

/* Media & Influencers */
.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 60px;
}
.media-logos img {
    max-height: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.media-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.influencer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
}
.influencer-card {
    text-align: center;
}
.influencer-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}
.influencer-card .name {
    font-weight: 700;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
}
.influencer-card .title {
    color: #777;
}

/* Testimonials */
#testimonials {
    background: #f9f9f9;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.testimonial-card .stars {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}
.testimonial-card .text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}
.testimonial-card .author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.testimonial-card .author-info img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}
.testimonial-card .author {
    font-weight: 700;
    color: var(--dark);
}
.testimonial-card .location {
    font-size: 14px;
    color: #777;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -12px;
    background-color: var(--white);
    border: 4px solid var(--secondary);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item.left {
    left: 0;
    text-align: right;
}
.timeline-item.right {
    left: 50%;
    text-align: left;
}
.timeline-item.right::after {
    left: -8px;
}
.timeline-content {
    padding: 20px;
    background: var(--dark-secondary);
    border-radius: var(--radius);
}
.timeline-content h3 {
    color: var(--primary);
    font-size: 24px;
    text-transform: none;
}
.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.timeline-content p {
    text-transform: none;
}

/* Mission Section */
.our-mission {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: var(--radius);
}
.our-mission img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary);
    flex-shrink: 0;
}
.our-mission blockquote {
    font-size: 18px;
    font-style: italic;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
}

/* Highlight Box & Guide Cards */
.highlight-box {
    background: var(--dark-secondary);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid var(--secondary);
}
.highlight-box svg {
    color: var(--primary);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.highlight-box p {
    color: #ddd;
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    margin: 0;
}
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.guide-card {
    background-color: var(--dark-secondary);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}
.guide-card svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}
.guide-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.guide-card p {
    text-transform: none;
    opacity: 0.9;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: var(--radius);
}
.stat-card svg {
    width: 40px;
    height: 40px;
    color: var(--secondary);
    margin-bottom: 10px;
}
.stat-card .title {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Oswald';
    text-transform: uppercase;
}
.stat-card .subtitle {
    font-size: 16px;
    color: #777;
}

/* Product Collection */
#koleksi {
    background: #f4f4f4;
}
.product-slider-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
}
.product-slides {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    gap: 20px;
    margin: 0 -20px;
}
.product-card {
    flex: 0 0 90%;
    scroll-snap-align: center;
    max-width: 360px;
    display: flex;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
@media (min-width: 480px) {
    .product-card {
        flex-basis: 360px;
    }
}
.product-card-inner {
    background: var(--dark-secondary);
    color: var(--text-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    width: 100%;
}
.product-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-info .collection-name {
    color: #aaa;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}
.product-info h3 {
    font-size: 28px;
    margin: 5px 0 15px 0;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
}
.product-info .price {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}
.product-info ul {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 15px;
    opacity: 0.9;
}
.product-info li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}
.product-info li::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.product-card .cta-button {
    width: 100%;
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    color: var(--dark);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: none;
}
@media (min-width: 769px) {
    .slider-nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.slider-nav.prev {
    left: -15px;
}
.slider-nav.next {
    right: -15px;
}
.collection-heading {
    text-align: center;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 20px;
    color: var(--dark);
}
.ar-ridho-container {
    display: flex;
    justify-content: center;
}

/* Kalung Collection Specific */
#kalung-collection .product-card {
    max-width: none;
}
@media (min-width: 769px) {
    #kalung-collection .product-slides {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        margin: 0;
        padding: 0;
        justify-content: center;
    }
    #kalung-collection .product-slider-container {
        max-width: 740px;
    }
    #kalung-collection .product-card {
        flex-basis: auto;
    }
    #kalung-collection .slider-nav {
        display: none;
    }
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.package-card {
    background-color: var(--dark-secondary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
}
.package-card h3 {
    font-size: 32px;
    text-transform: capitalize;
}
.package-card .price {
    font-size: 42px;
    color: var(--primary);
    margin: 10px 0 20px 0;
}
.package-card ul {
    list-style: none;
    margin-bottom: 30px;
}
.package-card li {
    padding: 8px 0;
}
.package-card .cta-button {
    width: 100%;
}

/* Sizing Section */
.sizing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.sizing-grid img {
    max-width: 100%;
    border-radius: var(--radius);
}
.sizing-info p {
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}
.sizing-recs h4 {
    margin-bottom: 15px;
    text-transform: uppercase;
}
.sizing-recs div {
    margin-bottom: 10px;
}

/* Global Reach */
.global-reach {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.country-tag {
    background: var(--dark-secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
}

/* Guarantee CTA Section */
#guarantee-cta {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    text-align: center;
}
#guarantee-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
#guarantee-cta h2 {
    font-size: clamp(32px, 5vw, 48px);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
#guarantee-cta h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
    margin: 0;
}
#guarantee-cta .highlight {
    background: rgba(0,0,0,0.2);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
}
#guarantee-cta .cta-button {
    margin-top: 15px;
    background: var(--white);
    color: var(--dark);
    width: auto;
    font-size: 20px;
    padding: 20px 40px;
}
#guarantee-cta .cod-info {
    color: var(--white);
}

/* FAQ Section */
#faq-section details {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}
#faq-section summary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#faq-section summary::-webkit-details-marker {
    display: none;
}
#faq-section summary::after {
    content: '+';
    font-size: 24px;
    color: var(--primary);
}
#faq-section details[open] summary::after {
    content: '−';
}
#faq-section .faq-answer {
    padding: 0 20px 20px 20px;
    color: #666;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    background-color: var(--dark);
    color: var(--text-light);
}
footer h2 {
    margin-bottom: 10px;
}
footer p {
    margin: 10px 0;
    opacity: 0.7;
}
.payment-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.payment-logos img {
    height: 30px;
}

/* Proof Section */
#proof-section {
    background-color: var(--dark);
}
#proof-section .section-title {
    color: var(--primary);
}
.proof-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.proof-points h4 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 5px;
    text-transform: none;
}
.proof-points p {
    text-transform: none;
    opacity: 0.9;
}
.proof-video {
    flex: 1;
    min-width: 200px;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.proof-video iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: none;
}
.proof-points {
    flex: 1;
    min-width: 300px;
    text-align: left;
    color: var(--text-light);
    align-self: center;
}
#fit-guarantee .feature-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
#fit-guarantee .feature-card h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 10px;
}

/* Chat Proof Section */
#chat-proof {
    background: #f9f9f9;
}
.chat-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}
.chat-bubble {
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 80%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.chat-bubble p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
}
.chat-bubble.user {
    background-color: #E1F5FE;
    border-radius: 15px 15px 0 15px;
    float: right;
    clear: both;
}
.chat-bubble.agent {
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 15px 15px 15px 0;
    float: left;
    clear: both;
}
.chat-container::after {
    content: "";
    display: table;
    clear: both;
}

/* Mobile Responsive - Deferred Media Queries */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 50px 0;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .sizing-grid, .our-mission {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    .our-mission img {
        margin-bottom: 20px;
    }
    .timeline::after {
        left: 10px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 10px;
    }
    .timeline-item.left, .timeline-item.right {
        left: 0;
        text-align: left;
    }
    .timeline-item.left::after, .timeline-item.right::after {
        left: 1px;
    }
    /* Proof section mobile */
    #proof-section .container > div[style*="display: flex"] {
        flex-direction: column;
        align-items: center;
    }
    .proof-video {
        max-width: 320px;
        width: 100%;
    }
    .proof-points {
        text-align: center;
        margin-top: 30px;
    }
}
