/* 
 * FENERBAHÇE ANKARA SPOR OKULLARI
 * Premium Ürünler Sayfası - Designer Edition
 */

/* === GENEL STILLER === */
.fb-products-page {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* === PREMIUM HEADER === */
.fb-page-title {
    background: linear-gradient(135deg, #001a33 0%, #002244 50%, #003366 100%);
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 34, 68, 0.3);
}

.fb-page-title::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 217, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fb-page-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.fenerbahceankara.org/wp-content/uploads/2025/11/FB_YENI_LOGO.png') no-repeat center;
    background-size: 350px;
    opacity: 0.04;
    z-index: 0;
}

.fb-page-title h1 {
    color: #FFD900;
    font-size: 48px;
    font-weight: 900;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(255, 217, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.fb-page-title p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease;
}

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

/* === PREMIUM INFO BANNER === */
.fb-info-banner {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFEDCC 50%, #FFE5B8 100%);
    border: none;
    border-left: 6px solid #FFD900;
    padding: 30px 40px;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 217, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.fb-info-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 217, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.fb-info-banner p {
    margin: 10px 0;
    color: #002244;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.fb-info-banner p i {
    margin-right: 12px;
    font-size: 18px;
}

.fb-info-banner strong {
    color: #002244;
    font-weight: 700;
}

/* === SECTION TITLES === */
.fb-section-title {
    color: #002244;
    font-size: 36px;
    font-weight: 800;
    margin: 60px 0 40px 0;
    padding-bottom: 20px;
    border-bottom: 4px solid #FFD900;
    position: relative;
    display: inline-block;
}

.fb-section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100px;
    height: 4px;
    background: #002244;
}

.fb-section-title i {
    color: #FFD900;
    margin-right: 15px;
    text-shadow: 0 2px 10px rgba(255, 217, 0, 0.3);
}

/* === PREMIUM PRODUCT CARDS === */
.fb-product-item {
    margin-bottom: 40px;
    perspective: 1000px;
}

.fb-product-box {
    background: #fff;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.fb-product-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD900 0%, #FFC700 50%, #FFD900 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.fb-product-box:hover::before {
    transform: scaleX(1);
}

.fb-product-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 34, 68, 0.25),
                0 0 30px rgba(255, 217, 0, 0.2);
}

/* === PRODUCT IMAGE === */
.fb-product-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-shrink: 0;
}

.fb-product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 34, 68, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fb-product-box:hover .fb-product-image::after {
    opacity: 1;
}

.fb-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.fb-product-box:hover .fb-product-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

/* === ZOOM OVERLAY === */
.fb-product-image a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 217, 0, 0.95);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 217, 0, 0.4);
}

.fb-product-image a::after {
    content: '\f00e';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 26px;
    color: #002244;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.fb-product-box:hover .fb-product-image a::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.fb-product-box:hover .fb-product-image a::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* === PRODUCT LABEL === */
.fb-product-label {
    padding: 20px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 2px solid #f0f0f0;
    position: relative;
}

.fb-product-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #FFD900 50%, transparent 100%);
}

.fb-product-label strong {
    color: #002244;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    transition: all 0.3s ease;
}

.fb-product-box:hover .fb-product-label strong {
    color: #FFD900;
    letter-spacing: 1px;
}

/* === PREMIUM BADGE === */
.fb-product-box::after {
    content: 'LİSANSLI';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD900 0%, #FFC700 100%);
    color: #002244;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 217, 0, 0.4);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.fb-product-box:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .fb-page-title h1 { 
        font-size: 36px; 
    }
    .fb-section-title { 
        font-size: 28px; 
    }
    .fb-product-image { 
        height: 280px; 
    }
}

@media (max-width: 767px) {
    .fb-page-title {
        padding: 60px 30px;
        margin-bottom: 40px;
    }
    .fb-page-title h1 { 
        font-size: 32px; 
        letter-spacing: 2px;
    }
    .fb-section-title { 
        font-size: 24px; 
    }
    .fb-product-image { 
        height: 240px; 
    }
    .fb-info-banner {
        padding: 25px 20px;
    }
    .fb-product-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .fb-page-title h1 { 
        font-size: 26px; 
    }
    .fb-product-image { 
        height: 220px; 
    }
}

/* === MICRO ANIMATIONS === */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fb-product-box:active {
    animation: pulse 0.3s ease;
}

/* === GLOWING EFFECT === */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 217, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 217, 0, 0.6);
    }
}

.fb-section-title {
    animation: glow 3s ease-in-out infinite;
}
