/*
Theme Name: Çiçekçi Maltepe
Theme URI: https://www.cicekcimaltepe.com
Author: Antigravity AI
Author URI: https://www.cicekcimaltepe.com
Description: Maltepe çiçek siparişi için özel olarak tasarlanmış, SEO uyumlu ve İyzico entegreli premium WordPress e-ticaret teması.
Version: 1.0.0
Text Domain: cicekcimaltepe
Tags: e-commerce, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/
/* Alt menü konumlandırması için üst elemana pozisyon ver */
.main-navigation ul li {
    position: relative;
}

/* Varsayılanda alt menüyü gizle ve kutu haline getir */
.main-navigation ul li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 9999;
}

/* Alt menünün içindeki elemanları üst üste diz */
.main-navigation ul li .sub-menu li {
    display: block;
    width: 100%;
}

.main-navigation ul li .sub-menu li a {
    display: block;
    padding: 8px 16px;
    white-space: nowrap;
}

/* Mouse ile üzerine gelince alt menüyü göster */
.main-navigation ul li:hover > .sub-menu {
    display: block;
}
/* 
=====================================================
1. CSS Variables & Design Tokens (Premium Aesthetics)
=====================================================
*/
:root {
  /* Colors */
  --primary-color: #e62c5d; /* Vibrant pink/red for flowers */
  --primary-hover: #275839;
  --secondary-color: #1a1a1a;
  --text-color: #333333;
  --text-muted: #666666;
  --bg-color: #fcfcfc;
  --bg-card: #ffffff;
  --border-color: #eaeaea;
  
  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  
  /* Effects */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 20px rgba(0,0,0,0.12);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.homepage-seo{

    max-width:1280px;
    margin:80px auto;
    padding:0 20px;

}

.seo-row{

    display:flex;
    align-items:center;
    gap:70px;
    margin-bottom:90px;

}

.seo-row.reverse{

    flex-direction:row-reverse;

}

.seo-image{

    width:50%;

}

.seo-image img{

    width:100%;
    display:block;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.seo-text{

    width:50%;

}

.seo-text h2{

    font-size:38px;
    margin-bottom:25px;
    color:#222;
    font-weight:700;

}

.seo-text p{

    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:18px;

}
/* 
=====================================================
2. Reset & Base Styles
=====================================================
*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* 
=====================================================
3. Utility Classes
=====================================================
*/
.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* 
=====================================================
4. Header & Navigation
=====================================================
*/
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-top {
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}

.header-top a {
  color: #fff;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo img{
    height:60px;
    width:auto;
    display:block;
}
.search-bar {
  flex: 1;
  max-width: 500px;
  margin: 0 40px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background-color: #f9f9f9;
  font-family: var(--font-main);
  transition: var(--transition);
}

.search-bar input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(229, 44, 92, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary-color);
  font-size: 0.85rem;
  font-weight: 500;
}

.header-action-btn i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.main-navigation {
  border-top: 1px solid var(--border-color);
  padding: 10px 0;
}

.main-navigation ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-navigation a {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 5px;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.main-navigation a:hover::after {
  width: 100%;
}

/* 
=====================================================
5. Hero/Banner Section
=====================================================
*/
.hero-section {
  padding: var(--spacing-lg) 0;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.banner-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.banner-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.banner-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.banner-item:hover img {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 20px;
  color: #fff;
}

.banner-title {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.2rem;
}

/* 
=====================================================
6. WooCommerce & Products
=====================================================
*/
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: var(--spacing-xl);
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-code {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.9);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.product-info {
  padding: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #10b981; /* Yeşil renk */
}
.product-price2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #10b981; /* Yeşil renk */
}

/* 
=====================================================
7. Footer
=====================================================
*/
.site-footer {
  background-color: var(--secondary-color);
  color: #fff;
  padding: var(--spacing-xl) 0 0;
  margin-top: var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: var(--spacing-xl);
}

.footer-widget h4 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget a {
  color: #cccccc;
}

.footer-widget a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

/* 
=====================================================
8. Product Detail Page (Single Product)
=====================================================
*/

/* Breadcrumb */
.pd-breadcrumb {
  padding: 20px 0;
  background: #f9f9f9;
  border-bottom: 1px solid var(--border-color);
}

.pd-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.pd-breadcrumb-list li::before {
  content: '';
}

.pd-breadcrumb-list li + li::before {
  content: '›';
  margin-right: 8px;
  color: var(--text-muted);
}

.pd-breadcrumb-list a {
  color: var(--text-muted);
}

.pd-breadcrumb-list a:hover {
  color: var(--primary-color);
}

.pd-breadcrumb-list .active {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Product Details Container */
.pd-product-details {
  padding: 30px 0 40px;
}

.pd-product-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Gallery */
.pd-gallery {
  flex: 0 0 50%;
  max-width: 50%;
}

.pd-gallery-main {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
}

.pd-gallery-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.pd-gallery-main img:hover {
  transform: scale(1.03);
}

.pd-gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.6;
}

.pd-thumb:hover,
.pd-thumb.active {
  border-color: var(--primary-color);
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(229, 44, 92, 0.2);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info */
.pd-info {
  flex: 1;
}

.pd-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pd-sku {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.pd-price-box {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.pd-price-amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #10b981; /* Yeşil renk */
}

.pd-price-currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: #10b981;
}

.pd-short-desc {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

/* Location Input Box */
.pd-location-box {
  position: relative; /* Added for autocomplete absolute positioning */
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  background-color: #fff;
  border-radius: 4px;
  overflow: visible; /* Changed for autocomplete drop-down */
  margin-bottom: 25px;
}

.pd-location-icon {
  background-color: #f1f2f4;
  padding: 15px 20px;
  border-right: 1px solid var(--border-color);
  color: #1a1a1a;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pd-location-input {
  flex: 1;
  border: none;
  padding: 15px 20px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  color: var(--text-color);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pd-location-input::placeholder {
  color: var(--text-muted);
}

.pd-autocomplete-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}

.pd-autocomplete-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
  font-size: 0.9rem;
  transition: var(--transition);
}

.pd-autocomplete-item:last-child {
  border-bottom: none;
}

.pd-autocomplete-item:hover {
  background: #f9f9f9;
  color: var(--primary-color);
}

/* Delivery Details UI */
.pd-delivery-details {
  background: #fafafa;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pd-delivery-section {
  margin-bottom: 15px;
}

.pd-delivery-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.pd-date-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-date-btn {
  flex: 1 1 0;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  color: var(--text-color);
  min-width: 80px;
}

.pd-date-btn.active, .pd-date-btn:hover {
  border-color: var(--primary-color);
  background: rgba(229, 44, 92, 0.05);
  color: var(--primary-color);
}

.pd-date-btn strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.pd-time-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-color);
  background-color: #fff;
  outline: none;
  cursor: pointer;
}

.pd-time-select:focus {
  border-color: var(--primary-color);
}

.pd-extra-fee-display {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-top: 15px;
  border-left: 4px solid #10b981;
}

/* Order Button */
.pd-order-section {
  margin-bottom: 25px;
}

.pd-order-btn {
  display: block;
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-main);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.pd-order-btn:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 44, 92, 0.25);
}

/* Shipping Info Badges */
.pd-shipping-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  margin-bottom: 15px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pd-ship-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-color);
  font-weight: 500;
}

.pd-ship-item i {
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* Payment Note */
.pd-payment-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.5;
}

.pd-payment-note i {
  margin-right: 4px;
}

/* Categories */
.pd-categories {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pd-cat-label {
  font-weight: 600;
  color: var(--text-color);
}

.pd-categories a {
  color: var(--primary-color);
}

/* Product Description Section */
.pd-description-section {
  padding: 40px 0;
  background: #f9f9f9;
  border-top: 1px solid var(--border-color);
}

.pd-desc-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
}

.pd-desc-content {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.8;
}

.pd-desc-content p {
  margin-bottom: 15px;
}

/* Related Products Section */
.pd-related-section {
  padding: 40px 0 60px;
}

.pd-related-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
}

.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.pd-related-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.pd-related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.pd-related-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.pd-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pd-related-card:hover .pd-related-img img {
  transform: scale(1.08);
}

.pd-related-info {
  padding: 12px 15px 15px;
  text-align: center;
}

.pd-related-code {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.pd-related-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pd-related-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* 
=====================================================
9. Responsive Adjustments
=====================================================
*/
@media (max-width: 768px) {
  .header-main {
    flex-wrap: wrap;
  }
  
  .banner-grid {
    grid-template-columns: 1fr;
  }
  
  .search-bar {
    order: 3;
    margin: 15px 0 0;
    max-width: 100%;
    flex: 0 0 100%;
  }
  
  .main-navigation ul {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
  
  .section-title {
    font-size: 2rem;
  }

  /* Product Detail Mobile */
  .pd-product-row {
    flex-direction: column;
    gap: 25px;
  }

  .pd-gallery {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pd-title {
    font-size: 1.4rem;
  }

  .pd-price-amount {
    font-size: 2.4rem;
  }

  .pd-shipping-info {
    flex-direction: column;
    gap: 12px;
  }

  .pd-related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pd-order-btn {
    max-width: 100%;
  }
}

/* --- Sepet Sayfası Özel Tasarımı (Cart Page) --- */
/* Klasik (Shortcode) Sepet Stilleri */
.woocommerce-cart table.cart .product-thumbnail img {
  width: 130px !important;
  max-width: 130px !important;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}
.woocommerce-cart table.cart td.product-name a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
}
.woocommerce-cart table.cart td.product-price .amount,
.woocommerce-cart table.cart td.product-subtotal .amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: #10b981 !important;
}

/* Modern (Gutenberg Block) Sepet Stilleri */
.wc-block-cart-item__image img,
.wc-block-components-product-image img {
  width: 130px !important;
  max-width: 130px !important;
  border-radius: 8px !important;
  border: 1px solid var(--border-color);
}
.wc-block-components-product-name,
.wc-block-components-product-name a {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.wc-block-components-product-name a:hover {
  color: var(--primary-color) !important;
}
.wc-block-cart-item__prices .wc-block-formatted-money-amount,
.wc-block-components-totals-item__value .wc-block-formatted-money-amount {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #10b981 !important;
}

/* Sağ taraftaki Toplam Fiyatlar (Subtotal/Total) - 2pt daha büyük */
.wc-block-cart-item__total .wc-block-formatted-money-amount,
.wc-block-components-totals-footer-item .wc-block-formatted-money-amount,
.wc-block-components-totals-item__value .wc-block-formatted-money-amount {
  font-size: 1.55rem !important; /* Normalden yaklaşık 2pt daha büyük */
  font-weight: 900 !important;
  color: #10b981 !important;
}

/* Sitenin Kendi Kargo Sistemini Gizle (Sadece Bizim Özel Teslimat Ücretimiz Kalsın) */
.wc-block-components-totals-shipping {
  display: none !important;
}

/* "Sepet toplamları" Başlığını "Sepet Toplamı" Olarak Değiştir */
.wc-block-cart__totals-title {
  visibility: hidden;
  position: relative;
}
.wc-block-cart__totals-title::after {
  content: "Sepet Toplamı";
  visibility: visible;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* "Ödemeye git" Butonunu "Siparişi Tamamla" Olarak Değiştir ve Renklendir */
.wc-block-cart .wc-block-components-checkout-button,
.wc-block-cart__submit-button {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  position: relative;
}
.wc-block-cart .wc-block-components-checkout-button:hover,
.wc-block-cart__submit-button:hover {
  background-color: #10b981 !important; /* Mouse over da yeşil olsun */
}

/* İçindeki yazıyı değiştirme hilesi */
.wc-block-components-checkout-button .wc-block-components-button__text {
  visibility: hidden;
}
.wc-block-components-checkout-button .wc-block-components-button__text::after {
  content: "Siparişi Tamamla";
  visibility: visible;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  font-weight: 800; /* Yazı kalın (bold) olsun */
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .woocommerce-cart table.cart .product-thumbnail img,
  .wc-block-cart-item__image img,
  .wc-block-components-product-image img {
    width: 90px !important;
    max-width: 90px !important;
  }
  .woocommerce-cart table.cart td.product-name a,
  .wc-block-components-product-name,
  .wc-block-components-product-name a {
    font-size: 1.15rem !important;
  }
}

/* --- Ödeme Sayfası (Checkout Page) Özel Stilleri --- */
/* Checkout Başlığını Gizle ve Üstteki Boşluğu Kaldır */
.woocommerce-checkout .entry-header,
.woocommerce-checkout h1.entry-title,
.woocommerce-checkout h1.wp-block-post-title,
.woocommerce-checkout .wp-block-post-title {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-checkout .site-main,
.woocommerce-checkout .entry-content,
.woocommerce-checkout article {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Checkout "Gönderim Seçenekleri" (Kargo Firması Seçimi) Alanını Gizle */
.wc-block-checkout__shipping-method,
.wc-block-components-shipping-rates-control,
.wc-block-checkout__shipping-option {
  display: none !important;
}
/* WooCommerce ürün listeleme butonunu ana sayfadaki btn-primary ile aynı yap */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .button,
.woocommerce .products .button {

    display: inline-block;
    width: 100%;

    background-color: var(--primary-color) !important;
    color: #fff !important;

    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: none;

    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce .products .button:hover {

    background-color: var(--primary-hover) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.page-section{

padding:70px 0;

}

.page-title{

font-size:36px;

margin-bottom:30px;

font-weight:700;

}

.page-content{

line-height:1.8;

font-size:16px;

}


