.elementor-1095 .elementor-element.elementor-element-5a3e39a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ae86e0e *//* --- TEMEL DEĞİŞKENLER --- */
:root {
    --royal-blue: #134686;
    --royal-gold: #FEB21A;
    --text-dark: #333333;
    --text-light: #555555;
    --bg-color: #fafafa;
    --card-bg: #ffffff;
}

/* --- GENEL AYARLAR --- */
/* Not: Body ayarını sitenin genelini bozmaması için silebilirsin */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.rh-section {
    padding: 60px 20px 100px 20px;
}

.rh-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* --- BAŞLIK ALANI --- */
.rh-header-center {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 40px; 
}

.rh-subtitle {
    display: block;
    color: var(--royal-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.rh-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--royal-blue);
    margin: 0 0 20px 0;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
}

.rh-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-weight: 500;
}

/* --- ÜRÜN KARTLARI (GRID) --- */
.rh-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.rh-product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.rh-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(19, 70, 134, 0.15);
}

.rh-product-img-box {
    height: 280px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f2f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Resim Ayarları */
.rh-product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rh-product-card:hover .rh-product-img-box img {
    transform: scale(1.1);
}

.rh-product-info {
    padding: 25px;
    text-align: center;
    border-top: 4px solid var(--royal-gold);
    background: #fff;
    position: relative;
    z-index: 2;
}

.rh-product-info h3 {
    color: var(--royal-blue);
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.rh-product-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* --- ÖZELLİKLER (FEATURES) --- */
.rh-features-section {
    background: var(--royal-blue);
    border-radius: 30px;
    padding: 60px 40px;
    color: #fff;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.rh-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.rh-feature-item {
    text-align: center;
}

.rh-feature-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--royal-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 32px;
    color: var(--royal-gold);
}

.rh-feature-item h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.rh-feature-item p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* --- NASIL ÇALIŞIR (PROCESS) --- */
.rh-process-section {
    text-align: center;
    padding-bottom: 60px;
}

.rh-process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.rh-step-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: var(--card-bg);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.rh-step-card:hover {
    border-bottom: 3px solid var(--royal-gold);
    transform: translateY(-5px);
}

.rh-step-number {
    background: var(--royal-blue);
    color: var(--royal-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(19, 70, 134, 0.3);
}

.rh-step-card h3 {
    color: var(--royal-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rh-cta-text {
    margin-top: 60px;
    font-size: 20px;
    font-weight: 600;
    color: var(--royal-blue);
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
    display: inline-block;
    max-width: 800px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .rh-features-grid { grid-template-columns: 1fr; gap: 30px; }
    .rh-title { font-size: 32px; }
    .rh-features-section { padding: 40px 20px; }
}
/* ================================
   TOWEL COMPARISON – CLEAN VERSION
================================ */

/* SECTION */
.rh-towel-compare {
    background: transparent;
}

/* GRID */
.rh-towel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.rh-towel-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rh-towel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(19, 70, 134, 0.12);
}

/* IMAGE BOX */
/* IMAGE CONTAINER – FIXED & SAFE */
.rh-towel-image {
    position: relative;
    height: 300px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0; /* KRİTİK */
}

/* IMAGE ITSELF */
.rh-towel-image img {
    max-width: 95%;   /* KRİTİK */
    max-height: 85%;  /* KRİTİK */
    width: auto;
    height: auto;
    object-fit: contain;
}


/* LABEL */
.rh-towel-label {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: var(--royal-blue);
    font-weight: 800;
    padding: 7px 22px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid var(--royal-gold);
}

/* CONTENT */
.rh-towel-content {
    padding: 35px 30px 40px;
}

.rh-towel-content h3 {
    color: var(--royal-blue);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* LIST */
.rh-towel-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rh-towel-content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.rh-towel-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--royal-gold);
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .rh-towel-grid {
        grid-template-columns: 1fr;
    }

    .rh-towel-image {
        height: 260px;
    }
}
/* SEO Bloğu Genel Stil */
.rh-products-container {
    padding: 30px;
    margin: 40px auto;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-family: 'Montserrat', sans-serif;
}

.rh-intro-text {
    font-size: 18px;
    color: #134686; /* Royal Blue */
    border-left: 5px solid #FEB21A; /* Gold */
    padding-left: 20px;
    margin-bottom: 25px;
}

.rh-products-container h2 {
    color: #134686;
    font-size: 26px;
    margin-top: 30px;
    font-weight: 700;
}

.rh-seo-links a {
    color: #134686;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #FEB21A;
}

.rh-seo-links a:hover {
    color: #FEB21A;
    border-bottom-color: #134686;
}

/* 900 Kelimeyi Gizleyen Ama Yoast'a Okutan Sihirli Kod */
.rh-hidden-seo-content {
    display: block;
    height: 1px;
    width: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}/* End custom CSS */