/* Global Font Settings */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Pricing Gallery Wall Layout */
.pricing-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2.5rem;
    margin: 3rem auto 4rem auto;
    max-width: 1100px;
    position: relative;
}

.pricing-card-center {
    transform: scale(1.13) translateY(-18px) rotate(-2deg);
    z-index: 2;
    box-shadow: none;
    border: 2.5px solid var(--penguin-orange-400);
    background: #fffdfa;
    outline: none;
    opacity: 1;
    transition: transform 0.35s cubic-bezier(.4, 2, .6, 1), box-shadow 0.35s, background 0.3s;
}

.pricing-card-side {
    z-index: 1;
    opacity: 0.62;
    filter: blur(0.5px) grayscale(0.25) brightness(0.97) saturate(0.7);
    transition: transform 0.35s cubic-bezier(.4, 2, .6, 1), opacity 0.3s, filter 0.3s, box-shadow 0.3s;
}

.pricing-card-side:first-child {
    transform: scale(0.93) translateY(22px) rotate(-7deg);
    box-shadow: -8px 16px 32px -8px rgba(60, 60, 120, 0.10), 0 0 0 4px var(--penguin-blue-50);
}

.pricing-card-side:last-child {
    transform: scale(0.93) translateY(22px) rotate(7deg);
    box-shadow: 8px 16px 32px -8px rgba(249, 115, 22, 0.10), 0 0 0 4px var(--penguin-orange-50);
}

.pricing-card-side:hover {
    transform: scale(1.04) translateY(-8px) rotate(0deg);
    opacity: 1;
    filter: none;
    z-index: 3;
    box-shadow: 0 8px 32px -8px rgba(60, 60, 120, 0.13), 0 0 0 6px var(--penguin-orange-100);
}

.pricing-gallery .pricing-card {
    min-width: 290px;
    max-width: 340px;
    flex: 1 1 0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fixed Bottom Order Bar */
.fixed-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.order-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 1.5rem;
}

.order-details {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.order-action {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-guarantees {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.order-guarantee {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.order-guarantee .guarantee-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1rem;
    color: white;
}

.order-guarantees .order-guarantee:nth-child(1) .guarantee-icon {
    background: #22c55e;
    margin-top: 14px;
}

.order-guarantees .order-guarantee:nth-child(2) .guarantee-icon {
    background: #3b82f6;
    margin-top: 14px;
}

.order-guarantees .order-guarantee:nth-child(3) .guarantee-icon {
    background: #f97316;
    margin-top: 14px;
}

.order-product {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.order-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--penguin-orange-500);
    width: 70px;
}

.order-btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    background: var(--penguin-orange-500);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.order-btn:hover {
    background: var(--penguin-orange-600);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Add bottom padding to body to prevent content overlap */
body {
    padding-bottom: 70px;
}

/* Responsive body padding */
@media (max-width: 768px) {
    body {
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 45px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .fixed-order-bar {
        padding: 0.5rem 0;
    }

    .order-bar-content {
        padding: 0 16px;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
    }

    .order-details {
        display: none;
    }

    .order-action {
        width: 100%;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .order-info {
        flex: 1;
    }

    .order-product {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .order-price {
        font-size: 1.1rem;
        font-weight: 700;
        width: auto;
        min-width: 60px;
    }

    .order-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .fixed-order-bar {
        padding: 0.4rem 0;
    }

    .order-bar-content {
        padding: 0 12px;
        gap: 0.5rem;
    }

    .order-product {
        font-size: 0.8rem;
    }

    .order-price {
        font-size: 1rem;
        min-width: 50px;
    }

    .order-btn {
        padding: 0.45rem 1rem;
        font-size: 0.5rem;
        width: 120px !important;
    }
}

/* Custom CSS Variables */
:root {
    --penguin-orange-50: #fff8f0;
    --penguin-orange-100: #fff0e0;
    --penguin-orange-200: #ffe0c0;
    --penguin-orange-300: #ffd0a0;
    --penguin-orange-400: #ffc080;
    --penguin-orange-500: #ff6b35;
    --penguin-orange-600: #e55a2b;
    --penguin-orange-700: #cc4921;

    --penguin-blue-50: #f0f8ff;
    --penguin-blue-100: #e0f0ff;
    --penguin-blue-200: #c0e0ff;
    --penguin-blue-300: #a0d0ff;
    --penguin-blue-400: #80c0ff;
    --penguin-blue-500: #4a90e2;
    --penguin-blue-600: #3a7bc8;
    --penguin-blue-700: #2a66ae;

    --penguin-green-50: #f0fff4;
    --penguin-green-100: #e0ffe8;
    --penguin-green-200: #c0ffd0;
    --penguin-green-300: #a0ffb8;
    --penguin-green-400: #80ffa0;
    --penguin-green-500: #32cd32;
    --penguin-green-600: #28a428;
    --penguin-green-700: #1e7b1e;

    --penguin-cream-50: #fffef8;
    --penguin-cream-100: #fffdf0;
    --penguin-cream-200: #fffbe0;
    --penguin-cream-300: #fff9d0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header and Navigation */
/* .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    height: 64px;
    min-height: 64px;
} */
.header {
    /* background: linear-gradient(90deg, #fff7ed 0%, #e0e7ff 100%); */
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 24px -8px rgba(60, 60, 120, 0.08), 0 1.5px 0 #e0e7ff;
    border-bottom: none;
    /* border-radius: 0 0 1.5rem 1.5rem; */
    /* height: 72px; */
    /* min-height: 72px; */
    /* padding: 0 0 8px 0; */
    overflow: visible;
}

/* .navbar { */
/* padding: 1rem 0; */
/* } */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo-image {
    height: 50px;
    width: auto;
    margin-right: 0.75rem;
}

.nav-logo .logo-text {
    color: var(--penguin-orange-500);
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
}

.nav-logo h1 {
    color: var(--penguin-orange-500);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-right: 2rem;
    /* line-height: 1; */
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    /* margin-bottom: 15px; */
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    transition: all 0.2s cubic-bezier(.4, 0, .2, 1);
    background: transparent;
}

.nav-link:hover {
    color: var(--penguin-blue-600);
    background: var(--penguin-blue-50);
    box-shadow: 0 2px 8px -2px rgba(60, 60, 120, 0.06);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 100%;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Introduction */
.hero-intro {
    /* max-width: 1280px; */
    /* margin: 0 auto 2rem auto; */
    padding: 0 46px;
    position: relative;
    z-index: 2;
}

.intro-card {
    /* background: linear-gradient(135deg, var(--penguin-orange-50), var(--penguin-blue-50)); */
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    /* border: 1px solid var(--penguin-orange-100); */
    border: none;
    outline: none;
    box-shadow: none;
    position: relative;
    z-index: 3;
}

.intro-badge {
    display: inline-block;
    background: var(--penguin-orange-500);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-card h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.intro-card p {
    font-size: 1rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
    border: none;
    outline: none;
    box-shadow: none;
}

/* Product Purchase Area */
.product-purchase-area {
    display: grid;
    grid-template-columns: 110px 3fr 1.8fr;
    gap: 1.5rem;
    align-items: start;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0rem 24px;
    min-height: 500px;
}

/* 左侧缩略图滚动区域 */
.thumbnail-scroll {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.5rem 0.2rem 1.25rem 0.5rem;
    background: transparent;
    border-radius: 20px;
    box-shadow: none;
    /* width: 100%;
    height: 588px; */
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.thumbnail-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.scroll-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    color: var(--penguin-orange-500);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 107, 53, 0.1);
}

.scroll-up {
    top: 113px;
}

.scroll-down {
    top: 484px;
}

.scroll-arrow:hover {
    background: linear-gradient(145deg, var(--penguin-orange-500), var(--penguin-orange-600));
    color: white;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3), 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.scroll-arrow:active {
    transform: translateX(-50%) scale(0.95);
}

.thumbnail-item {
    width: 75px;
    height: 75px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thumbnail-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover::after {
    opacity: 1;
}

.thumbnail-item.active {
    border-color: var(--penguin-orange-500);
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 248, 240, 1));
    box-shadow:
        0 8px 25px rgba(255, 107, 53, 0.25),
        0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: scale(1.05);
}

.thumbnail-item:hover:not(.active) {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--penguin-orange-300);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 中间产品原图 */
.main-product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border-radius: 32px;
    /* padding: 3rem; */
    /* width: 100%; */
    /* height: 580px; */
    position: relative;
    overflow: visible;
    cursor: crosshair;
}

.main-product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(74, 144, 226, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.main-product-image img {
    max-width: 660px;
    max-height: 660px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    mask: radial-gradient(ellipse 80% 70% at center, black 60%, transparent 100%);
    -webkit-mask: radial-gradient(ellipse 80% 70% at center, black 60%, transparent 100%);
}

/* 放大镜功能样式 */
.zoom-lens {
    position: absolute;
    border: 3px solid var(--penguin-orange-400);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    width: 150px;
    height: 150px;
    cursor: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.zoom-lens.active {
    opacity: 1;
}

.zoom-result {
    position: absolute;
    left: calc(100% + 40px);
    top: 0;
    transform: none;
    width: 520px;
    height: 520px;
    border: 3px solid var(--penguin-orange-400);
    border-radius: 24px;
    background-color: white;
    background-repeat: no-repeat;
    background-size: 640px 640px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 107, 53, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .zoom-result {
        display: none;
    }

    .zoom-lens {
        display: none;
    }

    .main-product-image:hover {
        cursor: default;
    }
}

.zoom-result.active {
    opacity: 1;
}

.zoom-result::before {
    content: '🔍 放大预览';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--penguin-orange-500), var(--penguin-orange-600));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    z-index: 1;
}

.main-product-image:hover {
    cursor: crosshair;
}

/* 右侧选择区域 */
.product-selection {
    background: transparent;
    border-radius: 24px;
    padding: 0rem 0rem 0 0rem;
    width: 100%;
    /* position: relative; */
    z-index: 10;
    height: 580px;
}

.product-selection h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1f2937, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    margin-bottom: 0rem;
    /* padding: 1rem; */
    background: transparent;
    border-radius: 12px;
    /* border-left: 4px solid var(--penguin-orange-500); */
}

.product-description p {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
}

.product-specifications {
    margin: 2px;
    padding: 12px;
    background: rgba(248, 250, 252, 0.9);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
    width: 100%;
    height: 170px;
    position: relative;
    z-index: 20;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.product-specifications .spec-content {
    max-width: 1280px;
    margin: 0 auto;
    display: contents;
}

.spec-item {
    margin-bottom: 0;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--penguin-orange-600);
}

.spec-item p {
    margin: 0;
    font-size: 0.75rem;
    color: #1f2937;
    line-height: 1.5;
    /* font-weight: 200; */
}

.product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0rem 1rem 0rem;
}

.product-header h2 {
    margin: 0;
    white-space: nowrap;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--penguin-orange-500), var(--penguin-orange-600));
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    flex: 1;
    justify-content: center;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.price-current {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.price-original {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    margin-top: 0.45rem;
}

.price-display {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--penguin-orange-50), #fff7ed);
    border-radius: 12px;
    border: 2px solid var(--penguin-orange-100);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--penguin-orange-500), var(--penguin-orange-300));
}

.current-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--penguin-orange-500);
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
}

.original-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}



.package-btn:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.package-btn.active {
    border-color: var(--penguin-orange-500);
    background: rgba(255, 255, 255, 1);
    box-shadow:
        0 8px 20px rgba(255, 107, 53, 0.2),
        0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.package-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0.25rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    gap: 1rem;
}

.package-btn-popular {
    border-color: transparent;
    background:
        linear-gradient(145deg, #ffffff, #fffaf3) padding-box,
        linear-gradient(120deg, var(--penguin-orange-400), var(--penguin-orange-200)) border-box;
    box-shadow:
        0 15px 35px rgba(255, 107, 53, 0.25),
        0 0 0 2px rgba(255, 255, 255, 0.4) inset;
    position: relative;
    overflow: visible;
}

.package-btn-popular.active {
    transform: translateY(-2px);
}

.package-popular-badge {
    position: absolute;
    top: -12px;
    right: 18px;
    background: linear-gradient(120deg, var(--penguin-orange-500), var(--penguin-orange-600));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
    text-transform: uppercase;
    z-index: 5;
}

.package-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.package-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.product-intro {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--penguin-blue-50), #f0f9ff);
    border-radius: 16px;
    font-size: 0.85rem;
    color: #4b5563;
    border: 1px solid var(--penguin-blue-100);
    margin-top: 1.5rem;
    position: relative;
}

.product-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--penguin-blue-500), var(--penguin-blue-300));
    border-radius: 16px 16px 0 0;
}

.product-intro h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.product-intro ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-intro li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    padding: 0.1rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.product-intro li:hover {
    background: rgba(255, 255, 255, 0.5);
}

.product-intro li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-purchase-area {
        grid-template-columns: 160px 3fr 2fr;
        gap: 1.5rem;
        padding: 2rem 24px;
    }

    .thumbnail-item {
        width: 80px;
        height: 80px;
    }

    .hero-container {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 !important;
    }

    .product-purchase-area {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        max-width: none;
    }

    .thumbnail-scroll {
        order: 1;
        display: flex;
        flex-direction: row;
        overflow: hidden;
        padding: 0;
        height: 60px;
        width: 100%;
        margin: 0;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 0;
        box-sizing: border-box;
    }

    .scroll-arrow {
        display: none;
    }

    .thumbnail-item {
        width: 40px;
        height: 60px;
        flex-shrink: 0;
        margin: 0;
        border-radius: 0;
    }

    .main-product-image {
        order: 2;
        padding: 0;
        margin: 0;
        border-radius: 0;
        height: 380px;
        width: 100%;
    }

    .main-product-image img {
        max-width: 100%;
        max-height: 100%;
    }

    .product-selection {
        order: 3;
        padding: 0;
        margin: 0;
        height: auto;
        border-radius: 0;
    }

    .zoom-result {
        display: none;
    }

    .package-options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .package-btn {
        display: flex;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
    }

    .package-img {
        width: 50px;
        height: 50px;
    }

    .package-name {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .price-section {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .price-current {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 !important;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .product-purchase-area {
        padding: 0;
        gap: 0;
        margin: 0;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }

    .product-specifications {
        margin: 2px;
        padding: 12px;
        background: rgba(248, 250, 252, 0.9);
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        text-align: left;
        width: 100%;
        height: auto;
        /* height: 170px; */
        position: relative;
        z-index: 20;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
    }

    .thumbnail-scroll {
        order: 1;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.25rem;
        height: 60px;
        width: 100%;
        max-width: 100%;
        gap: 0.3rem;
        margin: 0;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 0;
        box-sizing: border-box;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .thumbnail-scroll::-webkit-scrollbar {
        display: none;
    }

    .thumbnail-item {
        width: 55px;
        height: 55px;
        margin: 2px 0;
        border-radius: 0;
        flex-shrink: 0;
        min-width: 55px;
    }

    .main-product-image {
        padding: 0;
        margin: 0;
        border-radius: 0;
        height: 380px;
        width: 100%;
    }

    .main-product-image img {
        max-width: 100%;
        max-height: 100%;
    }

    .product-selection {
        padding: 8px;
        margin: 0;
        border-radius: 0;
    }

    .product-selection h2 {
        font-size: 1.5rem;
    }

    .package-options {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .package-btn {
        display: flex;
        align-items: center;
        padding: 0.5rem;
        gap: 1rem;
    }
}

.hero {
    min-height: 700px;
    padding-top: 70px;
    padding-bottom: 40px;
    /* background: var(--penguin-cream-50) url('public/images/penguin-world-bundle.png') no-repeat center right; */
    background-size: contain;
    position: relative;
    display: block;
    align-items: unset;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--penguin-orange-100);
    opacity: 0.2;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--penguin-blue-300);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 80%;
    animation-delay: 4s;
}

.hero-container {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 3rem; */
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
    /* position: relative; */
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--penguin-orange-100);
    color: var(--penguin-orange-700);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-pulse {
    margin-right: 0.5rem;
    font-size: 1rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

.badge-highlight {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.title-line-1 {
    display: block;
    opacity: 0;
    animation: slideInFromLeft 0.8s ease-out 0.2s forwards;
}

.title-line-2 {
    display: block;
    opacity: 0;
    animation: slideInFromLeft 0.8s ease-out 0.4s forwards;
}

.title-emphasis {
    display: block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--penguin-orange-600);
    margin-top: 0.5rem;
    opacity: 0;
    animation: slideInFromLeft 0.8s ease-out 0.6s forwards;
}

.gradient-text {
    color: var(--penguin-orange-600);
    font-weight: 700;
}

.hero-description {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.highlight-text {
    color: var(--penguin-orange-600);
    font-weight: 600;
    background: var(--penguin-orange-100);
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideInFromBottom 0.8s ease-out 1s forwards;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--penguin-orange-600);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInFromBottom 0.8s ease-out 1.2s forwards;
}

.feature-highlight {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--penguin-orange-300);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.15);
}

.feature-highlight .feature-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.feature-icon {
    font-size: 1.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Product Showcase */
.hero-product {
    position: relative;
}

.product-showcase {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.product-image {
    width: 192px;
    height: 208px;
    background: var(--penguin-cream-50);
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--penguin-cream-200);
    /* margin: 0 auto 1.5rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0rem;
}

.product-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--penguin-cream-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--penguin-orange-500);
    width: 24px;
    border-radius: 4px;
}

.product-decorations {
    position: absolute;
}

.decoration {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.8;
}

.decoration-1 {
    top: -1rem;
    right: -1rem;
    background: var(--penguin-green-400);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.decoration-2 {
    bottom: -1rem;
    left: -1rem;
    background: var(--penguin-orange-400);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--penguin-orange-500);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--penguin-orange-700);
    border: 2px solid var(--penguin-orange-300);
}

.btn-secondary:hover {
    background: var(--penguin-orange-300);
    color: white;
    border-color: var(--penguin-orange-300);
}

.arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.play {
    font-size: 0.875rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--penguin-orange-100);
    color: var(--penguin-orange-700);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-icon {
    margin-right: 0.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    /* background: white url('public/images/penguin-world-bundle.png') no-repeat center; */
    background-size: cover;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.feature-card>* {
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    background: var(--penguin-green-400);
    border-radius: 50%;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.4;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    width: 16px;
    height: 16px;
    background: var(--penguin-orange-400);
    border-radius: 50%;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 0.4;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--penguin-orange-500);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}



.benefit {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.benefit::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--penguin-orange-300);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.features-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-card {
    background: var(--penguin-orange-50);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--penguin-blue-500);
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: white;
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-info p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Footer */
.footer {
    background: #2d3436;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #636e72;
    color: #b2bec3;
}

/* Chat Section */
.chat-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.chat-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.chat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.chat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chat-avatar {
    margin-bottom: 1.5rem;
}

.chat-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--penguin-orange-200);
}

.chat-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.sub-chat-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--penguin-orange-600);
    margin-bottom: 1rem;
}

.chat-description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.chat-button-wrapper {
    position: relative;
    display: inline-block;
}

.free-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.chat-button {
    background: linear-gradient(135deg, var(--penguin-orange-500) 0%, var(--penguin-orange-600) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

@media (max-width: 768px) {
    .chat-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .chat-card {
        padding: 1.5rem;
    }

    .chat-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .video-controls {
        padding: 1rem 1rem 0.75rem;
    }

    .video-time {
        font-size: 0.75rem;
        min-width: 80px;
    }

    .volume-slider-container {
        display: none;
    }

    .control-button {
        padding: 0.375rem;
    }

    .video-title-content h3 {
        font-size: 1.25rem;
    }

    .video-title-content p {
        font-size: 0.875rem;
    }

    .center-play-button {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 700px;
        margin-bottom: 0;
        padding-top: 80px;
        padding-bottom: 40px;
        display: block;
    }

    .hero-title,
    .title-line-1,
    .title-line-2,
    .title-emphasis,
    .hero-description,
    .hero-stats,
    .hero-features {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .video-controls-left,
    .video-controls-right {
        gap: 0.5rem;
    }

    .video-time {
        font-size: 0.7rem;
        min-width: 70px;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--penguin-blue-50);
}

.video-container {
    max-width: 64rem;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    font-size: 2rem;
    color: var(--penguin-orange-600);
    margin-left: 4px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2rem;
    text-align: center;
}

.video-overlay h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

/* Custom Video Player */
.custom-video-player {
    position: relative;
    width: 100%;
    height: 100%;
    background: #2d3561;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.demo-video::-webkit-media-controls {
    display: none !important;
}

.demo-video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Video Title Overlay */
.video-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-title-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-title-content {
    text-align: center;
    color: white;
    pointer-events: all;
}

.center-play-button {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.center-play-button:hover {
    transform: scale(1.1);
}

.video-title-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-title-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 1.5rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-video-player:hover .video-controls,
.custom-video-player.playing .video-controls {
    opacity: 1;
}

.video-progress-container {
    width: 100%;
    margin-bottom: 0.75rem;
}

.video-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.video-progress-filled {
    height: 100%;
    background: #ea580c;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.video-controls-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-controls-left,
.video-controls-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.control-button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    border-radius: 4px;
}

.control-button:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
}

.video-time {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 100px;
}

.volume-slider-container {
    display: flex;
    align-items: center;
}

.volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #ea580c;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ea580c;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--penguin-cream-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 75rem;
    margin: 0 auto 4rem;
}

/* Pricing Grid Top Row - Full Width for Complete Bundle */
.pricing-grid-top {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.pricing-card-full {
    max-width: 500px;
    width: 100%;
}

/* Pricing Grid Bottom Row - Two Columns */
.pricing-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 75rem;
    margin: 0 auto 4rem;
}

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured {
    border-color: var(--penguin-orange-500);
    box-shadow: 0 16px 40px -8px rgba(249, 115, 22, 0.25), 0 0 0 4px var(--penguin-orange-100);
    transform: scale(1.04);
    z-index: 2;
    position: relative;
    /* outline removed for cleaner single border */
}

.pricing-card-highlight {
    animation: highlight-pop 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 0 6px var(--penguin-orange-100), 0 16px 40px -8px rgba(249, 115, 22, 0.25);
    border-width: 2.5px;
}

@keyframes highlight-pop {
    0% {
        transform: scale(1) translateY(0);
        box-shadow: 0 0 0 0 var(--penguin-orange-100);
    }

    60% {
        transform: scale(1.08) translateY(-6px);
        box-shadow: 0 0 0 12px var(--penguin-orange-100);
    }

    100% {
        transform: scale(1.04) translateY(0);
        box-shadow: 0 0 0 6px var(--penguin-orange-100);
    }
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-badge.essential {
    background: var(--penguin-blue-100);
    color: var(--penguin-blue-700);
}

.pricing-badge.character {
    background: var(--penguin-orange-100);
    color: var(--penguin-orange-700);
}

.pricing-badge.best-value {
    background: var(--penguin-green-100);
    color: var(--penguin-green-700);
}

.product-image-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.product-image-container:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--penguin-orange-200);
}

.product-image-container:hover .product-image {
    transform: scale(1.05);
}

.product-image {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
    text-align: center;
}

.product-subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.5;
    padding: 0 0.5rem;
}

.price-container {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--penguin-orange-50);
    border-radius: 1rem;
    border: 2px solid var(--penguin-orange-200);
    box-shadow: 0 2px 12px 0 rgba(249, 115, 22, 0.08);
}

.price {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--penguin-orange-600);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(249, 115, 22, 0.15);
    letter-spacing: 0.02em;
}

.price-period {
    color: #6b7280;
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.features-list {
    margin-bottom: 2rem;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.feature:hover {
    background: var(--penguin-orange-50);
    transform: translateX(4px);
}

.feature:before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--penguin-green-500);
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
}

/* Guarantees */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.guarantee-item {
    text-align: center;
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.guarantee-item:nth-child(1) .guarantee-icon {
    background: var(--penguin-green-500);
}

.guarantee-item:nth-child(2) .guarantee-icon {
    background: var(--penguin-blue-500);
}

.guarantee-item:nth-child(3) .guarantee-icon {
    background: var(--penguin-orange-500);
}

.guarantee-item h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Reviews Section */
.reviews {
    min-height: 700px;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 80px;
    background: white;
}

.reviews-carousel {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.review-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--penguin-orange-500);
    position: absolute;
    top: 1rem;
    left: 2rem;
    opacity: 0.3;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    margin-left: 4rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.review-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
    margin-left: 4rem;
}

.review-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    margin-left: 4rem;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-left: 4rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    background: var(--penguin-orange-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #374151;
    margin-right: 1rem;
}

.reviewer-name {
    font-weight: 600;
    color: #111827;
}

.reviewer-location {
    color: #6b7280;
    font-size: 0.875rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -4rem;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: #6b7280;
}

.nav-btn:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.prev-btn {
    transform: translateX(-100%);
}

.next-btn {
    transform: translateX(100%);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--penguin-orange-500);
    width: 24px;
    border-radius: 4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 64rem;
    margin: 4rem auto;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.reviews-cta p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2.5rem 0 1.25rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--penguin-orange-500);
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(156, 163, 175, 0.1);
}

.social-link:hover {
    color: var(--penguin-orange-400);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-guarantees {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        /* gap: 4rem; */
        text-align: center;
        padding: 0;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .product-showcase {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    #google_translate_element {
        display: flex !important;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .nav-container {
        height: 64px;
        padding: 0 20px;
    }

    .nav-logo h1 {
        font-size: 1.75rem;
        margin-right: 0;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2.75rem;
        line-height: 1.1;
    }

    .title-emphasis {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .stat-item {
        padding: 0.75rem 0.5rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .hero-features {
        gap: 0.5rem;
    }

    .feature-highlight {
        padding: 0.75rem;
    }

    .feature-highlight .feature-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        margin-right: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid-top {
        margin-bottom: 1.5rem;
    }

    .pricing-card-full {
        max-width: 100%;
    }

    .pricing-grid-bottom {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .carousel-nav {
        display: none;
    }

    .footer-bottom-content {
        text-align: center;
    }

    .footer-guarantees {
        flex-direction: column;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-image {
        width: 150px;
        height: 150px;
    }

    .character-options {
        gap: 0.5rem;
    }

    .character-btn {
        padding: 0.75rem;
    }

    .floating-element {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: 100svh;
        padding-top: 96px;
        padding-bottom: 30px;
    }

    .header {
        height: 56px;
        min-height: 56px;
    }

    .hero-title,
    .title-line-1,
    .title-line-2,
    .title-emphasis,
    .hero-description,
    .hero-stats,
    .hero-features {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .title-emphasis {
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .stat-item {
        padding: 0.5rem;
    }

    .hero-features {
        margin-bottom: 1.5rem;
    }

    .feature-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0.75rem;
    }

    .feature-highlight .feature-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .btn-hero .btn-text,
    .btn-hero .btn-price {
        display: block;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }

    .quote-icon {
        display: none;
    }

    .stars,
    .review-title,
    .review-text,
    .reviewer {
        margin-left: 0;
    }

    .product-card {
        padding: 1rem;
    }

    .product-image {
        width: 120px;
        height: 120px;
    }

    .character-options {
        flex-wrap: wrap;
        gap: 0.375rem;
    }

    .character-btn {
        padding: 0.5rem;
        min-width: 60px;
    }

    .char-avatar {
        font-size: 1.25rem;
    }

    .char-name {
        font-size: 0.625rem;
    }

    .trust-icons {
        gap: 0.5rem;
    }

    .trust-icon {
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Hero Styles */
.feature-highlight .feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--penguin-orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.feature-desc {
    font-size: 0.75rem;
    color: #6b7280;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideInFromBottom 0.8s ease-out 1.4s forwards;
}

.btn-hero {
    position: relative;
    overflow: hidden;
}

.btn-hero .btn-text {
    font-weight: 700;
}

.btn-hero .btn-price {
    font-size: 0.875rem;
    opacity: 0.9;
}

.play-icon {
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.hero-trust {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.6s forwards;
}

.trust-icons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.trust-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

.hero-trust p {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

/* Product Showcase Enhanced */
.product-showcase {
    position: relative;
}

.product-3d-container {
    position: relative;
    perspective: 1000px;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
}

.product-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--penguin-orange-300);
    border-radius: 2.5rem;
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05) rotateY(5deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid var(--penguin-orange-400);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
}

.connection-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
}



.product-info {
    text-align: center;
}

.character-badge {
    display: inline-block;
    background: var(--penguin-green-400);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.mini-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.mini-icon {
    font-size: 1rem;
}

.character-selector {
    margin-top: 2rem;
    text-align: center;
}

.selector-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.character-options {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.character-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.character-btn.active {
    border-color: var(--penguin-orange-400);
    background: rgba(249, 115, 22, 0.1);
}

.character-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.3);
}

.char-avatar {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.char-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.4;
    pointer-events: none;
    animation: elementFloat 8s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

.tech-lines {
    position: absolute;
    top: 50%;
    left: -50px;
    width: 100px;
    height: 2px;
    background: var(--penguin-blue-400);
    animation: techScan 3s ease-in-out infinite;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes badgePulse {

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

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

@keyframes sparkle {

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

    50% {
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg);
    }

    50% {
        transform: translateY(-10px) rotateX(2deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes pulseRing {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}



@keyframes elementFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(120deg);
    }

    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes techScan {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    50% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(50px);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Google Translate Widget Fixes */
/* Hide the Google Translate top frame bar */
body {
    top: 0 !important;
}

.skiptranslate {
    display: inline-block !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-balloon-frame {
    display: none !important;
}

/* Position Google Translate widget in the header */
#google_translate_element {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.skiptranslate,
.goog-te-gadget {
    position: static !important;
    transform: none !important;
    z-index: 100 !important;
}

/* Override any inline styles */
.skiptranslate>iframe {
    display: none !important;
}

/* Style the Google Translate dropdown */
.goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 0.5rem 2rem 0.5rem 1rem !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.75rem !important;
    font-size: 0.875rem !important;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    background: white !important;
    color: #374151 !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(.4, 0, .2, 1) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.goog-te-gadget .goog-te-combo:hover {
    border-color: var(--penguin-blue-400) !important;
    background: var(--penguin-blue-50) !important;
    box-shadow: 0 2px 8px -2px rgba(60, 60, 120, 0.1) !important;
}

.goog-te-gadget .goog-te-combo:focus {
    outline: none !important;
    border-color: var(--penguin-orange-400) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

/* Hide the "Powered by" text */
.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget>span>a {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

/* Fix for Google Translate causing body to shift */
body.translated-ltr {
    top: 0 !important;
}

body.translated-rtl {
    top: 0 !important;
}

/* Ensure hamburger menu stays on the right */
.hamburger {
    margin-left: auto;
    position: relative;
    z-index: 101;
}

/* Responsive adjustments for Google Translate widget */
@media (max-width: 1024px) {
    #google_translate_element {
        margin-left: 0.75rem;
    }
}

@media (max-width: 768px) {
    .goog-te-gadget .goog-te-combo {
        padding: 0.4rem 1.5rem 0.4rem 0.75rem !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    #google_translate_element {
        margin-right: 0.5rem;
    }

    .goog-te-gadget .goog-te-combo {
        padding: 0.35rem 1.25rem 0.35rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
}