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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom right, #fdf2f8, #faf5ff, #fffbeb);
    min-height: 100vh;
    color: #1f2937;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #fce7f3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header .container {
    padding: 1.5rem 1rem;
}

.header-logo {
    display: flex;
    justify-content: center;
}

.logo {
    height: 5rem;
    width: auto;
}

/* Hero Section */
.hero-section {
    padding: 10rem 1rem 6rem;
    position: relative;
    overflow: hidden;
}

.floating-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.blur-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(251, 207, 232, 0.3);
}

.blur-2 {
    top: 10rem;
    right: 5rem;
    width: 10rem;
    height: 10rem;
    background: rgba(233, 213, 255, 0.3);
    animation-delay: 2s;
}

.blur-3 {
    bottom: 5rem;
    left: 25%;
    width: 6rem;
    height: 6rem;
    background: rgba(255, 228, 230, 0.3);
    animation-delay: 4s;
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(to right, #fce7f3, #f3e8ff);
    border-radius: 9999px;
    color: #db2777;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.badge-purple {
    color: #9333ea;
}

.hero-title-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.gradient-text {
    display: block;
    margin-top: 0.5rem;
    background: linear-gradient(to right, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #ec4899, #a855f7);
    color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #fce7f3;
}

.btn-secondary:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    margin-top: 2.5rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(249, 168, 212, 0.4), rgba(216, 180, 254, 0.4));
    border-radius: 3rem;
    filter: blur(60px);
}

.hero-image-box {
    position: relative;
    background: linear-gradient(to bottom right, #fce7f3, #e9d5ff);
    border-radius: 3rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 2.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Why Special Section */
.why-section {
    padding: 6rem 1rem;
    background: rgba(255, 255, 255, 0.6);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeIn 1s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    animation: floatSlow 8s ease-in-out infinite;
}

.card-1 {
    background: rgba(254, 242, 242, 0.5);
}

.card-2 {
    background: rgba(250, 245, 255, 0.5);
    animation-delay: 2s;
}

.card-3 {
    background: rgba(255, 241, 242, 0.5);
    animation-delay: 4s;
}

.feature-card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.75rem);
}

.feature-icon {
    display: inline-flex;
    padding: 1.25rem;
    border-radius: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.icon-pink {
    background: linear-gradient(to bottom right, #f472b6, #fb7185);
}

.icon-purple {
    background: linear-gradient(to bottom right, #a78bfa, #f472b6);
}

.icon-pink-purple {
    background: linear-gradient(to bottom right, #f472b6, #a855f7);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-description {
    color: #4b5563;
    line-height: 1.75;
    font-size: 1.125rem;
}

/* Product Focus Section */
.product-section {
    padding: 6rem 1rem;
}

.product-container {
    display: grid;
    gap: 4rem;
    align-items: center;
}

.product-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.product-image-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(216, 180, 254, 0.4), rgba(249, 168, 212, 0.4));
    border-radius: 3rem;
    filter: blur(60px);
}

.product-image-box {
    position: relative;
    background: linear-gradient(to bottom right, #e9d5ff, #fce7f3);
    border-radius: 3rem;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #ec4899, #a855f7);
    color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 2.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.product-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.75;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-checkmark {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #f472b6, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-item span {
    color: #374151;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 1rem;
    background: linear-gradient(to bottom right, rgba(254, 242, 242, 0.8), rgba(250, 245, 255, 0.8), rgba(255, 241, 242, 0.8));
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.5s ease;
}

.gallery-item:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.25);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(219, 39, 119, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Gift Experience Section */
.gift-section {
    padding: 7rem 1rem;
    background: linear-gradient(to bottom right, #e9d5ff, #fce7f3, #ffe4e6);
    position: relative;
    overflow: hidden;
}

.heart-bg {
    position: absolute;
    opacity: 0.05;
}

.heart-1 {
    top: 5rem;
    left: 2.5rem;
    width: 6rem;
    height: 6rem;
}

.heart-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 8rem;
    height: 8rem;
}

.heart-3 {
    top: 50%;
    left: 25%;
    width: 5rem;
    height: 5rem;
}

.gift-container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    color: #db2777;
    font-weight: 600;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.gift-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.gift-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.gift-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
    padding-top: 2rem;
}

.gift-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.gift-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gift-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.gift-card-description {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.75;
}

.gift-tagline {
    font-size: 1.5rem;
    color: #374151;
    font-weight: 600;
    padding-top: 2rem;
    font-style: italic;
}

/* How It Works Section */
.how-section {
    padding: 7rem 1rem;
    background: rgba(255, 255, 255, 0.8);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.step-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.step-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.step-icon-1 {
    background: linear-gradient(to bottom right, #fce7f3, #ffe4e6);
}

.step-icon-2 {
    background: linear-gradient(to bottom right, #e9d5ff, #fce7f3);
}

.step-icon-3 {
    background: linear-gradient(to bottom right, #fce7f3, #e9d5ff);
}

.step-emoji {
    font-size: 4.5rem;
}

.step-number {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, #ec4899, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.step-description {
    color: #4b5563;
    line-height: 1.75;
    font-size: 1.125rem;
}

.step-arrow {
    display: none;
    position: absolute;
    top: 4rem;
    right: -2.5rem;
    transform: translateX(50%);
    color: #fce7f3;
}

/* Instagram Section */
.instagram-section {
    padding: 6rem 1rem;
    background: linear-gradient(to bottom right, #fdf2f8, #faf5ff);
}

.instagram-header {
    text-align: center;
    margin-bottom: 4rem;
}

.instagram-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #fce7f3;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(to right, #ec4899, #a855f7, #ec4899);
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.instagram-button:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.instagram-scroll {
    position: relative;
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    scrollbar-width: none;
}

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

.instagram-item {
    flex-shrink: 0;
    width: 18rem;
    height: 18rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
}

.instagram-item:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-0.5rem);
}

.instagram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.instagram-item:hover .instagram-image {
    transform: scale(1.1);
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 1rem;
    background: linear-gradient(to bottom right, #ec4899, #a855f7, #db2777);
    position: relative;
    overflow: hidden;
}

.cta-blur {
    position: absolute;
    background: white;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

.cta-blur-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 12rem;
    height: 12rem;
}

.cta-blur-2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    animation-delay: 1s;
}

.cta-blur-3 {
    top: 50%;
    left: 50%;
    width: 24rem;
    height: 24rem;
    animation-delay: 2s;
}

.cta-container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
}

.cta-subtitle {
    font-size: 1.875rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.cta-button-wrapper {
    padding-top: 1rem;
    position: relative;
    display: inline-block;
}

.btn-cta {
    position: relative;
    padding: 1.5rem 4rem;
    background: white;
    color: #db2777;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.cta-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    padding: 3rem 1rem;
    background: linear-gradient(to bottom right, #fdf2f8, #faf5ff);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    height: 4rem;
    width: auto;
}

.footer-description {
    color: #4b5563;
    font-size: 1.125rem;
}

.footer-instagram {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #db2777;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-instagram:hover {
    color: #a855f7;
}

.footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid #fce7f3;
    width: 100%;
    text-align: center;
}

.footer-copyright p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: white;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    color: #1f2937;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    background: #fce7f3;
    transform: scale(1.1);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-content {
        margin-bottom: 0;
    }

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

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

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-container {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gift-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .step-arrow {
        display: block;
    }

    .gift-title {
        font-size: 3.75rem;
    }

    .cta-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-title {
        font-size: 3.75rem;
    }
}

/* POPUP STYLES */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.popup-container {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 2px solid #fce7f3; /* Açık pembe çerçeve */
    animation: popupSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupSlideUp {
    from { transform: translateY(50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.popup-close-btn:hover {
    color: #333;
}

.popup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
    color: #fff;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(255, 154, 158, 0.4);
}

.popup-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.popup-text {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.price-box {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.new-price {
    font-size: 2.5rem;
    color: #d53f8c; /* Logonuzdaki koyu pembe tonu */
    font-weight: 800;
}

.popup-savings {
    margin-bottom: 1.5rem;
}

.savings-tag {
    background: #f0fff4;
    color: #2f855a;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid #c6f6d5;
}

.btn-popup {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(213, 63, 140, 0.3);
    animation: pulse 2s infinite;
}

.popup-note {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 1rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Mobil ayarı */
@media (max-width: 480px) {
    .popup-title { font-size: 1.5rem; }
    .new-price { font-size: 2rem; }
    .popup-container { padding: 1.5rem; width: 95%; }
}
