:root {
    --primary-color: #a36b55;
    --dark-color: #1a1a1a;
    --border-color: #ececec;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: #fff;
    line-height: 1.6;
    padding-top: 120px;
    /* Standart sayfalarda menü yüksekliği */
}

.playfair {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.section-wrapper {
    padding: 80px 0;
    width: 100%;
}

.bg-white {
    background-color: #ffffff;
}

.bg-soft-gray {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .section-wrapper {
        padding: 40px 0;
    }

    .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

.top-bar {
    background: #000000;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 40px;
    z-index: 1100;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-move 28s linear infinite;
    backface-visibility: hidden;
    perspective: 1000px;
}

.marquee-content span {
    display: inline-block;
    padding-right: 60px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
}

@keyframes marquee-move {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

#mainNavbar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
    background: #fff !important;
    /* Standart sayfalarda her zaman beyaz */
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1050;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.logo-text {
    transition: all 0.3s ease;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    display: inline-block;
}

#mainNavbar.scrolled {
    padding: 10px 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#mainNavbar.scrolled .logo-text {
    font-size: 1.4rem;
}

.menu-link {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000 !important;
    /* Standart siyah */
    position: relative;
}

@media (min-width: 992px) {
    .menu-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: var(--transition);
        transform: translateX(-50%);
    }

    .menu-link:hover::after,
    .menu-link.active::after {
        width: 100%;
    }
}

/* --- YENİ EKLENEN: PREMIUM BANNER VE SLIDER TASARIMI --- */
.premium-slider-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 40px);
    overflow: hidden;
}

.premium-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.7s ease;
}

.premium-slider-item:hover img {
    transform: scale(1.02);
}

.premium-banner {
    position: relative;
    width: 100%;
    height: 55vh;
    overflow: hidden;
    margin-bottom: 2px;
}

.premium-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s ease;
}

.premium-banner:hover img {
    transform: scale(1.03);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.4s ease;
}

.premium-banner:hover .banner-overlay,
.premium-slider-item:hover .banner-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.banner-overlay h2 {
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.banner-overlay span {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Eski Hero Section */
.hero-section {
    height: 85vh;
    width: 100%;
    max-width: 100vw;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.product-card {
    border: none;
    background: transparent;
    transition: var(--transition);
    position: relative;
    padding-bottom: 10px;
    width: 100%;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    background: #fcfcfc;
    border-radius: 4px;
}

.product-img-wrapper img {
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    text-transform: uppercase;
    z-index: 5;
}

.product-action {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 85%;
    transition: var(--transition);
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    /* Tıklamaların alttaki stretched-link'e geçmesi için */
}

.product-card:hover .product-action {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

@media screen and (max-width: 991px) {
    .product-action {
        transform: translateX(-50%) translateY(0) !important;
        opacity: 1 !important;
        bottom: 10px !important;
        display: block !important;
        pointer-events: none;
    }
}

.btn-inspect {
    background: #fff;
    color: #000;
    border: none;
    font-size: 11px;
    font-weight: 700;
    padding: 12px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
    /* Stretched-link'in üstüne çıkması için */
}

.product-info {
    text-align: center;
    padding: 15px 5px;
}

.product-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #111;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    color: #000;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* =========================================
   MÜHENDİS DOKUNUŞU: ŞEFFAF NAVBAR (SADECE ANA SAYFADA)
   ========================================= */
@media (min-width: 992px) {

    /* SADECE ANA SAYFA (.home-page) İÇİN GEÇERLİ OLANLAR */
    body.home-page {
        padding-top: 40px !important;
    }

    body.home-page #mainNavbar {
        background: transparent !important;
        box-shadow: none !important;
        transition: background-color 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
    }

    body.home-page #mainNavbar.scrolled {
        background: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }

    body.home-page #mainNavbar:not(.scrolled) .logo-text,
    body.home-page #mainNavbar:not(.scrolled) .menu-link,
    body.home-page #mainNavbar:not(.scrolled) i,
    body.home-page #mainNavbar:not(.scrolled) span {
        color: #ffffff !important;
    }

    body.home-page #mainNavbar:not(.scrolled) .menu-link::after {
        background: #ffffff !important;
    }
}

@media (max-width: 991px) {
    .logo-text {
        font-size: 1.6rem !important;
    }

    .hero-section {
        height: 60vh;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 100px;
        /* Mobilde her sayfada 100px */
    }

    /* Sadece ana sayfa mobil boşluğu */
    body.home-page {
        padding-top: 100px !important;
    }

    .marquee-content {
        animation-duration: 14s !important;
    }

    .hero-section {
        height: 50vh;
        width: 100%;
    }

    .premium-banner {
        height: auto !important;
        aspect-ratio: 16/9;
    }
    .premium-banner img {
        height: 100% !important;
        object-fit: cover;
    }

    .banner-overlay h2 {
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
    }

    .banner-overlay span {
        font-size: 9px !important;
    }

    .logo-text {
        font-size: 1.3rem !important;
    }

    .product-title {
        font-size: 12px;
        height: 18px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-action {
        display: none !important;
    }

    .row.g-2 {
        margin-right: -4px !important;
        margin-left: -4px !important;
    }

    .row.g-2>[class*="col-"] {
        padding-right: 4px !important;
        padding-left: 4px !important;
    }

    /* Mobile scroll row removed per user request to use standard wrap grid */
}

footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    width: 100%;
}

.detail-main-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.size-selector input[type="radio"] {
    display: none;
}

.size-selector label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.size-selector input[type="radio"]:checked+label {
    background-color: var(--dark-color);
    color: #fff;
    border-color: var(--dark-color);
}

.social-float-wrapper {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.social-float-btn.whatsapp {
    background-color: #25D366;
}

.social-float-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .social-float-wrapper {
        right: 15px;
        bottom: 20px;
        gap: 10px;
    }

    .social-float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

.paytr-iframe-wrapper {
    width: 100%;
    position: relative;
    background: #ffffff;
    min-height: 650px;
}

#paytrIframe {
    width: 100% !important;
    min-height: 650px !important;
    border: none !important;
    display: block;
}

@media (max-width: 767px) {

    .paytr-iframe-wrapper,
    #paytrIframe {
        min-height: 700px !important;
    }
}

#mobileMenu {
    top: 100px !important;
    height: calc(100vh - 100px) !important;
    border-top: 1px solid #eee;
}

.offcanvas-backdrop {
    top: 100px !important;
    height: calc(100vh - 100px) !important;
}

/* =========================================
   PREMIUM YORUM VE DEĞERLENDİRME ALANI CSS
   ========================================= */
.reviews-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.rating-summary-box {
    background-color: #fafafa;
    border: 1px solid var(--border-color);
    padding: 30px;
    text-align: center;
    border-radius: 0;
}

.rating-large-num {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
}

.rating-stars-display {
    color: #ffc107;
    font-size: 16px;
}

.rating-stars-interactive {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 8px;
}

.rating-stars-interactive input {
    display: none;
}

.rating-stars-interactive label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s ease-in-out, transform 0.1s ease-in-out;
}

.rating-stars-interactive label:hover,
.rating-stars-interactive label:hover~label,
.rating-stars-interactive input:checked~label {
    color: #ffc107;
}

.rating-stars-interactive label:active {
    transform: scale(0.85);
}

.review-card {
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 0;
    padding: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.review-user-badge {
    background-color: #e8f5e9;
    color: #2e7d32;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rating-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #555;
}

.rating-bar-progress {
    flex-grow: 1;
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: #ffc107;
    border-radius: 10px;
}
.size-selector input[type="radio"]:checked+label {
    background-color: var(--dark-color);
    color: #fff;
    border-color: var(--dark-color);
}

.social-float-wrapper {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.social-float-btn.whatsapp {
    background-color: #25D366;
}

.social-float-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .social-float-wrapper {
        right: 15px;
        bottom: 20px;
        gap: 10px;
    }

    .social-float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

.paytr-iframe-wrapper {
    width: 100%;
    position: relative;
    background: #ffffff;
    min-height: 650px;
}

#paytrIframe {
    width: 100% !important;
    min-height: 650px !important;
    border: none !important;
    display: block;
}

@media (max-width: 767px) {

    .paytr-iframe-wrapper,
    #paytrIframe {
        min-height: 700px !important;
    }
}

#mobileMenu {
    top: 100px !important;
    height: calc(100vh - 100px) !important;
    border-top: 1px solid #eee;
}

.offcanvas-backdrop {
    top: 100px !important;
    height: calc(100vh - 100px) !important;
}

/* =========================================
   PREMIUM YORUM VE DEĞERLENDİRME ALANI CSS
   ========================================= */
.reviews-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.rating-summary-box {
    background-color: #fafafa;
    border: 1px solid var(--border-color);
    padding: 30px;
    text-align: center;
    border-radius: 0;
}

.rating-large-num {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
}

.rating-stars-display {
    color: #ffc107;
    font-size: 16px;
}

.rating-stars-interactive {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 8px;
}

.rating-stars-interactive input {
    display: none;
}

.rating-stars-interactive label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s ease-in-out, transform 0.1s ease-in-out;
}

.rating-stars-interactive label:hover,
.rating-stars-interactive label:hover~label,
.rating-stars-interactive input:checked~label {
    color: #ffc107;
}

.rating-stars-interactive label:active {
    transform: scale(0.85);
}

.review-card {
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 0;
    padding: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.review-user-badge {
    background-color: #e8f5e9;
    color: #2e7d32;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rating-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: #555;
}

.rating-bar-progress {
    flex-grow: 1;
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background-color: #ffc107;
    border-radius: 10px;
}

.review-comment-text {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
}

@keyframes premium-pulse { 
    0% { opacity: 1; transform: scale(1); } 
    50% { opacity: 0.5; transform: scale(1.03); } 
    100% { opacity: 1; transform: scale(1); } 
} 
.premium-pulse-text { 
    animation: premium-pulse 1.2s infinite ease-in-out; 
    display: inline-block; 
    transform-origin: left center; 
}