:root {
    /* Colors */
    --bg-dark: #2A1A30;
    --bg-darker: #1A0F1E;
    --bg-card: rgba(255, 240, 245, 0.04);
    --bg-card-hover: rgba(255, 240, 245, 0.08);
    --text-main: #FDFBF7;
    --text-muted: #D3C6D6;
    --primary: #F2BBA7;
    --primary-glow: rgba(242, 187, 167, 0.3);
    --accent: #E8A8B4;
    --accent-glow: rgba(232, 168, 180, 0.3);
    --border-color: rgba(255, 240, 245, 0.1);
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Effects */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass-bg: rgba(10, 10, 10, 0.6);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Canvas */
#starCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 50% 0%, #4A2B45 0%, #1F1224 60%, #110A14 100%);
}

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

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-serif);
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    transition: var(--transition);
}

.glass-nav.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.85);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    letter-spacing: 2px;
}

.logo .dot {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.desktop-nav a:hover {
    color: #fff;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: #e5c158;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn:active {
    transform: scale(0.97);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    z-index: -1;
    filter: blur(60px);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.hero-container {
    text-align: center;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: var(--glass-border);
    border-radius: 50px;
    background: var(--bg-card);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* Sections General */
section {
    padding: 10rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
}

.product-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(225, 179, 130, 0.3);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(225, 179, 130, 0.1);
}

.product-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    margin-bottom: 1.5rem;
    background: #1a0f1e;
    flex-shrink: 0;
}

.product-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.7s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.placeholder-gradient {
    background: linear-gradient(135deg, #3A2036 0%, #1A0F1E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #000;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 2;
}

.ai-tag {
    background: linear-gradient(45deg, #FF6B6B, #5e6ad2);
    color: white;
    animation: aiPulse 2.5s ease-in-out infinite;
}

@keyframes aiPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(94, 106, 210, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(94, 106, 210, 0); }
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(26, 15, 30, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    backdrop-filter: blur(2px);
}

.product-overlay::before {
    content: '✨ Hediyeyi Yakından Gör';
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: auto;
    margin-top: 1rem;
    font-style: italic;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.65;
}

.price {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    margin-top: auto;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .combo-container { flex-direction: column; }

    .wizard-container {
        height: 92vh;
        border-radius: 20px;
    }

    .wizard-step {
        padding: 3rem 1.5rem 2rem !important;
    }

    .ai-chat-step { padding-top: 4rem !important; }

    .wizard-step h2 {
        font-size: 1.5rem;
    }

    #combo-title {
        font-size: 1.3rem !important;
    }

    .ai-question-text {
        font-size: 1.2rem;
        padding: 0.9rem 1.1rem;
    }

    .ai-quick-options {
        grid-template-columns: 1fr !important;
    }

    .result-secondary-actions .btn {
        min-width: 0;
        flex: 1 1 100%;
    }
}

/* Wizard Result — Premium Card refined */
.combo-card.premium-card {
    flex: 1 1 0;
    min-width: 0;
    background: linear-gradient(180deg, rgba(225, 179, 130, 0.18) 0%, rgba(225, 179, 130, 0.05) 100%);
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: left;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(242, 187, 167, 0.12);
}

.combo-card.premium-card .premium-badge {
    position: absolute;
    top: -14px;
    left: 1rem;
    background: var(--primary);
    color: #1a0f1e;
    margin-bottom: 0;
}

.premium-img-wrap {
    width: 100%;
    max-width: 100%;
    max-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0.5rem auto 0.8rem;
    background: rgba(0,0,0,0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-img-loading {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(26, 15, 30, 0.65);
    backdrop-filter: blur(2px);
    color: var(--text-main);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    font-style: italic;
    transition: opacity 0.4s ease;
    z-index: 2;
    text-align: center;
    padding: 1rem;
}

.premium-img-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.ai-shimmer {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--primary), var(--accent), transparent);
    animation: shimmerSpin 1.4s linear infinite;
    mask: radial-gradient(circle, transparent 18px, #000 19px);
    -webkit-mask: radial-gradient(circle, transparent 18px, #000 19px);
}

@keyframes shimmerSpin {
    to { transform: rotate(360deg); }
}

.premium-img-wrap img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.6s ease;
}

.combo-card.premium-card:hover .premium-img-wrap img {
    transform: scale(1.04);
}

.premium-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0.2rem 0 0.3rem;
    line-height: 1.2;
}

.premium-reason {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-style: italic;
}

.teaser-card {
    margin: 0 0 0.5rem 0;
    padding: 0.7rem 0.9rem;
    background: rgba(0,0,0,0.28);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.teaser-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.teaser-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
}

.premium-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.3rem;
}

/* Preview Lightbox */
.preview-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 4, 12, 0.92);
    backdrop-filter: blur(18px);
    z-index: 20000;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    animation: lbFadeIn 0.25s ease;
}

.preview-lightbox.active {
    display: flex;
}

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

.preview-lightbox-inner {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    max-width: 1080px;
    width: 100%;
    max-height: 92vh;
    position: relative;
    animation: lbPopIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.preview-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 2;
}

.preview-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(90deg);
}

.preview-lightbox-img-wrap {
    flex: 0 0 auto;
    width: min(560px, 58vw);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(242, 187, 167, 0.12);
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}

.preview-lightbox-img-wrap img {
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
    display: block;
}

.preview-lightbox-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 1rem;
}

.preview-lightbox-meta h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-lightbox-meta p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
}

.preview-lightbox-meta .btn {
    align-self: flex-start;
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .preview-lightbox-inner {
        flex-direction: column;
        overflow-y: auto;
    }
    .preview-lightbox-img-wrap {
        width: 100%;
    }
}

/* Zoom hint on premium img */
.preview-zoom-hint {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    background: rgba(0, 0, 0, 0.65);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 3;
}

/* Modal delivery info strip */
.modal-delivery-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-delivery-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

/* Modal actions */
.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
}

.modal-direct-add {
    font-size: 0.9rem;
    padding: 0.65rem 1.5rem;
    opacity: 0.8;
}

.modal-direct-add:hover {
    opacity: 1;
}

/* Wizard Step 2 top bar */
.wizard-step2-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.wizard-back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.3rem 0;
    transition: color 0.25s ease;
    font-family: var(--font-sans);
}

.wizard-back-btn:hover {
    color: var(--primary);
}

.wizard-question-counter {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Wizard loader text fade */
#loader-text {
    transition: opacity 0.25s ease;
    font-family: var(--font-serif);
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Wizard AI Chat — avatar + typing dots */
.ai-avatar-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.ai-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow:
        0 4px 14px var(--primary-glow),
        0 0 0 4px rgba(242, 187, 167, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    position: relative;
    flex-shrink: 0;
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 4px 14px var(--primary-glow), 0 0 0 4px rgba(242, 187, 167, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 4px 14px var(--primary-glow), 0 0 0 8px rgba(242, 187, 167, 0.04), inset 0 1px 1px rgba(255, 255, 255, 0.3); }
}

.ai-label {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.ai-label::after {
    content: '·';
    margin: 0 0.4rem;
    color: var(--text-muted);
    opacity: 0.5;
}

.ai-question-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--font-serif);
    color: var(--text-main);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-left: 3px solid var(--primary);
    padding: 1rem 1.3rem;
    border-radius: 0 12px 12px 0;
    animation: fadeQuestion 0.5s ease;
}

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

.typing-dots {
    display: inline-flex;
    gap: 6px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    margin-top: 0.5rem;
}

.typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    animation: typingBounce 1.2s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.typing-dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 43, 69, 0.18) 50%, transparent 100%);
}

.hero-quote {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
    position: relative;
}

.hero-quote .quote-mark {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.6;
    display: block;
    margin-bottom: -1.5rem;
}

.hero-quote p {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-style: italic;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.hero-quote cite {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: normal;
    letter-spacing: 0.5px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    border-color: var(--primary-glow);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.testimonial-img {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 15, 30, 0.85) 100%);
}

.testimonial-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.testimonial-card:hover .testimonial-img img {
    transform: scale(1.06);
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.55;
    font-size: 1rem;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.testimonial-stats .stat {
    text-align: center;
}

.testimonial-stats .stat strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.testimonial-stats .stat span {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Occasion Filter Tabs */
.occasion-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 0 auto 3rem;
    max-width: 800px;
}

.occasion-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.occasion-tab:hover {
    color: var(--text-main);
    border-color: var(--primary-glow);
    background: var(--bg-card-hover);
}

.occasion-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-darker);
    border-color: transparent;
    box-shadow: 0 4px 18px var(--primary-glow);
}

.product-card.hidden-by-filter {
    display: none;
}

/* ===== Star Map Quick Form ===== */
.starmap-quick-form {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 14px;
    padding: 1.2rem;
    margin: 1rem 0;
    animation: fadeIn 0.4s ease;
}
.sqf-hint {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 0.75rem;
    font-weight: 500;
}
.sqf-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin: 0.55rem 0 0.3rem;
}
.sqf-label .req { color: #f87171; }
.sqf-label .opt { color: rgba(255,255,255,0.4); font-weight: 500; font-size: 0.72rem; }
.sqf-sub { display:block; font-weight:400; font-size:0.72rem; color: rgba(255,255,255,0.5); margin-top:2px; }
.sqf-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.sqf-input {
    flex: 1;
    padding: 0.6rem 0.8rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    min-width: 0;
    transition: border-color 0.2s;
}
.sqf-input:focus { border-color: #7c3aed; }
.sqf-input option { background: #1a0f2e; }
.sqf-btn {
    width: 100%;
    margin-top: 0.6rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.sqf-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.sqf-btn:active { transform: translateY(0); }
.sqf-btn.swf-btn { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.sqf-btn.sbf-btn { background: linear-gradient(135deg, #d97706, #f59e0b); }
.sqf-btn.csf-btn { background: linear-gradient(135deg, #be185d, #ec4899); }
.sqf-btn.mmf-btn { background: linear-gradient(135deg, #15803d, #22c55e); }
.sqf-btn.ijf-btn { background: linear-gradient(135deg, #ca8a04, #eab308); color: #000; }
.sqf-btn.cpf-btn { background: linear-gradient(135deg, #b8860b, #d4af37); color: #0a0700; }
.sqf-btn.mgf-btn { background: linear-gradient(135deg, #065f46, #10b981); }
.sqf-btn.bgf-btn { background: linear-gradient(135deg, #92400e, #d97706); }

/* Game Card — hover'da joystick */
.game-card .product-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 15%; right: 15%;
    font-size: 2.2rem;
    z-index: 3;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}
.game-card .product-image-wrapper:hover::before {
    opacity: 1;
    transform: scale(1);
    animation: gamePulse 0.8s ease-in-out infinite alternate;
}
@keyframes gamePulse {
    from { transform: scale(1); }
    to   { transform: scale(1.25) rotate(8deg); }
}

/* Portrait Card — hover'da altın çerçeve */
.portrait-card .product-image-wrapper::before {
    content: '';
    position: absolute; inset: 8px; z-index: 2;
    border: 2px solid transparent;
    border-radius: 8px;
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    background: linear-gradient(#0000, #0000) padding-box,
                linear-gradient(135deg, #d4af37, #f5d485, #d4af37) border-box;
}
.portrait-card .product-image-wrapper:hover::before {
    opacity: 1;
    animation: frameGlow 2s ease-in-out infinite alternate;
}
@keyframes frameGlow {
    from { inset: 8px; opacity: 0.6; }
    to   { inset: 5px; opacity: 1; }
}

/* Jokes Card — hover'da 😂 burst */
.jokes-card .product-image-wrapper::before {
    content: '';
    position: absolute;
    top: 15%; right: 15%;
    font-size: 2rem;
    z-index: 3;
    opacity: 0;
    transform: scale(0) rotate(-15deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}
.jokes-card .product-image-wrapper:hover::before {
    opacity: 1;
    transform: scale(1) rotate(10deg);
    animation: jokeBounce 1s ease-in-out infinite alternate;
}
@keyframes jokeBounce {
    from { transform: scale(1) rotate(10deg); }
    to   { transform: scale(1.2) rotate(-5deg); }
}

/* Map Card — hover'da konum pini */
.map-card .product-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    z-index: 3;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}
.map-card .product-image-wrapper:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: pinPulse 1.5s ease-in-out infinite;
}
@keyframes pinPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%       { transform: translate(-50%, -60%) scale(1.15); }
}

/* Song Card — hover'da vinyl dönme hissi */
.song-card .product-image-wrapper::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 80%; height: 80%;
    top: 10%; left: 10%;
    z-index: 2;
    background: conic-gradient(
        from 0deg,
        transparent 0deg, rgba(232,168,180,0.1) 60deg,
        transparent 120deg, rgba(242,187,167,0.1) 180deg,
        transparent 240deg, rgba(232,168,180,0.1) 300deg,
        transparent 360deg
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.song-card .product-image-wrapper:hover::before {
    opacity: 1;
    animation: vinylSpin 4s linear infinite;
}
@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Storybook Card — hover'da amber kitap ışığı */
.storybook-card .product-image-wrapper::before {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background: radial-gradient(ellipse at 30% 40%, rgba(251,191,36,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    border-radius: inherit;
}
.storybook-card .product-image-wrapper:hover::before {
    opacity: 1;
    animation: bookGlow 2s ease-in-out infinite alternate;
}
@keyframes bookGlow {
    from { opacity: 0.4; }
    to   { opacity: 0.85; }
}

/* Sound Wave Card Hover Animasyonu */
.sound-wave-card .product-image-wrapper::before {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background-image: repeating-linear-gradient(
        to right,
        transparent 0px, transparent 3px,
        rgba(6,182,212,0.18) 3px, rgba(6,182,212,0.18) 4px
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: inherit;
}
.sound-wave-card .product-image-wrapper:hover::before {
    opacity: 1;
    animation: waveFlicker 1.5s ease-in-out infinite alternate;
}
@keyframes waveFlicker {
    from { opacity: 0.25; }
    to   { opacity: 0.6; }
}

/* Star Map Card Twinkle Hover */
.star-map-card .product-image-wrapper::before {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    border-radius: inherit;
}
.star-map-card .product-image-wrapper:hover::before {
    opacity: 0.2;
    animation: twinkle 2s ease-in-out infinite alternate;
}
@keyframes twinkle {
    from { opacity: 0.08; }
    to   { opacity: 0.25; }
}

/* How it works */
.how-it-works {
    background: rgba(10, 10, 15, 0.5);
    border-top: var(--glass-border);
    border-bottom: var(--glass-border);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-glow) 30%, var(--accent-glow) 70%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .steps-container::before { display: none; }
}

.step {
    text-align: center;
    padding: 2.5rem 2rem 2rem;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
}

.step:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: var(--primary-glow);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-style: italic;
    font-weight: 700;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(242, 187, 167, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(50px);
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Footer */
footer {
    background: var(--bg-darker);
    padding: 5rem 0 2rem;
    border-top: var(--glass-border);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.6;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-style: italic;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--primary);
    border-color: var(--primary-glow);
    background: rgba(242, 187, 167, 0.08);
    transform: translateY(-2px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.link-column h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.link-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.link-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

/* AI Wizard Overlay */
.wizard-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 8, 18, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    display: none;
    padding: 2rem 1rem;
}

.wizard-overlay.active {
    display: flex;
}

.wizard-container {
    background: linear-gradient(180deg, #2e1a35 0%, #1a0f1e 100%);
    border: 1px solid rgba(242, 187, 167, 0.15);
    border-radius: 24px;
    width: 100%;
    max-width: 720px;
    height: 640px;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 120px rgba(242, 187, 167, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.wizard-overlay.active .wizard-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Subtle ambient glow inside wizard */
.wizard-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(242, 187, 167, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.close-wizard {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: var(--transition);
}

.close-wizard:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.wizard-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.04);
    z-index: 5;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 20%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px var(--primary-glow);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 8px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px #fff, 0 0 20px var(--primary);
    opacity: 0.9;
}

.wizard-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.wizard-step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 3.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    z-index: 1;
}

.wizard-step.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}

.wizard-step.prev {
    transform: translateX(-50px);
}

.wizard-step h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    margin-top: 0.4rem;
    font-size: 0.95rem;
    font-style: italic;
}

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

.wizard-option {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 1.4rem;
    border-radius: 14px;
    color: var(--text-main);
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.wizard-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(242, 187, 167, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wizard-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(242, 187, 167, 0.1);
}

.wizard-option:hover::before {
    opacity: 1;
}

.wizard-option::after {
    content: '→';
    margin-left: auto;
    color: var(--text-muted);
    transition: var(--transition);
    opacity: 0.5;
}

.wizard-option:hover::after {
    color: var(--primary);
    opacity: 1;
    transform: translateX(4px);
}

.wizard-input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    resize: none;
    outline: none;
    transition: var(--transition);
}

.wizard-input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.06);
}

/* AI Chat Step (step 2) refined */
.ai-chat-step {
    justify-content: flex-start !important;
    padding-top: 4rem !important;
}

.ai-chat-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.ai-input-area {
    text-align: left;
    margin-top: 0.5rem;
}

.ai-quick-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: start;
}

.ai-quick-options .wizard-option {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

.ai-quick-options .wizard-option::after {
    display: none;
}

.ai-textarea {
    width: 100%;
    padding: 1rem 1.2rem !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.5;
    resize: none;
    outline: none;
    margin-bottom: 1rem;
    min-height: 80px;
    transition: all 0.3s ease;
}

.ai-textarea:focus {
    border-color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 0 3px rgba(242, 187, 167, 0.1);
}

.ai-textarea::placeholder {
    color: rgba(211, 198, 214, 0.5);
    font-style: italic;
}

.ai-submit-btn {
    width: 100%;
    border-radius: 14px;
    font-size: 1.05rem;
    padding: 0.95rem 1.5rem;
}

.mt-4 { margin-top: 2rem; }

/* Loader */
.ai-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
}

.ai-loader h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-main);
    font-weight: 400;
    font-style: italic;
}

.spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent, var(--primary), var(--accent), transparent);
    animation: spin 1.5s linear infinite;
    mask: radial-gradient(circle, transparent 32px, #000 33px);
    -webkit-mask: radial-gradient(circle, transparent 32px, #000 33px);
    position: relative;
}

.spinner::after {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    -webkit-mask: none;
    mask: none;
    animation: sparkleScale 2s ease-in-out infinite;
}

@keyframes sparkleScale {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Result Step */
.result-step {
    padding: 2.5rem 2rem 1.5rem !important;
    justify-content: flex-start !important;
    overflow-y: auto;
}

.result-step::-webkit-scrollbar { width: 6px; }
.result-step::-webkit-scrollbar-track { background: transparent; }
.result-step::-webkit-scrollbar-thumb { background: rgba(242, 187, 167, 0.2); border-radius: 3px; }
.result-step::-webkit-scrollbar-thumb:hover { background: rgba(242, 187, 167, 0.4); }

.result-step .ai-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #1a0f1e;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 4px 18px var(--primary-glow);
    letter-spacing: 0.5px;
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { box-shadow: 0 4px 18px var(--primary-glow); }
    50% { box-shadow: 0 4px 28px rgba(242, 187, 167, 0.5); }
}

#combo-title {
    font-family: var(--font-serif);
    font-size: 1.7rem !important;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 1.8rem !important;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.combo-container {
    display: flex !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
    align-items: flex-start !important;
}

.combo-container > .combo-card {
    flex: 1 1 0;
    min-width: 0;
}

.result-actions {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0.5rem;
}

.result-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary), #d49b8a) !important;
    color: #1a0f1e !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 22px rgba(242, 187, 167, 0.3) !important;
    transition: all 0.3s ease;
}

.result-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(242, 187, 167, 0.45) !important;
}

.result-actions .btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.result-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.result-cta {
    width: 100%;
    padding: 1rem 2rem !important;
    font-size: 1.05rem !important;
    margin-bottom: 0.7rem;
}

.result-secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.result-secondary-actions .btn {
    flex: 1;
    min-width: 140px;
    padding: 0.7rem 1.2rem !important;
    font-size: 0.92rem !important;
}

.teaser-card {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.teaser-label {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.teaser-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-main);
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================
   EDITOR VIEW
   ========================================== */
#editor-view {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0f0814;
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

#editor-view.active {
    display: flex;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(15, 8, 20, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.editor-header h2 {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    margin: 0;
}

.editor-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    padding: 3rem 5%;
    flex: 1;
}

.editor-preview {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.preview-canvas {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    background: #fff;
}

.preview-canvas img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-text-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: all 0.3s ease;
}

.preview-text-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.preview-text-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.editor-controls {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 16px;
    height: fit-content;
}

.editor-controls h3 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}

.control-group {
    margin-bottom: 1.5rem;
}

.control-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.control-group input,
.control-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
    resize: none;
}

.control-group input:focus,
.control-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.theme-options {
    display: flex;
    gap: 1rem;
}

.theme-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.theme-btn.active {
    border-color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .editor-container {
        grid-template-columns: 1fr;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    border-color: #ff4d4d !important;
}

/* Board Game Card — hover'da zar */
.board-game-card .product-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 15%; right: 15%;
    font-size: 2.2rem;
    z-index: 3;
    opacity: 0;
    transform: scale(0) rotate(0deg);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}
.board-game-card .product-image-wrapper:hover::before {
    opacity: 1;
    transform: scale(1);
    animation: diceRoll 0.6s ease-in-out infinite alternate;
}
@keyframes diceRoll {
    from { transform: scale(1) rotate(-15deg); }
    to   { transform: scale(1.2) rotate(15deg); }
}

/* Photo Manager & Slots */
.mm-photo-manager {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mm-photo-slots-grid {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.mm-photo-slot {
    width: 65px;
    height: 85px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mm-photo-slot:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.mm-photo-slot.has-image {
    border-style: solid;
    border-color: var(--primary);
}

.mm-photo-slot.drag-over {
    background: rgba(225, 179, 130, 0.15);
    border-color: var(--primary);
    border-style: dashed;
    transform: scale(1.04);
}

.mm-slot-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.mm-slot-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.4);
    z-index: 2;
}

.mm-slot-sub {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
    margin-top: 3px;
    z-index: 2;
    line-height: 1.2;
}

.mm-photo-slot.has-image .mm-slot-label,
.mm-photo-slot.has-image .mm-slot-sub {
    display: none;
}


/* ── Çift Portresi Fotoğraf Slot ── */
.cp-photo-slot {
    width: 100%;
    min-height: 160px;
    border: 2px dashed var(--primary);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    background: rgba(225, 179, 130, 0.07);
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}
.cp-photo-slot:hover { background: rgba(225, 179, 130, 0.15); }

/* ===== Sanatsal Çift Portresi — Modern Form ===== */
/* portrait-card artık kullanılmıyor — modal'a geçildi */
.pfc-photo-slot {
    width: 100%;
    min-height: 200px;
    border: 2px dashed rgba(212,175,55,0.5);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(212,175,55,0.04);
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}
.pfc-photo-slot:hover { background: rgba(212,175,55,0.10); border-color: rgba(212,175,55,0.85); }
.pfc-photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none; }
.pfc-photo-icon  { font-size: 2.4rem; line-height: 1; }
.pfc-photo-label { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.pfc-photo-sub   { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.pfc-field { display: flex; flex-direction: column; gap: 7px; }
.pfc-label { font-size: 0.8rem; font-weight: 600; color: rgba(212,175,55,0.85); letter-spacing: 0.02em; text-transform: uppercase; }
.pfc-optional { font-weight: 400; color: rgba(255,255,255,0.3); text-transform: none; }
.pfc-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.pfc-input:focus { border-color: rgba(212,175,55,0.7); background: rgba(212,175,55,0.04); }
.pfc-input::placeholder { color: rgba(255,255,255,0.2); }
.pfc-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #b8860b, #d4af37);
    border: none;
    border-radius: 12px;
    color: #0a0700;
    font-size: 0.97rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    margin-top: 0.3rem;
}
.pfc-btn:hover  { background: linear-gradient(135deg, #d4af37, #f5d485); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,175,55,0.3); }
.pfc-btn:active { transform: translateY(0); }
.pfc-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ===== Portrait Modal ===== */
.portrait-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.88);
    display: flex; align-items: center; justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.25s ease;
}
.portrait-modal-panel {
    background: linear-gradient(160deg, #0f0a04, #1c1408);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 22px;
    padding: 2rem;
    width: 100%; max-width: 480px;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    display: flex; flex-direction: column; gap: 1.2rem;
    box-shadow: 0 0 80px rgba(212,175,55,0.07), 0 40px 80px rgba(0,0,0,0.7);
}
.pmo-close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5); font-size: 0.9rem;
    width: 32px; height: 32px; border-radius: 50%;
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.pmo-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
.pmo-header { padding-right: 2.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pmo-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0; letter-spacing: -0.01em; }
.pmo-divider {
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #b8860b 60%, transparent);
    border-radius: 2px;
}

/* ===== Kombinasyon Sayfası — V2 Yeniden Tasarım ===== */
.combo-container-v2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    margin-bottom: 1.5rem !important;
    align-items: stretch !important;
}
.combo-container-v2 > .combo-card { flex: none !important; min-width: 0 !important; }

.combo-hero-card {
    background: linear-gradient(160deg, rgba(124,58,237,0.10), rgba(79,70,229,0.05)) !important;
    border: 1px solid rgba(124,58,237,0.25) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.1rem !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.08) !important;
    width: 100%;
}
.combo-hero-card .premium-badge { align-self: flex-start; }

.hero-img-wrap {
    width: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    position: relative !important;
    background: linear-gradient(135deg, #1a0f1e, #0f0a14) !important;
    cursor: zoom-in !important;
    margin-bottom: 0.4rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-height: 600px;
}
.hero-img-wrap img {
    width: 100% !important;
    height: auto !important;
    max-height: 600px !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.6s ease !important;
}
.hero-img-wrap:hover img { transform: scale(1.04); }

.combo-hero-card .premium-title {
    font-family: var(--font-serif);
    font-size: 1.9rem !important;
    margin: 0.2rem 0 0 !important;
    color: #fff !important;
    letter-spacing: -0.01em;
}
.combo-hero-card .premium-reason {
    font-size: 0.95rem !important;
    color: rgba(255,255,255,0.6) !important;
    margin: 0 0 0.4rem !important;
}
.combo-hero-card .premium-price {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.3rem;
}

/* Ana aksiyon butonları */
.result-actions-v2 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.6rem !important;
    margin-top: 1rem !important;
    padding-top: 1.2rem !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
}
.result-main-cta {
    width: 100% !important;
    padding: 1.1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #7c3aed, #4f46e5) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(124,58,237,0.35) !important;
    transition: all 0.3s ease !important;
}
.result-main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(124,58,237,0.5) !important;
}
.result-link-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}
.result-link-btn:hover { color: var(--primary); }

.hero-customize-btn {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.01em;
    margin: 0.3rem 0;
}
.hero-customize-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.35);
}

/* ===== Portrait Modal — V3 Premium Redesign ===== */
.portrait-modal-overlay {
    backdrop-filter: blur(8px) saturate(1.2);
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
    background: rgba(0,0,0,0.78) !important;
}
.pmp-v3 {
    max-width: 880px !important;
    padding: 2.5rem !important;
    gap: 1.8rem !important;
    background:
        radial-gradient(circle at 20% 0%, rgba(212,175,55,0.10), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(184,134,11,0.08), transparent 60%),
        linear-gradient(160deg, #0c0805, #1a1208) !important;
    border: 1px solid rgba(212,175,55,0.25) !important;
    border-radius: 26px !important;
    box-shadow:
        0 0 0 1px rgba(212,175,55,0.05),
        0 0 100px rgba(212,175,55,0.08),
        0 50px 100px rgba(0,0,0,0.7) !important;
}
.pmp-header { display: flex; flex-direction: column; gap: 0.9rem; padding-right: 3rem; }
.pmp-title-block { display: flex; flex-direction: column; gap: 6px; }
.pmp-eyebrow {
    font-size: 0.7rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
}
.pmp-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.pmp-divider {
    height: 2px;
    background: linear-gradient(90deg, #d4af37, rgba(212,175,55,0.4) 50%, transparent 100%);
    border-radius: 2px;
    width: 80px;
}
.pmp-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
}
@media (max-width: 720px) {
    .pmp-grid { grid-template-columns: 1fr; gap: 1.4rem; }
    .pmp-v3 { padding: 1.5rem !important; }
    .pmp-title { font-size: 1.5rem; }
}
.pmp-photo-col { display: flex; flex-direction: column; }
.pmp-photo-big {
    aspect-ratio: 3 / 4 !important;
    min-height: 380px !important;
    width: 100% !important;
    border: 2px dashed rgba(212,175,55,0.45) !important;
    border-radius: 16px !important;
    background:
        radial-gradient(circle at center, rgba(212,175,55,0.06), transparent 70%),
        rgba(212,175,55,0.02) !important;
    transition: all 0.3s ease !important;
}
.pmp-photo-big:hover {
    border-color: rgba(212,175,55,0.85) !important;
    background:
        radial-gradient(circle at center, rgba(212,175,55,0.12), transparent 70%),
        rgba(212,175,55,0.04) !important;
    transform: scale(1.005);
}
.pmp-photo-icon { font-size: 3rem; line-height: 1; margin-bottom: 0.4rem; filter: drop-shadow(0 4px 12px rgba(212,175,55,0.4)); }
.pmp-photo-label { font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: 0.01em; }
.pmp-photo-sub { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-align: center; margin-top: 6px; line-height: 1.5; }
.pmp-photo-formats {
    font-size: 0.68rem;
    color: rgba(212,175,55,0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 10px;
    font-weight: 600;
}
.pmp-required { color: #d4af37; }
.pmp-form-col { display: flex; flex-direction: column; gap: 1.1rem; }
.pmp-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(212,175,55,0.9);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 2px;
}
.pmp-optional {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 10px;
}
.pmp-input {
    width: 100%;
    padding: 0.95rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.98rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}
.pmp-input:hover { border-color: rgba(212,175,55,0.3); }
.pmp-input:focus {
    border-color: #d4af37;
    background: rgba(212,175,55,0.05);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}
.pmp-input::placeholder { color: rgba(255,255,255,0.25); }
.pmp-trust {
    margin-top: auto;
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 10px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}
.pmp-trust-icon {
    width: 20px; height: 20px;
    background: #d4af37;
    color: #0a0700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}
.pmp-cta {
    position: relative;
    width: 100%;
    padding: 1.15rem 2rem !important;
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #b8860b 100%) !important;
    background-size: 200% 100% !important;
    border: none !important;
    border-radius: 14px !important;
    color: #0a0700 !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    letter-spacing: 0.02em;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(212,175,55,0.3) !important;
    animation: pmpCtaShimmer 4s ease-in-out infinite;
    font-family: 'Inter', sans-serif;
}
.pmp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.5) !important;
}
.pmp-cta:active { transform: translateY(0); }
.pmp-cta:disabled { opacity: 0.6; cursor: not-allowed; transform: none; animation: none; }
.pmp-cta-icon { font-size: 1.25rem; }
.pmp-cta-shine {
    position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}
.pmp-cta:hover .pmp-cta-shine { left: 150%; }
@keyframes pmpCtaShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Fotoğraf silme butonu */
#cpf-remove-btn {
    position: absolute !important;
    top: 10px; right: 10px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(212,175,55,0.5);
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 5;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}
#cpf-remove-btn:hover {
    background: rgba(212,30,30,0.85);
    border-color: #ff6b6b;
    color: #fff;
    transform: scale(1.1);
}

/* ===== Portrait Modal — V4 Göz Alıcı ===== */
.pmp-v3 {
    max-width: 1080px !important;
    padding: 3rem !important;
    background:
        radial-gradient(ellipse at top left, rgba(212,175,55,0.12), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(184,134,11,0.08), transparent 50%),
        linear-gradient(160deg, #0a0604 0%, #1a1208 100%) !important;
    border: 1px solid rgba(212,175,55,0.3) !important;
    border-radius: 28px !important;
    animation: pmpEnter 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pmpEnter {
    from { opacity: 0; transform: scale(0.94) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.pmp-v3::before, .pmp-v3::after {
    content: '';
    position: absolute;
    width: 56px; height: 56px;
    border: 2px solid rgba(212,175,55,0.45);
    pointer-events: none;
    z-index: 1;
}
.pmp-v3::before {
    top: 18px; left: 18px;
    border-right: none; border-bottom: none;
    border-top-left-radius: 18px;
}
.pmp-v3::after {
    bottom: 18px; right: 18px;
    border-left: none; border-top: none;
    border-bottom-right-radius: 18px;
}

.pmp-title { font-size: 2.2rem !important; }
.pmp-eyebrow { font-size: 0.75rem !important; }

.pmp-grid-v4 {
    grid-template-columns: 1fr 1.15fr !important;
    gap: 2.5rem !important;
}
@media (max-width: 860px) {
    .pmp-grid-v4 { grid-template-columns: 1fr !important; gap: 1.4rem !important; }
    .pmp-showcase-col { display: none !important; }
    .pmp-v3 { padding: 1.5rem !important; }
}

.pmp-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.pmp-showcase-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.pmp-showcase-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.2);
    border: 3px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(135deg, #d4af37, #b8860b 40%, #f5d485 70%, #d4af37) border-box;
}
.pmp-showcase-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform 8s ease;
}
.pmp-showcase-frame:hover .pmp-showcase-img { transform: scale(1.06); }
.pmp-showcase-overlay { position: absolute; top: 12px; left: 12px; z-index: 2; }
.pmp-showcase-badge {
    background: rgba(212,175,55,0.95);
    color: #0a0700;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}
.pmp-showcase-quote {
    position: relative;
    padding: 1rem 1rem 1rem 2.4rem;
    background: rgba(212,175,55,0.04);
    border-left: 2px solid rgba(212,175,55,0.4);
    border-radius: 6px;
}
.pmp-quote-mark {
    position: absolute; top: -2px; left: 8px;
    color: #d4af37;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    line-height: 1;
    opacity: 0.7;
}
.pmp-showcase-quote p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
}
.pmp-trust-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    font-size: 0.82rem;
}
.pmp-trust-star { color: #d4af37; font-weight: 700; }
.pmp-trust-sep { color: rgba(255,255,255,0.3); }
.pmp-trust-text { color: rgba(255,255,255,0.7); }

.pmp-photo-big { min-height: 320px !important; aspect-ratio: 4 / 3 !important; }

.pmp-input {
    padding: 1.05rem 1.2rem !important;
    font-size: 1rem !important;
    background: rgba(255,255,255,0.03) !important;
}
.pmp-input:focus {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 4px rgba(212,175,55,0.15),
        0 8px 20px rgba(212,175,55,0.15) !important;
}

.pmp-cta {
    padding: 1.3rem 2rem !important;
    font-size: 1.15rem !important;
    border-radius: 16px !important;
    margin-top: 0.5rem;
}
.pmp-cta:hover { transform: translateY(-3px) scale(1.005); }
