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

:root {
    --primary-blue: #2563EB;
    --primary-dark: #1A365D;
    --accent-red: #E53E3E;
    --text-dark: #1A202C;
    --text-gray: #4A5568;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-text p {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
    padding: 8px 0;
    display: block;
}

.nav-link:hover {
    color: var(--primary-dark);
}

.nav-link.active {
    color: var(--primary-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown .nav-link::after {
    content: '▼';
    font-size: 8px;
    margin-left: 4px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    margin-top: 16px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: white;
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: #EFF6FF;
    color: var(--primary-blue);
    transform: translateX(4px);
}

.dropdown-item:active {
    transform: translateX(4px) scale(0.98);
}

/* Nav Icons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.2s;
}

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

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-blue);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    min-height: calc(100vh - 72px);
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 40px;
    min-height: 700px;
}

/* Hero Content */
.hero-content {
    max-width: 520px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.script-text {
    font-family: 'Dancing Script', cursive;
    font-size: 62px;
    font-weight: 700;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
    transform: rotate(-1deg);
    margin-left: -4px;
}

.script-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -8px;
    right: -20px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transform: rotate(-1deg);
}

.script-text::before {
    content: '✨';
    position: absolute;
    right: -32px;
    top: -12px;
    font-size: 24px;
    transform: rotate(15deg);
}

.hero-description {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 1.5px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fridge-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Fridge */
.fridge {
    position: absolute;
    right: 40px;
    top: 20px;
    width: 320px;
    height: 480px;
    background: linear-gradient(145deg, #E8E8E8 0%, #D1D5DB 100%);
    border-radius: 12px 12px 8px 8px;
    box-shadow: 
        inset 0 0 20px rgba(0,0,0,0.1),
        0 20px 40px rgba(0,0,0,0.15),
        0 0 0 1px rgba(0,0,0,0.05);
}

.fridge-door {
    position: absolute;
    inset: 8px;
    background: linear-gradient(90deg, #F3F4F6 0%, #E5E7EB 50%, #F3F4F6 100%);
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.08);
}

.fridge-handle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 140px;
    background: linear-gradient(90deg, #D1D5DB, #F9FAFB, #D1D5DB);
    border-radius: 4px;
    box-shadow: 
        2px 0 4px rgba(0,0,0,0.1),
        inset 1px 0 2px rgba(255,255,255,0.8);
}

/* Magnets */
.magnet {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 3px 8px rgba(0,0,0,0.2),
        0 1px 3px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: white;
}

.magnet:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 16px rgba(0,0,0,0.25),
        0 2px 6px rgba(0,0,0,0.15);
    z-index: 10;
}

.magnet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.magnet-1 {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    top: 24px;
    left: 28px;
    border: 3px solid white;
}

.magnet-2 {
    width: 118px;
    height: 74px;
    top: 20px;
    right: 32px;
}

.magnet-content.landscape {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.magnet-content.landscape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=200') center/cover;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.magnet-text {
    color: white;
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.magnet-3 {
    width: 90px;
    height: 110px;
    top: 118px;
    left: 24px;
    border-radius: 16px;
    background: white;
    padding: 4px;
}

.magnet-3 img {
    border-radius: 12px;
    height: calc(100% - 20px);
}

.magnet-label {
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

/* magnet-4 was removed (GOOD FOOD GOOD MOOD) */
/* magnet-5 was removed (girl photo) */

.magnet-6 {
    width: 156px;
    height: 88px;
    top: 122px;
    right: 28px;
    border-radius: 20px;
    background: white;
    padding: 3px;
    clip-path: polygon(8% 0, 92% 0, 100% 20%, 100% 80%, 92% 100%, 8% 100%, 0 80%, 0 20%);
}

.magnet-6 img {
    width: 100%;
    height: 100%;
    clip-path: polygon(8% 0, 92% 0, 100% 20%, 100% 80%, 92% 100%, 8% 100%, 0 80%, 0 20%);
}

.magnet-7 {
    width: 94px;
    height: 102px;
    top: 240px;
    left: 32px;
    background: #0F0F0F;
    border-radius: 12px;
    padding: 6px;
}

.magnet-content.coffee {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coffee-text {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: white;
    font-weight: 700;
    margin-bottom: 2px;
}

.coffee-sub {
    font-size: 8px;
    font-weight: 800;
    color: #FB923C;
    line-height: 1.1;
    letter-spacing: 0.3px;
}

/* Counter */
.counter {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(180deg, #D4A574 0%, #C19660 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
    padding: 0 20px 12px;
}

.product-stack {
    width: 84px;
    height: 56px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
}

.product-stack::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.05) 2px,
        rgba(0,0,0,0.05) 3px
    );
}

.product-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card {
    width: 92px;
    height: 68px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    padding: 6px;
    transform: rotate(-1deg);
}

.thank-you-card {
    width: 100%;
    height: 100%;
    border: 1.5px dashed #E5E7EB;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: relative;
}

.thank-you {
    font-size: 11px;
    font-weight: 800;
    background: linear-gradient(90deg, #EF4444, #F59E0B, #10B981, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3px;
}

.support {
    font-size: 7px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.2px;
}

.heart {
    position: absolute;
    bottom: 3px;
    font-size: 10px;
    color: #EF4444;
}

.product-round {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.round-magnet {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    position: relative;
}

.brand {
    font-size: 7px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.2px;
}

.wave-icon {
    font-size: 16px;
    line-height: 1;
}

.brand-sub {
    font-size: 5px;
    font-weight: 600;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.2px;
}

.product-frame {
    width: 88px;
    height: 68px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.5);
}

.product-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.product-magnetic-sheets {
    width: 68px;
    height: 52px;
    position: relative;
}

.sheet-stack {
    width: 100%;
    height: 100%;
    background: #2D2D2D;
    border-radius: 6px;
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.2),
        2px 2px 0 #1A1A1A,
        4px 4px 0 #0F0F0F,
        6px 6px 8px rgba(0,0,0,0.3);
    position: relative;
}

.sheet-stack::before {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 18px;
    background: #404040;
    border-radius: 3px 6px 3px 3px;
    transform: rotate(12deg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Plant */
.plant {
    position: absolute;
    bottom: 90px;
    left: -12px;
    z-index: 5;
}

.plant-pot {
    width: 44px;
    height: 36px;
    background: #D4C4A8;
    border-radius: 0 0 20px 20px;
    position: relative;
}

.plant-pot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: #C2B399;
    border-radius: 4px 4px 0 0;
}

.plant-leaves {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Trust Badges */
.trust-badges {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
}

.badges-wrapper {
    background: #EFF6FF;
    border-radius: 12px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.4px;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 60px 0 100px;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .script-text {
        font-size: 54px;
    }
    
    .features {
        max-width: 480px;
        margin: 0 auto 40px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        height: 520px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .fridge {
        right: 50%;
        transform: translateX(50%);
    }
    
    .counter {
        left: 50%;
        transform: translateX(-50%);
        width: 460px;
    }
    
    .plant {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .script-text {
        font-size: 46px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .badges-wrapper {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
    }
    
    .hero-visual {
        height: 480px;
        transform: scale(0.9);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .script-text {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-visual {
        transform: scale(0.75);
        height: 420px;
    }
}
