/* ===================================================
   BGC Products Premium Theme - Main CSS v1.1
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
  --clr-red: #610000;
  --clr-red-dark: #3b0000;
  --clr-orange: #ff8a3d;
  --clr-orange-hover: #fa6c0f;
  --clr-bg: #100b0b;
  --clr-surface: #1d1616;
  --clr-text: #f9f9f9;
  --clr-text-muted: #aaaaaa;
  
  --glass-bg: rgba(29, 22, 22, 0.7);
  --glass-border: rgba(255, 138, 61, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== GLOBAL LINK COLOR FIX ===== */
a,
a:link,
a:visited,
a:active,
p a,
div a,
span a,
li a,
.woocommerce a,
.woocommerce-page a,
.woocommerce a.added_to_cart,
.woocommerce .products a,
.woocommerce ul.products li.product a,
.woocommerce div.product a,
.woocommerce .woocommerce-breadcrumb a,
.posted_in a,
.tagged_as a,
.product_meta a,
.product-category a,
.woocommerce-loop-product__title,
ins,
del {
  color: var(--clr-orange) !important;
  text-decoration: none !important;
}

a:hover {
  color: var(--clr-orange-hover) !important;
}

/* Kill ALL blue text anywhere */
.woocommerce span.onsale,
.woocommerce .price,
.woocommerce .price span,
.woocommerce .price ins,
.woocommerce .price del,
.woocommerce .price .amount,
.woocommerce .amount,
.woocommerce ins .amount,
.woocommerce del .amount,
.product-price span,
.product-price ins,
.product-price del,
.price span,
.price ins,
.price del,
.price .amount {
  color: var(--clr-text) !important;
  text-decoration: none !important;
}

del .woocommerce-Price-amount,
del {
  opacity: 0.5 !important;
  color: var(--clr-text-muted) !important;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===== HEADER ===== */
.main-header {
  background-color: var(--clr-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 1.5rem;
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 450px;
  position: relative;
}

.header-search input {
  width: 100%;
  padding: 10px 44px 10px 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: all 0.3s;
}

.header-search input::placeholder {
  color: rgba(255,255,255,0.4);
}

.header-search input:focus {
  border-color: var(--clr-orange);
  background: rgba(255,255,255,0.12);
}

.header-search button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-orange);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: #000;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.header-search button:hover {
  background: #e5750f;
}

.logo a {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-bold {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--clr-orange) !important;
  letter-spacing: -1px;
}

.logo-text-light {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--clr-orange) !important;
  letter-spacing: 5px;
  margin-top: 2px;
}

.brand-logo {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.brand-logo:hover {
  transform: scale(1.05);
}

/* ===== CATEGORY BANNER (kahve.com style) ===== */
.category-banner {
  background: var(--clr-orange);
  border-bottom: 3px solid var(--clr-red);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-banner::-webkit-scrollbar { display: none; }

.category-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.cat-banner-link,
.cat-banner-link:link,
.cat-banner-link:visited {
  display: block;
  padding: 14px 22px;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: all 0.25s ease !important;
  position: relative;
  letter-spacing: 0.3px;
}

.cat-banner-link:hover {
  background: var(--clr-red) !important;
  color: #fff !important;
}

.cat-banner-link::after {
  display: none !important;
}

/* Header Auth Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-user-info {
  color: var(--clr-orange) !important;
  font-size: 0.9rem;
  font-weight: 300;
}
.header-user-info strong {
  color: #fff !important;
  font-weight: 600;
}

.header-icon-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
  white-space: nowrap;
}
.header-icon-btn:hover {
  color: #fff !important;
}
.header-icon-btn .hicon {
  font-size: 1.1rem;
}
.header-icon-btn::after { display: none !important; }

.header-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.15);
}

.header-btn-outline {
  border: 1.5px solid var(--clr-orange) !important;
  padding: 6px 18px !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  transition: all 0.3s !important;
  white-space: nowrap;
}
.header-btn-outline::after { display: none !important; }
.header-btn-outline:hover {
  background: rgba(255, 138, 61, 0.15) !important;
}

.header-btn-filled {
  background: var(--clr-orange) !important;
  color: #000 !important;
  padding: 6px 18px !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  white-space: nowrap;
}
.header-btn-filled::after { display: none !important; }
.header-btn-filled:hover {
  background: #e5750f !important;
  color: #fff !important;
  box-shadow: 0 0 12px rgba(255, 138, 61, 0.3) !important;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  margin-bottom: 4rem;
  padding: 4rem 2rem;
  border-radius: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, var(--clr-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--clr-text-muted);
  font-weight: 300;
}

/* ===== HERO VIDEO SECTION ===== */
.hero-video-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -2rem;
  height: 560px;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 0;
}

.hero-video-section iframe,
.hero-video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  border: none;
  object-fit: cover;
  pointer-events: none;
}

@media (max-aspect-ratio: 16/9) {
  .hero-video-section iframe,
  .hero-video-section video {
    width: 177.78vh;
    height: 100vh;
  }
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 2rem;
  pointer-events: none;
}

.hero-video-overlay .page-title {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.hero-video-overlay .page-subtitle {
  font-size: 1.3rem;
}

/* ===== CLEAN PRODUCT CARD (Professional) ===== */
.product-card-clean {
  background: var(--clr-surface);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

/* Product Image */
.pcc-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  background: #f5f5f5;
  padding: 0;
  overflow: hidden;
  text-decoration: none !important;
}

.pcc-image img,
.pcc-image .wp-post-image,
.pcc-image .attachment-woocommerce_thumbnail {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.35s ease !important;
}

.product-card-clean:hover .pcc-image img {
  transform: scale(1.04) !important;
}

/* Product Body */
.pcc-body {
  padding: 1rem 1.2rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pcc-category {
  font-size: 0.7rem !important;
  color: var(--clr-orange) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 4px !important;
  display: block;
}

.pcc-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.35 !important;
}
.pcc-title a,
.pcc-title a:link,
.pcc-title a:visited {
  color: var(--clr-text) !important;
  text-decoration: none !important;
}
.pcc-title a:hover {
  color: var(--clr-orange) !important;
}

.pcc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.6rem;
}

.pcc-price,
.pcc-price span,
.pcc-price .amount,
.pcc-price bdi {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: var(--clr-text) !important;
  text-decoration: none !important;
}
.pcc-price del,
.pcc-price del span {
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: var(--clr-text-muted) !important;
  opacity: 0.6 !important;
}

/* Circle Add-to-cart button */
.pcc-cart-btn,
.pcc-cart-btn:link,
.pcc-cart-btn:visited {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--clr-orange) !important;
  color: #000 !important;
  border-radius: 50% !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  padding: 0 !important;
  line-height: 1 !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  flex-shrink: 0;
}
.pcc-cart-btn:hover {
  background: var(--clr-red) !important;
  color: #fff !important;
  transform: scale(1.15) !important;
  box-shadow: 0 4px 12px rgba(97,0,0,0.4) !important;
}

/* ===== WIDGET SECTIONS ===== */
.widget-section {
  margin-top: 3.5rem;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(255,138,61,0.2);
}

.widget-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--clr-text);
  background: linear-gradient(135deg, #fff, var(--clr-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.widget-see-all,
.widget-see-all:link,
.widget-see-all:visited {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--clr-orange) !important;
  text-decoration: none !important;
  padding: 8px 20px;
  border: 1.5px solid var(--clr-orange);
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.widget-see-all:hover {
  background: var(--clr-orange) !important;
  color: #000 !important;
}

.widget-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

/* ===== INFO BANNER SECTION ===== */
.info-banner-section {
  margin-top: 5rem;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.info-features {
  margin-top: 3rem;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.info-feature-item {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.info-feature-item:last-child {
  border-right: none;
}
.info-feature-item h3 {
  color: var(--clr-orange);
  font-size: 1.8rem;
}
.info-feature-item p {
  color: var(--clr-text-muted);
}

/* ===== ABOUT CTA ===== */
.about-cta-section {
  margin-top: 5rem;
  padding: 4rem 2rem;
  border-radius: 20px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.about-cta-text {
  flex: 1;
  min-width: 300px;
}
.about-cta-text p {
  color: var(--clr-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-cta-image {
  flex: 1;
  min-width: 300px;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ===== VIDEO SECTION ===== */
.bgc-video-section {
  margin-top: 4rem;
  text-align: center;
}

.bgc-video-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--clr-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
}

.bgc-video-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}

.bgc-video-wrapper iframe,
.bgc-video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
}

/* Buttons */
.btn-primary,
.button,
.add_to_cart_button,
.ajax_add_to_cart,
.single_add_to_cart_button,
a.added_to_cart {
  background: var(--clr-orange) !important;
  color: #000 !important;
  border: none !important;
  padding: 0.7rem 1.5rem !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  border-radius: 30px !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
}

.btn-primary:hover,
.button:hover,
.add_to_cart_button:hover,
.ajax_add_to_cart:hover,
.single_add_to_cart_button:hover,
a.added_to_cart:hover {
  background: var(--clr-orange-hover) !important;
  box-shadow: 0 0 15px rgba(255, 138, 61, 0.5) !important;
  transform: scale(1.05) !important;
  color: #000 !important;
}

/* ===== SWIPER ===== */
.product_slider {
  width: 100%;
  padding: 20px 40px 60px 40px;
}

/* Force all slides same height */
.swiper-wrapper {
  align-items: stretch !important;
}

.swiper-slide {
  height: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.swiper-slide .glass-product,
.swiper-slide .product-card-clean {
  flex: 1;
}

.swiper-pagination-bullet {
  background: var(--clr-text);
}

.swiper-pagination-bullet-active {
  background: var(--clr-orange);
}

/* ===== SINGLE PRODUCT PAGE - kahve.com exact ===== */

/* Breadcrumb */
.kc-breadcrumb {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  color: #888;
}
.kc-breadcrumb a {
  color: #555 !important;
  text-decoration: none !important;
}
.kc-breadcrumb a:hover { color: #073d60 !important; }
.kc-breadcrumb span { margin: 0 6px; color: #ccc; }
.kc-breadcrumb .current { color: #333; }

/* Main 3-Column Product Grid */
.kc-product-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.kc-product-grid {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 0.9fr;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border: 1px solid #eaeaea;
}

/* Gallery Column */
.kc-gallery {
  background: #f8f9fa;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eaeaea;
}

.kc-gallery-main {
  position: relative;
  background: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  min-height: 400px;
}

.kc-gallery-main img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.kc-viewers {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.kc-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 5px;
}

.kc-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.kc-thumb:hover, .kc-thumb.active {
  border-color: #073d60;
}

/* Info Column */
.kc-info {
  padding: 2rem 2.5rem;
  color: #333;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eaeaea;
}

.kc-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.kc-brand {
  font-size: 0.9rem;
  color: #073d60 !important;
  margin-bottom: 0.8rem;
  cursor: pointer;
}

.kc-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.kc-stars { color: #f39c12 !important; font-size: 1rem; }
.kc-rating-num { font-weight: 700; color: #333 !important; }
.kc-rating-sep { color: #ccc !important; }
.kc-rating-count { color: #888 !important; }

.kc-description {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.kc-description p { color: #444 !important; }

/* Profile Card */
.kc-profile-card {
  background: #f8f9fa;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.kc-profile-header {
  padding: 0.8rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  border-bottom: 1px solid #eaeaea;
}

.kc-profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid #f0f0f0;
}
.kc-profile-row:last-child { border-bottom: none; }

.kc-profile-label {
  font-size: 0.85rem;
  color: #666;
  min-width: 100px;
}

.kc-profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kc-badge {
  background: #fff;
  border: 1px solid #d0d5dd;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #333 !important;
  white-space: nowrap;
}

.kc-short-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}
.kc-short-desc p { color: #666 !important; }

/* Cart Box Column */
.kc-cart-box {
  background: #fafbfc;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.kc-big-price {
  font-size: 2rem;
  font-weight: 800;
  color: #073d60 !important;
  margin-bottom: 1.5rem;
}
.kc-big-price span,
.kc-big-price .woocommerce-Price-amount,
.kc-big-price .amount,
.kc-big-price bdi {
  color: #073d60 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}
.kc-big-price del,
.kc-big-price del span {
  color: #aaa !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  opacity: 0.6 !important;
}
.kc-big-price ins {
  text-decoration: none !important;
}

/* WooCommerce Cart Form inside cart box */
.kc-cart-box form.cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kc-cart-box form.cart .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  overflow: hidden;
  height: 52px;
}

.kc-cart-box form.cart .quantity input.qty {
  width: 100%;
  text-align: center;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  outline: none;
  background: #fff;
  height: 100%;
  color: #333;
}

.kc-cart-box form.cart button.single_add_to_cart_button {
  width: 100% !important;
  padding: 1rem !important;
  background: #073d60 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  height: 56px !important;
}

.kc-cart-box form.cart button.single_add_to_cart_button:hover {
  background: #052d48 !important;
  box-shadow: 0 4px 15px rgba(7, 61, 96, 0.3) !important;
  transform: none !important;
}

.kc-out-of-stock {
  color: #c0392b;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 0;
}

.kc-delivery-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f0f7ff;
  border: 1px solid #d0e3f5;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== TABS SECTION ===== */
.kc-tabs-wrap {
  max-width: 1300px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.kc-tabs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Hide Ürün Bilgisi / Ek Bilgiler tabs completely */
.kc-tabs-left {
  display: none !important;
}

.kc-tab-headers { display: none !important; }
.kc-tab-content { display: none !important; }
.kc-tab-btn { display: none !important; }
.kc-tab-text { display: none !important; }
.kc-attr-table { display: none !important; }

/* Reviews - Full Width, Dark Theme */
.kc-reviews-right {
  background: var(--clr-surface);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}

.kc-reviews-header {
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,138,61,0.06);
}
.kc-reviews-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
}

.kc-reviews-list {
  max-height: 500px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.kc-review-card {
  padding: 1.2rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.kc-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.kc-review-top strong { color: var(--clr-text) !important; font-size: 0.95rem; }
.kc-review-stars { color: #f39c12 !important; }

.kc-review-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted) !important;
  line-height: 1.6;
  margin: 0;
}

.kc-review-date {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 0.3rem;
  display: block;
}

.kc-review-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem;
  background: var(--clr-orange) !important;
  color: #000 !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none !important;
}
.kc-review-btn:hover {
  background: var(--clr-red) !important;
  color: #fff !important;
}

/* ===== RELATED PRODUCTS ===== */
.kc-related-wrap {
  max-width: 1300px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.kc-related-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 1.5rem;
}

.kc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.kc-related-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none !important;
}
.kc-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 138, 61, 0.15);
}

.kc-related-img {
  background: #fff;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.kc-related-img img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.kc-related-info {
  padding: 1rem;
}

.kc-related-rating {
  font-size: 0.8rem;
  color: #f39c12 !important;
}

.kc-related-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-text) !important;
  margin: 0.3rem 0;
  line-height: 1.3;
}

.kc-related-price {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--clr-text) !important;
}
.kc-related-price span { color: var(--clr-text) !important; }

/* ===== TRUST BADGES ===== */
.kc-trust-badges {
  max-width: 1300px;
  margin: 2rem auto 4rem auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.kc-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.kc-trust-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.kc-trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--clr-text);
  margin-bottom: 4px;
}

.kc-trust-item p {
  font-size: 0.8rem;
  color: var(--clr-text-muted) !important;
  margin: 0;
  line-height: 1.4;
}

/* WooCommerce form overrides on single product */
.bgc-sp-cart-box .cart,
.bgc-sp-cart-box form.cart {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bgc-sp-cart-box form.cart .quantity {
  width: 100%;
  margin-bottom: 10px;
}

.bgc-sp-cart-box form.cart .quantity input.qty {
  width: 100%;
  padding: 0.8rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: #333;
}

.bgc-sp-cart-box form.cart button.single_add_to_cart_button {
  width: 100% !important;
  padding: 1rem !important;
  background: #0c6a54 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.bgc-sp-cart-box form.cart button.single_add_to_cart_button:hover {
  background: #0a5241 !important;
  box-shadow: 0 5px 20px rgba(12, 106, 84, 0.4) !important;
  transform: none !important;
}

/* Fix big-price inner WooCommerce spans */
.bgc-sp-cart-box .big-price span,
.bgc-sp-cart-box .big-price .woocommerce-Price-amount,
.bgc-sp-cart-box .big-price .amount,
.bgc-sp-cart-box .big-price bdi {
  color: #0c6a54 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.bgc-sp-cart-box .big-price del,
.bgc-sp-cart-box .big-price del span,
.bgc-sp-cart-box .big-price del .amount {
  color: #aaa !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  opacity: 0.6 !important;
}

/* ===== SHOP GRID (Tüm Ürünler) ===== */
.bgc-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem;
}

.bgc-shop-pagination {
  text-align: center;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.bgc-shop-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.bgc-shop-pagination .nav-links a,
.bgc-shop-pagination .nav-links span {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--clr-text) !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: var(--transition);
}

.bgc-shop-pagination .nav-links a:hover {
  background: var(--clr-orange) !important;
  color: #000 !important;
}

.bgc-shop-pagination .nav-links .current {
  background: var(--clr-orange) !important;
  color: #000 !important;
}

/* ===== WooCommerce Global Overrides ===== */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
}

/* WooCommerce notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--clr-surface) !important;
  color: var(--clr-text) !important;
  border-top-color: var(--clr-orange) !important;
}

.woocommerce-message::before {
  color: var(--clr-orange) !important;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .kc-product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kc-cart-box {
    grid-column: 1 / -1;
    border-top: 1px solid #eaeaea;
  }
  .kc-tabs-grid {
    grid-template-columns: 1fr;
  }
  .kc-trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kc-product-grid {
    grid-template-columns: 1fr;
  }
  .kc-gallery {
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
  .kc-info {
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
  .main-header {
    flex-direction: column;
    padding: 1.5rem;
    height: auto;
    gap: 1.5rem;
  }
  .main-nav ul {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-title {
    font-size: 2.2rem;
  }
  .bgc-shop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .kc-trust-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bgc-shop-grid {
    grid-template-columns: 1fr;
  }
  .bgc-auth-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MY ACCOUNT / LOGIN & REGISTER PAGE ===== */
.woocommerce-account .page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.woocommerce-account .woocommerce h2,
.woocommerce-account h2 {
  color: var(--clr-text) !important;
}

/* Premium Auth Container */
.bgc-auth-wrap {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.bgc-auth-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bgc-auth-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--clr-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.bgc-auth-header p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

.bgc-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.bgc-auth-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.bgc-auth-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bgc-auth-card .auth-subtitle {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.bgc-auth-card label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
  margin-top: 1.2rem;
}

.bgc-auth-card label .required {
  color: var(--clr-orange) !important;
}

.bgc-auth-card input[type="text"],
.bgc-auth-card input[type="email"],
.bgc-auth-card input[type="password"] {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}

.bgc-auth-card input[type="text"]:focus,
.bgc-auth-card input[type="email"]:focus,
.bgc-auth-card input[type="password"]:focus {
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(255, 138, 61, 0.15);
}

.bgc-auth-card .bgc-auth-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.9rem;
  background: var(--clr-orange) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  font-family: 'Outfit', sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bgc-auth-card .bgc-auth-btn:hover {
  background: var(--clr-orange-hover) !important;
  box-shadow: 0 5px 20px rgba(255, 138, 61, 0.3) !important;
  transform: translateY(-2px) !important;
}

.bgc-auth-card .auth-extras {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.bgc-auth-card .auth-extras a {
  color: var(--clr-orange) !important;
  font-size: 0.85rem;
}

.bgc-auth-card .auth-extras label {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}

.bgc-auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
  color: var(--clr-text-muted);
  font-size: 0.8rem;
}

.bgc-auth-divider::before,
.bgc-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* Override WooCommerce default forms on my-account */
.woocommerce form.login,
.woocommerce form.register {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.woocommerce .col-1,
.woocommerce .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .widget-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .widget-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .main-header {
    padding: 0.6rem 1.5rem;
  }
  .header-search {
    max-width: 300px;
  }
  .category-banner-inner {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .widget-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-header {
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .header-search {
    order: 3;
    max-width: 100%;
    flex-basis: 100%;
  }
  .category-banner {
    padding: 0 0.5rem;
  }
  .cat-banner-link {
    padding: 12px 16px;
    font-size: 0.82rem !important;
  }
  .widget-header {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }
  .info-features {
    flex-direction: column;
  }
  .info-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

@media (max-width: 480px) {
  .widget-products-grid {
    grid-template-columns: 1fr;
  }
}
