/* ==============================================================================
   İstanbul Fotoğrafçı - if-baski Custom Styles & HyperUI Design Tokens
   Kurumsal Renkler: #262626 ve #000000
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200');

:root {
    --brand-primary: #262626;
    --brand-black: #000000;
    --brand-accent: #2563EB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #1f2937;
    background-color: #f8fafc;
}

/* Google Material Symbols Outlined Kuralları */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Mobil 44px Dokunmatik Standartı */
@media (max-width: 639px) {
    .touch-target {
        min-height: 44px;
        min-width: 44px;
    }
}

/* İnce Kaydırma Çubuğu */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Fotoğraf Kırpma Çerçevesi (Cropper Overlay) & Beyaz Kağıt Katmanı */
.cropper-overlay-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.72);
    border: 2px solid rgba(255, 255, 255, 0.95);
    pointer-events: none;
    box-sizing: border-box;
    z-index: 10;
}

#crop-paper-sheet {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    box-shadow: 0 10px 35px -5px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    box-sizing: border-box;
    z-index: 1;
}

/* Toast Bildirim Konumu */
#toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 24rem;
    width: 100%;
    pointer-events: none;
}
#toast-container > * {
    pointer-events: auto;
}

/* Material Symbols Dolu Yıldız (Filled Star) */
.material-symbols-outlined.fill-1 {
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

/* Yorum Kaydırıcı (Slider) İnce Akış */
#reviews-slider-track {
    will-change: transform;
}

/* Sayı Girdilerindeki (Number Input) Tarayıcı Spinner Oklarını Tamamen Gizle ve Adet Sayacını Kusursuz Ortala */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    display: none !important;
    margin: 0 !important;
}
input[type=number] {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

.item-qty-input {
    -webkit-appearance: none !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    width: 2.75rem !important;
    font-variant-numeric: tabular-nums !important;
}
.item-qty-input::-webkit-inner-spin-button,
.item-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    display: none !important;
    margin: 0 !important;
}

