/* ============================================================= AXENDELL — POLISH.CSS (Faz 2.3) Scroll progress · trust grid · card tilt · spotlight glow ============================================================= */ /* ---------- 1) Scroll Progress Bar ---------- */ .ax-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 9999; pointer-events: none; background: transparent; } .ax-progress__bar { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, #8c6a16 0%, #d4af37 45%, #f3dd84 80%, #d4af37 100%); box-shadow: 0 0 12px rgba(212, 175, 55, .55); transition: width .08s linear; border-radius: 0 2px 2px 0; } /* ---------- 2) Trust Section ---------- */ .ax-section--trust { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); } .ax-trust { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(20px, 3vw, 36px); margin-top: clamp(32px, 5vw, 56px); } @media (max-width: 920px) { .ax-trust { grid-template-columns: 1fr; } } .ax-trust__group { background: linear-gradient(180deg, rgba(212,175,55,.04) 0%, rgba(7,7,10,.4) 100%); border: 1px solid rgba(212, 175, 55, .14); border-radius: 20px; padding: clamp(20px, 2.4vw, 32px); backdrop-filter: blur(6px); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; } .ax-trust__group:hover { transform: translateY(-3px); border-color: rgba(212, 175, 55, .32); box-shadow: 0 18px 48px -22px rgba(212, 175, 55, .35); } .ax-trust__label { display: inline-flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: #d4af37; margin: 0 0 22px; } .ax-trust__label svg { width: 18px; height: 18px; } .ax-trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; } @media (max-width: 540px) { .ax-trust__grid { grid-template-columns: repeat(2, 1fr); } } .ax-trust__item { display: flex; align-items: center; justify-content: center; height: 64px; border-radius: 12px; background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.25)); border: 1px solid rgba(255, 255, 255, .06); transition: transform .3s ease, border-color .3s ease, background .3s ease; } .ax-trust__item:hover { transform: translateY(-2px); border-color: rgba(212, 175, 55, .35); background: linear-gradient(180deg, rgba(212,175,55,.08), rgba(0,0,0,.3)); } .ax-trust__brand { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .92rem; letter-spacing: .04em; color: #f3dd84; text-transform: uppercase; } .ax-trust__badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; } .ax-trust__badge { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 18px; border-radius: 12px; background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.25)); border: 1px solid rgba(255, 255, 255, .06); transition: transform .3s ease, border-color .3s ease; } .ax-trust__badge:hover { transform: translateY(-2px); border-color: rgba(212, 175, 55, .35); } .ax-trust__badge strong { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #f3dd84; letter-spacing: .02em; } .ax-trust__badge span { font-family: 'Inter', sans-serif; font-size: .78rem; color: rgba(255, 255, 255, .58); letter-spacing: .02em; } /* ---------- 3) Card Spotlight (mouse follow glow) ---------- */ .ax-card, .ax-feature, .ax-quote, .ax-step { position: relative; isolation: isolate; } .ax-card::before, .ax-feature::before, .ax-quote::before, .ax-step::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient( 420px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, .14), transparent 55% ); opacity: 0; transition: opacity .35s ease; pointer-events: none; z-index: 0; } .ax-card:hover::before, .ax-feature:hover::before, .ax-quote:hover::before, .ax-step:hover::before { opacity: 1; } .ax-card > *, .ax-feature > *, .ax-quote > *, .ax-step > * { position: relative; z-index: 1; } /* ---------- 4) Subtle 3D tilt (transform set by JS) ---------- */ .ax-tilt { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(0); transition: transform .25s ease; will-change: transform; } /* ---------- 5) Reveal stagger refinement ---------- */ .ax-reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; } .ax-reveal.is-visible { opacity: 1; transform: translateY(0); } /* ---------- 6) Reduced motion ---------- */ @media (prefers-reduced-motion: reduce) { .ax-progress__bar, .ax-card::before, .ax-feature::before, .ax-quote::before, .ax-step::before, .ax-tilt, .ax-reveal { transition: none !important; transform: none !important; } .ax-tilt { transform: none !important; } } /* ---------- 7) Pulse Animation for Category Dots & Badges ---------- */ @keyframes ax-pulse-dot { 0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); } 70% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 0 6px rgba(255, 215, 0, 0); } 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); } } .ax-chip.is-active .ax-chip__dot, .ax-badge--active::before { animation: ax-pulse-dot 2s infinite; } /* ---------- 8) Smooth Grid Transitions ---------- */ .ax-grid-container { transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out; } .ax-grid-container.is-filtering { opacity: 0; transform: translateY(10px); } /* ---------- 9) WhatsApp Floating Badge & Pulse ---------- */ .ax-wa-wrapper { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; } .ax-wa-badge { background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 215, 0, 0.3); color: #FFD700; padding: 6px 12px; border-radius: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; box-shadow: 0 4px 15px rgba(0,0,0,0.3); animation: ax-float 3s ease-in-out infinite; pointer-events: none; } @keyframes ax-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } } .ax-wa-btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; position: relative; } .ax-wa-btn:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4); } .ax-wa-btn::after { content: ''; position: absolute; inset: -4px; border: 2px solid #25D366; border-radius: 50%; animation: ax-wa-pulse 2s infinite; opacity: 0; } @keyframes ax-wa-pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.4); opacity: 0; } } /* ---------- 10) Card Price Polish ---------- */ .ax-card__price .ax-currency { font-size: 0.6em; color: #FFD700; font-weight: 800; vertical-align: super; margin-left: 2px; } /* ============================================ DUYURU BANT RENKLERİ Bu kodu public_html/assets/css/polish.css'in EN SONUNA ekle ============================================ */ /* Varsayılan altın */ .ax-announce { background: linear-gradient(90deg, rgba(255,215,0,0.15) 0%, rgba(255,165,0,0.1) 100%); border-bottom: 1px solid rgba(255, 215, 0, 0.3); color: #FFD700; } /* Kırmızı (önemli/uyarı) */ .ax-announce[data-color="red"], body[data-announce-color="red"] .ax-announce { background: linear-gradient(90deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.1) 100%); border-bottom: 1px solid rgba(239, 68, 68, 0.4); color: #ff6b6b; } /* Yeşil (iyi haber) */ .ax-announce[data-color="green"], body[data-announce-color="green"] .ax-announce { background: linear-gradient(90deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.1) 100%); border-bottom: 1px solid rgba(34, 197, 94, 0.4); color: #4ade80; } /* Mavi (bilgi) */ .ax-announce[data-color="blue"], body[data-announce-color="blue"] .ax-announce { background: linear-gradient(90deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%); border-bottom: 1px solid rgba(59, 130, 246, 0.4); color: #60a5fa; } /* Mor (özel) */ .ax-announce[data-color="purple"], body[data-announce-color="purple"] .ax-announce { background: linear-gradient(90deg, rgba(168, 85, 247, 0.2) 0%, rgba(147, 51, 234, 0.1) 100%); border-bottom: 1px solid rgba(168, 85, 247, 0.4); color: #c084fc; } /* ============================================ AXENDELL - GÖLGESIZ KALIN BAŞLIK + ID GİZLE public_html/assets/css/polish.css EN SONUNA ekle ============================================ */ /* Kart genel */ .ax-card { background: rgba(20, 20, 20, 0.4) !important; border: 1px solid rgba(201, 161, 74, 0.35) !important; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important; overflow: hidden !important; position: relative !important; } .ax-card:hover { border-color: rgba(255, 215, 0, 0.7) !important; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 161, 74, 0.35), 0 0 80px rgba(255, 215, 0, 0.1) !important; transform: translateY(-8px) !important; } .ax-card__media img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important; } .ax-card:hover .ax-card__media img { transform: scale(1.05) !important; } /* ====== KART ÜSTÜ #14, #15 GİZLE ====== */ .ax-card__media .ax-card__id, .ax-card__id-badge, .ax-card__id, .ax-card__num, .ax-card__number, .ax-card__media-id, .ax-card__hashtag, .ax-card__no, .ax-card__pos, .ax-card__counter, .ax-card__media [class*="id"], .ax-card__media [class*="hash"], .ax-card__media [class*="num"] { display: none !important; visibility: hidden !important; opacity: 0 !important; } /* KART GÖVDE - GÜMÜŞ */ .ax-card__body { background: linear-gradient(135deg, #8a8a90 0%, #75757b 30%, #606066 70%, #4d4d52 100%) !important; position: relative !important; border-top: 1px solid rgba(180, 180, 185, 0.4) !important; } /* İç çizgi */ .ax-card__body::before { content: '' !important; position: absolute !important; top: 8px !important; left: 8px !important; right: 8px !important; bottom: 8px !important; border: 1px solid rgba(180, 180, 185, 0.35) !important; border-radius: 8px !important; pointer-events: none !important; z-index: 1 !important; } .ax-card__body > * { position: relative !important; z-index: 2 !important; } /* KATEGORİ DEKORU */ .ax-card__category-decor { display: flex !important; align-items: center !important; gap: 8px !important; margin: -4px 0 12px !important; width: 100% !important; } .ax-card__category-line { flex: 1 !important; height: 1px !important; background: linear-gradient(90deg, transparent 0%, rgba(255, 229, 153, 0.4) 50%, transparent 100%) !important; } .ax-card__category-badge { display: inline-flex !important; align-items: center !important; gap: 8px !important; padding: 4px 14px !important; font-size: 11px !important; font-weight: 800 !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; color: var(--cat-color, #FFD700) !important; background: rgba(0, 0, 0, 0.4) !important; border: 1px solid var(--cat-color, #FFD700) !important; border-radius: 100px !important; text-shadow: 0 0 12px var(--cat-color, #FFD700) !important; box-shadow: 0 0 16px rgba(0, 0, 0, 0.4), inset 0 0 8px rgba(0, 0, 0, 0.3) !important; white-space: nowrap !important; } .ax-card__category-icon { font-size: 9px !important; opacity: 0.7 !important; } .ax-card__category-badge--sold { color: #ef4444 !important; border-color: #ef4444 !important; text-shadow: 0 0 8px rgba(239, 68, 68, 0.5) !important; } /* META */ .ax-card__body .ax-card__meta { color: #FFE599 !important; font-weight: 700 !important; font-size: 13px !important; letter-spacing: 0.02em !important; text-align: center !important; margin-bottom: 8px !important; display: flex !important; justify-content: center !important; align-items: center !important; gap: 6px !important; } .ax-card__body .ax-card__meta span { color: #FFE599 !important; font-weight: 700 !important; } /* ====== BAŞLIK - SADECE KALIN, GÖLGESİZ ====== */ .ax-card__body .ax-card__title-link, .ax-card__body .ax-card__title { color: #FFEDB3 !important; -webkit-text-fill-color: #FFEDB3 !important; background: none !important; font-weight: 900 !important; text-align: center !important; text-shadow: none !important; letter-spacing: 0.3px !important; font-size: 18px !important; } /* Görüntülenme */ .ax-card__body .ax-card__stats { display: flex !important; justify-content: center !important; margin: 8px 0 !important; } .ax-card__view-count { display: inline-flex !important; align-items: center !important; gap: 6px !important; font-size: 12px !important; font-weight: 700 !important; color: #FFE599 !important; background: rgba(0, 0, 0, 0.25) !important; padding: 4px 12px !important; border-radius: 100px !important; border: 1px solid rgba(255, 229, 153, 0.25) !important; } /* Eski fiyat */ .ax-card__body .ax-card__old-price { color: rgba(255, 229, 153, 0.55) !important; text-decoration: line-through !important; font-weight: 600 !important; } /* DETAY BUTONU - ALTIN */ .ax-card__body .ax-btn--ghost { background: linear-gradient(135deg, rgba(201, 161, 74, 0.3) 0%, rgba(201, 161, 74, 0.15) 100%) !important; border: 1px solid rgba(255, 215, 0, 0.5) !important; color: #FFE599 !important; font-weight: 700 !important; transition: all 0.3s ease !important; } .ax-card__body .ax-btn--ghost:hover { background: linear-gradient(135deg, rgba(255, 215, 0, 0.4) 0%, rgba(201, 161, 74, 0.25) 100%) !important; border-color: #FFD700 !important; color: #FFFFFF !important; box-shadow: 0 4px 12px rgba(201, 161, 74, 0.3) !important; transform: translateY(-1px) !important; } .ax-card__body .ax-btn--primary { transition: all 0.3s ease !important; } .ax-card__body .ax-btn--primary:hover { transform: translateY(-1px) !important; box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4) !important; }
/* Elmas sayfası spotlight uzantıları */
.ax-diamond-card,
.ax-diamond-benefit,
.ax-diamond-step {
    position: relative;
    isolation: isolate;
}

.ax-diamond-card::before,
.ax-diamond-benefit::before,
.ax-diamond-step::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        420px circle at var(--mx, 50%) var(--my, 50%),
        rgba(139, 224, 255, .16),
        transparent 55%
    );
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
    z-index: 0;
}

.ax-diamond-card:hover::before,
.ax-diamond-benefit:hover::before,
.ax-diamond-step:hover::before {
    opacity: 1;
}

.ax-diamond-card > *,
.ax-diamond-benefit > *,
.ax-diamond-step > * {
    position: relative;
    z-index: 1;
}
