/* --- CSS Reset & Global Variables --- */
:root {
    --brand-red: #D92E34;
    --brand-red-dark: #a52327;
    --brand-yellow: #F7C02B;
    --dark-text: #1a1a1a;
    --body-text: #4c4c4c;
    --bg-cream: #FFFBF2;
    --bg-mint: #E6F4F1;
    --bg-peach: #FFEAE3;
    --bg-yellow-light: #FFF8E1;
    --stroke-color: #E6E6E6;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Figtree', sans-serif;
    --transition-smooth: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 10px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 25px rgba(0,0,0,0.06);
    --shadow-lg: 0 15px 40px rgba(0,0,0,0.1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    background-color: var(--bg-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- General Components --- */
.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.25rem, 5vw, 3rem);
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.cta-button i {
    font-size: 1.2em;
}

.cta-button.primary {
    background: linear-gradient(45deg, #e6383e, var(--brand-red));
    color: white;
    box-shadow: var(--shadow-md);
}
.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(217, 46, 52, 0.25);
}
.cta-button.primary.large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--dark-text);
    border-color: var(--stroke-color);
}
.cta-button.secondary:hover {
    border-color: var(--dark-text);
    background-color: var(--dark-text);
    color: white;
    transform: translateY(-3px);
}

.cta-button.full-width {
    width: 100%;
    max-width: 300px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, var(--bg-mint), #d1e8e4);
    color: var(--brand-red);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}
.icon-wrapper i, .icon-wrapper svg {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

/* --- Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease-out;
}
.main-header.scrolled, .main-header.scrolled-alt {
    background-color: rgba(255, 251, 242, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 50px;
    transition: transform 0.3s ease, height 0.4s ease-out;
}
.main-header.scrolled .logo img {
    height: 45px;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.main-nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--dark-text);
    position: relative;
    transition: color 0.3s ease;
    padding: 0.6rem 1.1rem;
    border-radius: 50px;
}
.main-nav a:hover {
    background-color: rgba(255,255,255,0.95);
    color: var(--brand-red);
    text-shadow: none;
}
.main-header.scrolled .main-nav a:hover {
    background-color: var(--brand-red);
    color: white;
}
.main-header .main-nav a {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.main-header.scrolled .main-nav a,
.main-header.scrolled-alt .main-nav a {
    color: var(--dark-text);
    text-shadow: none;
}
.main-nav a.active {
    color: var(--brand-yellow);
}
.main-header.scrolled .main-nav a.active,
.main-header.scrolled-alt .main-nav a.active {
    color: var(--brand-red);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.cart-button {
    position: relative;
    color: var(--dark-text);
    transition: color 0.3s ease;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.main-header .cart-button, .main-header .user-greeting {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.main-header.scrolled .cart-button,
.main-header.scrolled-alt .cart-button {
    color: var(--dark-text);
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: var(--brand-yellow);
    color: var(--dark-text);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    border: 2px solid var(--bg-cream);
}
.cart-badge.visible {
    transform: scale(1);
    opacity: 1;
}
.mobile-nav-toggle { display: none; }
.header-cta { display: inline-flex; }

/* --- Hero Sections (General & Page Specific) --- */
.hero-section, .page-hero-section {
    background: linear-gradient(160deg, #e74b51 0%, #a52327 100%);
    padding: 10rem 0 6rem 0;
    overflow: hidden;
    position: relative;
    color: white;
}
.hero-background-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-container, .page-hero-container {
    position: relative;
    z-index: 1;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}
.hero-text .hero-title, .hero-text .hero-subtitle {
    color: #FFFFFF;
}
.hero-subtitle, .page-hero-subtitle {
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-size: 1.125rem;
    margin-left: auto;
    margin-right: auto;
}
.hero-text .tagline {
    font-weight: 600;
    color: var(--brand-yellow);
    margin-bottom: 1rem;
    font-size: 1.2em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.hero-title, .page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.75rem, 5.5vw, 4.25rem);
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}
.page-hero-section { text-align: center; }
.page-hero-title { color: white; }
.page-hero-subtitle { color: white; }

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.highlight-splash {
    color: var(--brand-yellow);
}
.hero-actions .secondary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}
.hero-actions .secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
}
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}
.blob-shape {
    position: absolute;
    border-radius: 41% 59% 45% 55% / 53% 52% 48% 47%;
    animation: morph 18s linear infinite alternate;
    z-index: 0;
    opacity: 0.1;
}
.hero-blob-1 {
    width: 90%;
    height: 90%;
    background-color: var(--bg-peach);
}
.hero-blob-2 {
    width: 70%;
    height: 70%;
    background-color: var(--bg-yellow-light);
    animation-direction: reverse;
    opacity: 0.15;
}
.hero-image-ring-wrapper {
    position: relative;
    z-index: 2;
}
.hero-image-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 125%;
    height: 125%;
    border: 2px dashed rgba(247, 192, 43, 0.5);
    border-radius: 50%;
    animation: spin 60s linear infinite;
}
.hero-product-image {
    width: 100%;
    max-width: 400px;
    position: relative;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}
.hero-deco {
    position: absolute;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}
.strawberry { width: 180px; top: 10%; left: 0; animation-delay: 0s; }
.mango { width: 80px; top: 20%; right: 5%; transform: rotate(10deg); animation-delay: 1s; }
.leaf-1 { width: 80px; bottom: 15%; left: 5%; transform: rotate(25deg); animation-delay: 2s; }
.leaf-2 { width: 200px; bottom: 0%; right: -5%; transform: rotate(-20deg); animation-delay: 3s;}


/* --- Story Section --- */
.story-section {
    padding: 7rem 0;
    overflow: hidden;
    position: relative;
}
.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E6F4F1' fill-opacity='0.4'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}
.story-block, .story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}
.story-block + .story-block { margin-top: 8rem; }
.story-block-reverse .story-image-wrapper { grid-area: 1 / 2 / 2 / 3; }
.story-block-reverse .story-text { grid-area: 1 / 1 / 2 / 2; }
.story-image-wrapper { position: relative; }
.story-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.story-image-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background-color: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    width: 280px;
    border: 1px solid var(--stroke-color);
    z-index: 3;
}
.story-image-card h4 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    font-size: 1.125rem;
}
.story-text p { margin-bottom: 1.5rem; }
.story-text p:last-of-type { margin-bottom: 2rem; }
.story-bg-shape {
    position: absolute;
    border-radius: 61% 39% 59% 41% / 43% 45% 55% 57%;
    z-index: 0;
    opacity: 0.15;
    animation: morph 20s linear infinite alternate;
}
.shape-1 {
    width: 120%;
    height: 120%;
    background-color: var(--bg-peach);
    top: -20%;
    left: -20%;
}
.shape-2 {
    width: 120%;
    height: 120%;
    background-color: var(--bg-mint);
    bottom: -20%;
    right: -20%;
    animation-direction: reverse;
}

/* --- Product Section --- */
.product-section, .related-products-section {
    padding: 7rem 0;
    background-color: var(--bg-peach);
    overflow: hidden;
}
.product-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}
.product-grid, .product-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.product-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    padding: 2rem;
    transition: var(--transition-smooth);
    background-color: white;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--stroke-color);
}
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}
.product-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    transition: var(--transition-smooth);
}
.product-card:hover .product-card-bg {
    transform: scale(1.5);
    opacity: 0.3;
}
.bg-leci { background-color: var(--bg-peach); }
.bg-stick { background-color: var(--bg-yellow-light); }
.bg-greek { background-color: #E3F2FF; }
.product-image-container {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}
.product-card-image {
    width: 80%;
    margin: 0 auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}
.product-card:hover .product-card-image {
    transform: scale(1.15) rotate(5deg);
}
.product-card-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.product-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--dark-text);
    margin-bottom: 0rem;
}
.product-footer {
    text-align: center;
    margin-top: 4rem;
}
.product-card-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}
.btn-detail {
    font-weight: 600;
    color: var(--brand-red);
    text-decoration: none;
    position: relative;
}
.btn-detail::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--brand-red);
    transition: width 0.3s ease;
}
.btn-detail:hover::after {
    width: 100%;
}
.btn-add-to-cart {
    background-color: var(--brand-red);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-add-to-cart:hover {
    transform: scale(1.1);
    background-color: #b82227;
}

/* --- Poster Section --- */
.poster-section {
    padding: 7rem 0;
    background-color: var(--bg-cream);
    text-align: center;
}
.poster-grid {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}
.poster-card {
    max-width: 900px;
    width: 100%;
}
.poster-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.poster-image:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* --- Blog & Article Sections --- */
.blog-section, .article-list-section {
    padding: 7rem 0;
    background-color: var(--bg-cream);
}
.blog-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}
.slider-wrapper { position: relative; }
.blog-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.5rem;
    scrollbar-width: none;
    cursor: grab;
}
.blog-slider:active { cursor: grabbing; }
.blog-slider::-webkit-scrollbar { display: none; }
.blog-card {
    flex: 0 0 30%;
    min-width: 300px;
    scroll-snap-align: start;
    background-color: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--stroke-color);
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}
.blog-card-content { padding: 1.5rem; }
.blog-card-category {
    display: inline-block;
    background-color: var(--bg-peach);
    color: var(--brand-red);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-text);
    line-height: 1.4;
    margin-bottom: 1rem;
}
.read-more {
    font-weight: 600;
    color: var(--brand-red);
    transition: letter-spacing 0.3s ease;
}
.blog-card:hover .read-more { letter-spacing: 0.5px; }
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--stroke-color);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    font-size: 1.2rem;
}
.slider-nav:hover {
    background-color: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}
.slider-nav.prev { left: -25px; }
.slider-nav.next { right: -25px; }

/* --- Benefits Section --- */
.benefits-section {
    padding: 7rem 0;
    overflow: hidden;
}
.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 5rem;
}
.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--stroke-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.benefit-item h4 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

/* --- Pre-Footer CTA --- */
.pre-footer-cta {
    background-color: var(--bg-peach);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pre-footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(217,46,52,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: spin 30s linear infinite;
}
.cta-container { position: relative; }
.cta-container h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--dark-text);
    margin-bottom: 1rem;
}
.cta-container p {
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
}
.cta-container h2, .cta-container p, .cta-container .cta-button {
    position: relative;
    z-index: 1;
}

/* --- Footer --- */
.main-footer {
    padding: 7rem 0 3rem 0;
    background-color: #1c1c1c;
    color: rgba(255,255,255,0.6);
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}
.footer-links a, .footer-contact a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    position: relative;
}
.footer-links a:hover, .footer-contact a:hover {
    color: white;
    padding-left: 8px;
}
.footer-social {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.footer-social a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 24px;
}
.footer-social a:hover {
    color: white;
    transform: scale(1.1);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* --- Animations & Transitions --- */
[data-animation] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
[data-animation].is-visible {
    opacity: 1;
    transform: none;
}
[data-animation="fade-up"] { transform: translateY(40px); }
[data-animation="fade-down"] { transform: translateY(-40px); }
[data-animation="fade-left"] { transform: translateX(40px); }
[data-animation="fade-right"] { transform: translateX(-40px); }
[data-animation="zoom-in"] { transform: scale(0.9); }
[data-animation="zoom-out"] { transform: scale(1.1); }
[data-animation="fade"] { transform: scale(0.95); }

@media (prefers-reduced-motion: reduce) {
  [data-animation] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@keyframes morph {
    0% { border-radius: 41% 59% 45% 55% / 53% 52% 48% 47%; }
    100% { border-radius: 61% 39% 59% 41% / 43% 45% 55% 57%; }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- ARTICLE PAGE SPECIFIC --- */
.article-hero-section {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-bottom: 4rem;
}
.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
}
.article-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}
.article-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.article-meta {
    font-size: 0.875rem;
    opacity: 0.9;
}
.article-content-section {
    padding: 6rem 0;
}
.article-container {
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 2rem;
}
.article-body {
    grid-column: 2;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}
.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--dark-text);
    margin: 3rem 0 1.5rem 0;
}
.article-body ul, .article-body ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}
.article-body li {
    margin-bottom: 0.75rem;
}
.article-body blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--brand-red);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--dark-text);
}
.social-share {
    grid-column: 1;
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.social-share span {
    font-size: 0.75rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #aaa;
}
.social-share a {
    color: var(--body-text);
    transition: var(--transition-smooth);
}
.social-share a:hover {
    color: var(--brand-red);
    transform: scale(1.2);
}
.featured-article-card {
    margin-bottom: 4rem;
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.featured-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.featured-article-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-decoration: none;
    color: inherit;
}
.featured-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-article-content {
    padding: 3rem;
}
.featured-article-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--dark-text);
    margin: 1rem 0;
}
.featured-article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- PRODUCT DETAIL PAGE SPECIFIC --- */
.product-detail-section {
    padding: 10rem 0 6rem 0;
}
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}
.main-image-wrapper {
    background-color: var(--bg-mint);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1rem;
}
.main-product-image {
    width: 100%;
    transition: transform 0.5s ease;
}
.thumbnail-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.thumbnail-image {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--stroke-color);
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.6;
}
.thumbnail-image:hover, .thumbnail-image.active {
    border-color: var(--brand-red);
    opacity: 1;
}
.product-info-category {
    display: inline-block;
    background-color: var(--bg-peach);
    color: var(--brand-red);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.product-info-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.product-info-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}
.product-benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}
.product-benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.product-benefits-list svg {
    color: var(--brand-red);
    flex-shrink: 0;
}
.product-actions {
    display: flex;
    gap: 1rem;
}
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--stroke-color);
    border-radius: 50px;
}
.quantity-selector button {
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    background: none;
    font-size: 1.125rem;
    font-weight: 600;
    -moz-appearance: textfield;
}
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.btn-add-to-cart-detail {
    flex: 1;
}
.product-tabs-section {
    padding: 0 0 6rem 0;
}
.tabs-nav {
    border-bottom: 1px solid var(--stroke-color);
    margin-bottom: 2rem;
}
.tab-link {
    padding: 1rem 0;
    margin-right: 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--body-text);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.tab-link.active, .tab-link:hover {
    color: var(--dark-text);
    border-bottom-color: var(--brand-red);
}
.tab-pane { display: none; }
.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* --- PRODUCT PAGE SPECIFIC --- */
.product-gallery-section { padding: 6rem 0; }
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}
.filter-btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--stroke-color);
    background-color: transparent;
    color: var(--body-text);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.filter-btn:hover {
    background-color: var(--bg-peach);
    border-color: var(--bg-peach);
}
.filter-btn.active {
    background-color: var(--brand-red);
    color: white;
    border-color: var(--brand-red);
}
.product-card.hide { display: none; }
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--brand-yellow);
  color: var(--dark-text);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
}

/* --- PARTNERSHIP PAGE SPECIFIC --- */
.mitra-hero-section {
    background-color: var(--bg-cream);
    padding: 10rem 0 6rem 0;
}
.mitra-hero-section .hero-subtitle {
    color: var(--body-text);
}
.mitra-hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mitra-hero-image-container img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    max-height: 450px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}
.mitra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}
.mitra-card {
    background-color: white;
    border: 2px solid var(--stroke-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.mitra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.mitra-card.featured {
    border-color: var(--brand-red);
    transform: scale(1.05);
    position: relative;
    box-shadow: 0 20px 40px rgba(217, 46, 52, 0.15);
}
.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-red);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}
.mitra-card h3 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.mitra-card-desc {
    margin-bottom: 2rem;
    flex-grow: 1;
}
.mitra-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    flex-grow: 1;
}
.mitra-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.mitra-features svg {
    color: var(--brand-red);
    flex-shrink: 0;
}
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
}
.step-item {
    text-align: center;
    max-width: 200px;
}
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-mint);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem auto;
    border: 3px solid var(--stroke-color);
}
.step-item h4 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    font-size: 1.25rem;
}
.step-arrow {
    font-size: 2.5rem;
    color: var(--stroke-color);
    margin-top: 10px;
}
.mitra-form {
    max-width: 800px;
    margin: 2rem auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-full-width {
    grid-column: 1 / -1;
}
.mitra-form label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}
.mitra-form input,
.mitra-form select,
.mitra-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--stroke-color);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.mitra-form input:focus,
.mitra-form select:focus,
.mitra-form textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(217, 46, 52, 0.1);
}
.mitra-form .cta-button {
    max-width: none;
    margin-top: 1rem;
}

/* --- CART PAGE SPECIFIC --- */
.cart-section {
    padding: 6rem 0;
}
.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 1.5rem;
    background-color: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: var(--bg-mint);
    border-radius: 12px;
}
.cart-item-details h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}
.cart-item-price {
    font-weight: 600;
}
.cart-item-subtotal {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--dark-text);
}
.cart-item-remove {
    background-color: var(--bg-peach);
    color: var(--brand-red);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.cart-item-remove:hover {
    background-color: var(--brand-red);
    color: white;
    transform: rotate(90deg);
}
.order-summary {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 120px;
}
.order-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--stroke-color);
    padding-bottom: 1rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.summary-row.total {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--stroke-color);
}
.order-summary .cta-button {
    margin-top: 1rem;
}
.cart-empty-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
}
.cart-empty-message h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

/* --- PAGINATION --- */
.pagination-wrapper {
    margin-top: 3rem;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    gap: 0.5rem;
}
.page-item .page-link, .page-item span.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark-text);
    background-color: white;
    border: 1px solid var(--stroke-color);
    transition: var(--transition-smooth);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.page-item .page-link:hover {
    background-color: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
    box-shadow: 0 4px 10px rgba(217,46,52,0.2);
}
.page-item.active .page-link, .page-item.active span.page-link {
    background-color: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
    cursor: default;
}
.page-item.disabled .page-link, .page-item.disabled span.page-link {
    background-color: #f8f9fa;
    color: #adb5bd;
    border-color: var(--stroke-color);
    cursor: not-allowed;
}
.page-item .page-link svg, .page-item span.page-link svg {
    width: 0.9rem;
    height: 0.9rem;
}

/* --- TOAST NOTIFICATION --- */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--dark-text);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transform: translateY(200%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 200;
}
.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    section { padding: 5rem 0; }
    .container { padding: 0 2rem; }

    .mobile-nav-toggle { 
        display: flex; 
        position: relative;
        flex-direction: column; 
        gap: 6px; 
        background: none; 
        border: none; 
        width: 24px; 
        height: 18px;
        cursor: pointer; 
        z-index: 1001;
    }
    .mobile-nav-toggle span { 
        display: block; 
        height: 3px; 
        background-color: var(--dark-text);
        width: 100%; 
        transition: all 0.3s ease-in-out; 
        border-radius: 3px;
        transform-origin: center;
    }
    .main-header.scrolled .mobile-nav-toggle span { background-color: var(--dark-text); }
    body.nav-open .mobile-nav-toggle span { background-color: white; }
    body.nav-open .mobile-nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    body.nav-open .mobile-nav-toggle span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
    body.nav-open .mobile-nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    .navigation-wrapper {
        position: fixed; top: 0; right: 0;
        width: 80%; max-width: 320px; height: 100vh;
        background: linear-gradient(160deg, var(--brand-red-dark), #1c1c1c);
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
        z-index: 1000; display: flex; flex-direction: column;
        align-items: center; justify-content: flex-start;
        padding-top: 6rem; gap: 2rem;
        transform: translateX(100%); opacity: 0; visibility: hidden;
        transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
    }
    body.nav-open .navigation-wrapper { transform: translateX(0); opacity: 1; visibility: visible; }
    body::before {
        content: ""; position: fixed; inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 900;
    }
    body.nav-open::before { opacity: 1; visibility: visible; }
    .main-nav, .mobile-nav {
        flex-direction: column; align-items: flex-start;
        gap: 1.5rem; padding: 0 2rem; width: 100%;
    }
    .main-nav a {
        font-size: 1.2rem; font-weight: 600;
        color: white; text-decoration: none;
        transition: color 0.3s ease;
    }
    .main-nav a:hover { color: var(--brand-yellow); }
    .main-nav a::after { display: none; }
    .header-actions {
        flex-direction: column; align-items: center; gap: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem; width: 80%; max-width: 300px;
    }
    .hero-section { padding-top: 8rem; }
    .hero-container, .benefits-container, .story-container, .story-block, .story-block-reverse { 
        grid-template-columns: 1fr; gap: 4rem; 
    }
    .hero-image-container { grid-row: 1; margin-bottom: 2rem; min-height: auto; }
    .hero-text, .story-text, .benefits-text, .blog-header, .product-header, .mitra-hero-section { text-align: center; }
    .story-block .story-image-wrapper, .story-block-reverse .story-image-wrapper { order: -1; }
    .story-block-reverse .story-image-wrapper, .story-block-reverse .story-text { grid-area: auto; }
    .slider-nav, .social-share { display: none; }
    .footer-main { grid-template-columns: 1fr; text-align: center; gap: 3.5rem; }
    .footer-about { display: flex; flex-direction: column; align-items: center; }
    .article-container { grid-template-columns: 1fr; }
    .article-body { grid-column: 1; }
    .featured-article-link { grid-template-columns: 1fr; }
    .featured-article-image { height: 300px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .mitra-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
    .mitra-card.featured { transform: scale(1); }
    .steps-container { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); margin: -1rem 0; }
    .mitra-form { grid-template-columns: 1fr; }
    .cart-container { grid-template-columns: 1fr; }
    .order-summary { position: static; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .hero-deco { display: none; }
    .story-image-card {
        position: relative; width: 90%;
        right: auto; bottom: auto;
        margin: -2rem auto 0 auto; z-index: 2;
    }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .blog-card { flex: 0 0 80%; min-width: 280px; }
    .product-filters { flex-wrap: wrap; }
    .cart-item {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.5rem 1rem;
    }
    .cart-item-image { grid-row: 1 / 3; }
    .cart-item-subtotal { grid-column: 3; grid-row: 1; text-align: right; }
    .cart-item-remove { grid-column: 3; grid-row: 2; justify-self: end; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .product-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .benefit-item { flex-direction: column; align-items: center; text-align: center; }
    .header-cta, .user-greeting form { width: 100%; }
    .header-cta, .user-greeting button { width: 100%; text-align: center; }
}

/* ... (Semua gaya dari style.css asli Anda ada di sini) ... */

/* --- HALAMAN TENTANG KAMI (digabungkan dari style1.css) --- */

/* Journey Section (Timeline) */
.journey-section {
    padding: 7rem 0;
    background-color: var(--bg-peach);
}
.journey-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--stroke-color);
    top: 10px;
    bottom: 10px;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}
.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--bg-cream);
    border: 4px solid var(--brand-red);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--bg-mint);
}
.timeline-item:nth-child(odd)::after {
    right: -12px;
}
.timeline-item:nth-child(even)::after {
    left: -12px;
}
.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-red);
}
.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-top: 0.5rem;
}

/* Values Section */
.values-section {
    padding: 7rem 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: center;
}
.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}
.value-item .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.gallery-section {
    padding: 7rem 0;
    overflow: hidden;
}
.gallery-section .section-title {
    text-align: center;
}
.behind-scenes-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Penyesuaian Responsif (digabungkan) --- */
@media (max-width: 992px) {
    /* ... (Aturan responsif dari style.css asli) ... */

    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 1rem; left: 0 !important; text-align: left !important; }
    .timeline-item:nth-child(odd)::after, .timeline-item:nth-child(even)::after { left: 8px !important; }
}

/* --- Active Nav Link --- */
.main-nav a.active {
    color: var(--brand-red);
}
.main-header.scrolled .main-nav a.active {
    background-color: var(--brand-red);
    color: white;
}
.main-nav a.active:hover {
    /* Optional: slightly different hover for active link */
    transform: scale(1.05);
}


/* --- User Dropdown --- */
.user-dropdown {
    position: relative;
}
.dropdown-trigger {
    background-color: transparent;
    border: none;
    color: inherit; /* Mengambil warna dari parent (putih atau hitam) */
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}
.dropdown-trigger:hover {
    background-color: rgba(0,0,0,0.05);
}
.main-header:not(.scrolled) .dropdown-trigger:hover {
    background-color: rgba(255,255,255,0.1);
}
.dropdown-trigger svg {
    transition: transform 0.3s ease;
}
.dropdown-trigger.active svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--stroke-color);
    width: 220px;
    padding: 0.75rem;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-info {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--body-text);
    border-bottom: 1px solid var(--stroke-color);
    margin-bottom: 0.5rem;
}
.dropdown-info strong {
    color: var(--dark-text);
}
.dropdown-menu a,
.dropdown-menu button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--dark-text);
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.dropdown-menu a:hover,
.dropdown-menu button:hover {
    background-color: var(--bg-peach);
    color: var(--brand-red);
}

/* Style untuk daftar fitur di halaman mitra (digunakan ulang di kisah sukses) */
.mitra-features svg {
    color: var(--brand-red);
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- Video Section --- */
.video-section {
    padding: 7rem 0;
    background-color: var(--bg-peach);
    text-align: center;
}
.video-header {
    max-width: 600px;
    margin: 0 auto 4rem auto;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    background-color: #000;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Penyesuaian Responsif untuk Video */
@media (max-width: 992px) {
    .video-section {
        padding: 5rem 0;
    }
}