/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Product Showcase */
.product-showcase {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1a0a0a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Brand Title */
.brand-title {
    text-align: center;
    margin-bottom: 4rem;
}

.brand-title h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.brand-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc143c, transparent);
}

.tagline {
    font-size: 1rem;
    color: #dc143c;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Product Hero */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Product Image */
.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.plant-display {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plant-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 2;
    position: relative;
    animation: plantFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(220, 20, 60, 0.4));
    border-radius: 15px;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, rgba(220, 20, 60, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

/* Görselin arkasına havalı efekt */
.plant-display::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    background: conic-gradient(from 0deg, transparent, rgba(220, 20, 60, 0.1), transparent, rgba(220, 20, 60, 0.1), transparent);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    z-index: 1;
}

.plant-display::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 520px;
    background: conic-gradient(from 180deg, transparent, rgba(220, 20, 60, 0.05), transparent, rgba(220, 20, 60, 0.05), transparent);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
    z-index: 1;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes plantFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

/* Product Info */
.product-info {
    color: #ffffff;
}

/* Main CTA Button - Compact & Ultra Cool */
.main-cta-button {
    background: linear-gradient(135deg, #dc143c 0%, #ff1744 50%, #dc143c 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(220, 20, 60, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    font-family: 'Inter', sans-serif;
    min-width: 240px;
}

.main-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    animation: shimmer 3s infinite;
    z-index: 1;
}

.main-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.main-cta-button:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 15px 35px rgba(220, 20, 60, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 50%, #ff1744 100%);
    border-color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.12em;
}

.main-cta-button:hover::after {
    width: 120px;
    height: 120px;
}

.main-cta-button:active {
    transform: translateY(-3px) scale(1.01);
    transition: all 0.1s ease;
    box-shadow: 
        0 8px 20px rgba(220, 20, 60, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.main-cta-button span {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.main-cta-button i {
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.main-cta-button:hover i {
    transform: translateX(8px) rotate(10deg);
}

.product-subtitle {
    font-size: 1.2rem;
    color: #dc143c;
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.product-description {
    margin-bottom: 2.5rem;
}

.product-description p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
}

/* Product Features */
.product-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.95rem;
}

.feature i {
    color: #dc143c;
    font-size: 1.1rem;
}

/* Premium Badge */
.premium-badge {
    margin-bottom: 2.5rem;
    position: relative;
}

.badge-text {
    display: inline-block;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(220, 20, 60, 0.05));
    border: 1px solid rgba(220, 20, 60, 0.3);
    color: #dc143c;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.badge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #dc143c, #b91c3c);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
    background: linear-gradient(135deg, #e91e63, #dc143c);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #dc143c;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

/* Kırmızı yaprak animasyonları */
.falling-leaf {
    position: absolute;
    color: #dc143c;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: fallDown 8s linear infinite;
    pointer-events: none;
}

.falling-leaf:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 8s; }
.falling-leaf:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 10s; }
.falling-leaf:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 9s; }
.falling-leaf:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 11s; }
.falling-leaf:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 7s; }
.falling-leaf:nth-child(6) { left: 60%; animation-delay: 1.5s; animation-duration: 9s; }
.falling-leaf:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 10s; }
.falling-leaf:nth-child(8) { left: 80%; animation-delay: 3.5s; animation-duration: 8s; }
.falling-leaf:nth-child(9) { left: 90%; animation-delay: 0.5s; animation-duration: 11s; }
.falling-leaf:nth-child(10) { left: 15%; animation-delay: 4.5s; animation-duration: 9s; }

@keyframes fallDown {
    0% {
        top: -10%;
        opacity: 0.6;
        transform: rotate(0deg) translateX(0px);
    }
    10% {
        opacity: 0.8;
    }
    20% {
        transform: rotate(45deg) translateX(10px);
    }
    40% {
        transform: rotate(90deg) translateX(-10px);
    }
    60% {
        transform: rotate(135deg) translateX(15px);
    }
    80% {
        transform: rotate(180deg) translateX(-5px);
    }
    90% {
        opacity: 0.4;
    }
    100% {
        top: 110%;
        opacity: 0;
        transform: rotate(225deg) translateX(10px);
    }
}

.floating-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.floating-particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 9s;
}

.floating-particle:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.floating-particle:nth-child(5) {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 8s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.3; 
    }
    33% { 
        transform: translateY(-20px) translateX(10px); 
        opacity: 0.6; 
    }
    66% { 
        transform: translateY(10px) translateX(-5px); 
        opacity: 0.4; 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .brand-title {
        margin-bottom: 3rem;
    }
    
    .brand-title h1 {
        font-size: 3rem;
    }
    
    .product-hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .plant-display {
        width: 380px;
        height: 380px;
        margin: 0 auto;
    }
    
    .glow-effect {
        width: 420px;
        height: 420px;
    }
    
    .plant-display::before {
        width: 400px;
        height: 400px;
    }
    
    .plant-display::after {
        width: 440px;
        height: 440px;
    }
    
    .main-cta-button {
        font-size: 1.6rem;
        padding: 1rem 2rem;
        gap: 0.8rem;
        border-radius: 40px;
        min-width: 200px;
    }
    
    .main-cta-button i {
        font-size: 1.2rem;
    }
    
    .product-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .product-description p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .product-features {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .premium-badge {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 1.3rem 3rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .product-showcase {
        padding: 2rem 0;
    }
    
    .brand-title h1 {
        font-size: 2.2rem;
        letter-spacing: 0.1em;
    }
    
    .tagline {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }
    
    .plant-display {
        width: 320px;
        height: 320px;
    }
    
    .glow-effect {
        width: 360px;
        height: 360px;
    }
    
    .plant-display::before {
        width: 340px;
        height: 340px;
    }
    
    .plant-display::after {
        width: 380px;
        height: 380px;
    }
    
    .main-cta-button {
        font-size: 1.4rem;
        padding: 1rem 2rem;
        gap: 0.8rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
        border-radius: 35px;
        margin: 0 auto 1.5rem;
        min-width: 240px;
    }
    
    .main-cta-button i {
        font-size: 1.1rem;
    }
    
    .product-subtitle {
        font-size: 1rem;
    }
    
    .product-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .product-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
        letter-spacing: 0.1em;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .floating-particle {
        display: none;
    }
    
    .falling-leaf {
        display: none;
    }
}

@media (max-width: 360px) {
    .brand-title h1 {
        font-size: 1.8rem;
    }
    
    .plant-display {
        width: 200px;
        height: 200px;
    }
    
    .glow-effect {
        width: 240px;
        height: 240px;
    }
    
    .main-cta-button {
        font-size: 1.2rem;
        padding: 0.9rem 1.8rem;
        gap: 0.6rem;
        max-width: 260px;
        border-radius: 30px;
        min-width: 200px;
    }
    
    .main-cta-button i {
        font-size: 1rem;
    }
}
