/* ============================================================
   GENEL AYARLAR
============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    padding-top: 70px; /* Rose Gold ticker için boşluk */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================================
   ROSE GOLD TICKER BAR
============================================================ */
.ticker-bar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 35px;
    z-index: 9999;

    background: linear-gradient(
        90deg,
        #f7e4e1,
        #e9b9af,
        #e4a39c,
        #e9b9af,
        #f7e4e1
    );
    border-bottom: 1px solid #d79b92;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #532f2f;
}

.ticker-item .label {
    text-transform: uppercase;
}

.ticker-item .value {
    font-weight: 700;
    color: #3b1f1f;
}

.ticker-item .change {
    font-size: 12px;
    font-weight: 600;
}

.ticker-item .icon {
    font-size: 11px;
    margin-left: 2px;
}

.up {
    color: #0ba86b !important;
}

.down {
    color: #d14a58 !important;
}

/* Mobilde ticker */
@media (max-width: 768px) {
    .ticker-bar {
        flex-wrap: wrap;
        gap: 12px;
        padding: 8px 0;
        font-size: 13px;
    }
}

/* ============================================================
   HEADER
============================================================ */
/* ============================
   HEADER – LOGO + MENÜ GRUP
   ============================ */

.main-header {
    width: 100%;
    background: #ffffffcc;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e8c6c6;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* LOGO + MENÜ SOL BLOK */
    gap: 40px; /* LOGO ile MENÜ arasındaki boşluk */
}

/* LOGO */
.header-logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-left: 5px;
}

/* MENÜ */
.main-menu {
    display: flex;
    align-items: center;
    gap: 35px; /* Menü elemanları arası boşluk */
}

.main-menu a {
    font-size: 17px;
    text-decoration: none;
    color: #8d6f76;
    font-weight: 600;
    transition: 0.3s ease;
    letter-spacing: .5px;
}

.main-menu a:hover {
    color: #d7a7a7;
    text-shadow: 0px 0px 8px rgba(215, 167, 167, 0.6);
}

/* Mobil */
@media(max-width: 768px) {
    .main-menu {
        display: none;
    }

    .header-logo img {
        height: 60px;
    }
}
/* ============================================================
   ROSE SEPARATOR BAR
============================================================ */
.rose-separator {
    width: 100%;
    height: 20px;  /* İstersen artırıp azaltabilirsin */
    background: linear-gradient(
        90deg,
        #f7e4e1,
        #e9b9af,
        #e4a39c,
        #e9b9af,
        #f7e4e1
    );
    border-top: 1px solid #d7a39a;
    border-bottom: 1px solid #d7a39a;
}
/* ============================================================
   HERO SECTION – FİYAT KARTLARI (FINAL & TEMİZ)
============================================================ */
.hero-section {
    padding: 60px 0 40px;
    background-color: #fcfcfc;
    background-image: linear-gradient(
        135deg,
        rgba(233, 185, 175, 0.18),
        rgba(247, 228, 225, 0.5)
    );
    background-image: url('./images/rose-pattern.png');
    background-repeat: repeat;
    background-size: 100px auto;
    background-position: top center;
}

.hero-section h1 {
    text-align: center;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 35px;
    color: #3b1f1f;
}

/* ==============================
   HERO PRICE SWIPER
================================ */
.heroPriceSwiper {
    width: 100%;
    overflow: hidden;
}

.heroPriceSwiper .swiper-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Kart */
.heroPriceSwiper .card {
    width: 230px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0d1ca;
}

.heroPriceSwiper .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}

.heroPriceSwiper .card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.heroPriceSwiper .card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #4b2a2a;
    font-family: 'Montserrat', sans-serif;
}

.heroPriceSwiper .card .price {
    font-size: 24px;
    font-weight: 700;
    color: #c27a63;
}

/* ==============================
   DESKTOP (Slider Kapalı)
================================ */
@media (min-width: 769px) {
    .heroPriceSwiper .swiper-slide {
        width: 230px !important;
        flex-shrink: 0;
    }
}

/* ==============================
   MOBİL (Slider Aktif)
================================ */
@media (max-width: 768px) {
    .heroPriceSwiper {
        padding-bottom: 10px;
    }

    .heroPriceSwiper .swiper-wrapper {
        justify-content: flex-start;
        gap: 0;
    }

    .heroPriceSwiper .swiper-slide {
        width: 75% !important;
        max-width: 260px;
    }

    .heroPriceSwiper .card {
        margin: 0 auto;
    }
}

/* Küçük mobil */
@media (max-width: 480px) {
    .heroPriceSwiper .swiper-slide {
        width: 85% !important;
    }
}
/* Desktop'ta kartlar KESİLMESİN */
@media (min-width: 769px) {
    .heroPriceSwiper {
        overflow: visible;
    }
}

.hero-section {
    background-image: url('./images/rose-pattern.png');
    background-repeat: repeat;
    background-size: 100px auto;   /* Buradan kontrol edeceğiz */
    background-position: top center;
}

/* ============================================================
   ROSE SEPARATOR BAR
============================================================ */
.rose-separator {
    width: 100%;
    height: 20px;  /* İstersen artırıp azaltabilirsin */
    background: linear-gradient(
        90deg,
        #f7e4e1,
        #e9b9af,
        #e4a39c,
        #e9b9af,
        #f7e4e1
    );
    border-top: 1px solid #d7a39a;
    border-bottom: 1px solid #d7a39a;
}


.four-product-slider {
  width: 100%;
  padding: 30px 20px;
}

.product-card {
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

.product-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-top: 4px;
}

/* Slider Ayarları */
.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
  color: #222;
}

.productSwiper .swiper-pagination-bullet-active {
  background: #000;
}

/* Mobil uyum */
@media (max-width: 1024px) {
  .productSwiper .swiper-slide {
    width: 33.33%;
  }
}

@media (max-width: 768px) {
  .productSwiper .swiper-slide {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .productSwiper .swiper-slide {
    width: 100%;
  }
}



/* ============================================================
   İLETİŞİM & HARİTA (YATAY)
============================================================ */
.contact-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-section h2 {
    text-align: center;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 35px;
    color: #3b1f1f;
}

.contact-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-map {
    flex: 2;
    min-width: 260px;
}

.contact-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.contact-info {
    flex: 1;
    min-width: 230px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-box {
    background-color: #faf7f6;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f0d1ca;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.info-box h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #b26f5c;
    font-family: 'Montserrat', sans-serif;
}

.info-box p {
    font-size: 14px;
    color: #444;
}

.info-box a {
    color: #444;
    text-decoration: none;
}

.info-box a:hover {
    color: #b26f5c;
}

/* Mobil iletişim */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
    }

    .contact-map iframe {
        height: 280px;
    }
}
/* ============================================================
   WHATSAPP STYLE LIGHT CHAT BUTTON
============================================================ */
.chatbot-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366; /* WhatsApp yeşili */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 99999;
    transition: transform 0.2s ease;
}
.chatbot-button:hover {
    transform: scale(1.08);
}


/* ============================================================
   CHATBOX — WHATSAPP LIGHT STYLE
============================================================ */
.chatbot-box {
    width: 340px;
    height: 470px;
    position: fixed;
    bottom: 95px;
    right: 25px;
    background: #ffffff;
    border: 1px solid rgba(210, 210, 210, 0.7);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 99999;
    font-family: 'Open Sans', sans-serif;
}

/* Header (WhatsApp Light + Gold Touch) */
.chat-header {
    background: #f4f3f1;
    padding: 14px 15px;
    color: #444;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid rgba(200,200,200,0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-header .chat-close {
    cursor: pointer;
    font-size: 18px;
    color: #888;
}
.chat-header .chat-close:hover {
    color: #c7a862; /* Gold ton */
}


/* ============================================================
   CHAT WINDOW (LIGHT)
============================================================ */
.chat-window {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #ece5dd; /* WhatsApp light background */
}

/* Genel mesaj balonu */
.message {
    max-width: 80%;
    padding: 10px 13px;
    margin-bottom: 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.45;
}


/* ============================================================
   KULLANICI MESAJI — WhatsApp Light Yeşil
============================================================ */
.user-message {
    background: #d9fdd3;
    color: #111;
    margin-left: auto;
    border-bottom-right-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}


/* ============================================================
   BOT MESAJI — PREMIUM GOLD TASARIM
============================================================ */
.bot-message {
    background: #ffffff;
    color: #333;
    border-left: 4px solid #c7a862; /* Premium Gold çizgi */
    border-bottom-left-radius: 3px;
    box-shadow: 0px 3px 8px rgba(199,168,98,0.20);
    padding: 12px 14px !important;
}

.bot-message::before {
    content: "⟡";
    color: #c7a862;
    margin-right: 6px;
    font-size: 12px;
}


/* ============================================================
   INPUT ALANI (WHATSAPP LIGHT)
============================================================ */
.chat-input-area {
    background: #f6f6f6;
    padding: 12px;
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(210,210,210,0.6);
}

.chat-input-area input {
    flex: 1;
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #222;
}
.chat-input-area input::placeholder {
    color: #999;
}

.chat-input-area button {
    padding: 10px 14px;
    background: #25D366;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
}
.chat-input-area button:hover {
    background: #1ebc59;
}


/* ============================================================
   FOOTER
============================================================ */
.main-footer {
    background-color: #111;
    color: #eee;
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}
