/* ========================================
   MERRI CANDLE - BOUTIQUE THEME
   Inspired by: Moovian
   Font: Manrope
   ======================================== */

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

/* ---- RESET & VARIABLES ---- */
:root {
  --beige:   #e9e4da;
  --cream:   #f4f1eb;
  --warm:    #914b2e;
  --warm-dk: #723b24;
  --dark:    #27272a;
  --mid:     #645e5e;
  --light:   #8e8787;
  --border:  #dcd7cd;
  --white:   #ffffff;
  --font:    'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body, html {
  font-family: var(--font) !important;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font) !important;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: var(--warm-dk); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- HIDE OLD THEME JUNK ---- */
.header-area,
.header-area *,
#reklam,
.popular-categories,
#story_watch,
#opactiy_bg,
#hikaye-sayisi,
.featured.section-padding,
footer.main,
.section-title.style-1,
.section-title.style-2,
.newsletter,
.footer-mid,
.widget-about,
.footer-link-widget,
.contact-infor,
.banner-left-icon,
.mobile-social-icon > h6,
.product-cart-wrap .product-action-1,
.product-cart-wrap .product-badge-left,
.product-action-2 { display: none !important; }

/* But keep mobile menu wrapper visible for JS */
.mobile-header-active { z-index: 9999; }

/* ---- PRELOADER ---- */
#preloader-active {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
#preloader-active img { max-width: 160px; }

/* ==============================
   ANNOUNCEMENT BAR
   ============================== */
.bc-announcement {
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 9px 20px;
  overflow: hidden;
  white-space: nowrap;
}
.bc-announcement marquee { display: inline-block; }

/* ==============================
   HEADER
   ============================== */
.bc-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.bc-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo – center */
.bc-logo { grid-column: 2; justify-self: center; }
.bc-logo img { max-height: 42px; width: auto; }

/* Nav – left */
.bc-nav { grid-column: 1; }
.bc-nav ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 28px; }
.bc-nav ul li { position: relative; }
.bc-nav ul li > a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--dark);
  padding: 8px 0;
  display: block;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.bc-nav ul li > a:hover,
.bc-nav ul li:hover > a { color: var(--warm-dk); border-color: var(--warm-dk); }

/* Dropdown */
.bc-nav .bc-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--white);
  min-width: 200px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
  padding: 12px 0;
  z-index: 999;
}
.bc-nav ul li:hover .bc-dropdown { display: block; }
.bc-dropdown li { padding: 0; }
.bc-dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: none !important;
  text-transform: none;
}
.bc-dropdown li a:hover { background: var(--cream); color: var(--warm-dk); }

.bc-nav-view-all a {
  color: var(--warm-dk) !important;
  font-weight: 700 !important;
  border-bottom: 1px solid var(--cream) !important;
  background-color: #faf8f5;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.bc-nav-view-all a::after {
  content: "→";
  font-size: 14px;
  margin-left: 8px;
  transition: transform 0.2s;
}
.bc-nav-view-all a:hover::after {
  transform: translateX(3px);
}

/* Icons – right */
.bc-icons { grid-column: 3; display: flex; gap: 18px; align-items: center; justify-content: flex-end; }
.bc-icons a {
  position: relative;
  font-size: 20px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bc-icons a:hover { color: var(--warm-dk); }
.bc-icon-label { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.bc-count {
  position: absolute;
  top: -7px; right: -8px;
  background: var(--warm-dk);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile hamburger */
.bc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.bc-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); transition: all .3s;
}

/* ==============================
   HERO SLIDER
   ============================== */
.bc-hero { position: relative; overflow: hidden; }
.bc-hero-slide {
  width: 100%;
  height: 80vh;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.bc-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.bc-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25));
  z-index: 2;
}
.bc-hero-caption {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
  color: #fff;
}
.bc-hero-caption h2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.bc-hero-desc {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 600px;
  text-shadow: 0 1px 5px rgba(0,0,0,0.25);
}
.bc-hero-caption a.bc-btn,
.bc-hero-caption .bc-btn {
  display: inline-block;
  padding: 13px 32px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .25s, color .25s;
  cursor: pointer;
}
.bc-hero-caption a.bc-btn:hover,
.bc-hero-caption .bc-btn:hover { background: #fff; color: var(--dark); }

/* Slider arrows from main.js – restyle */
.hero-slider-1-arrow .slick-prev,
.hero-slider-1-arrow .slick-next {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9) !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.hero-slider-1-arrow .slick-prev::before,
.hero-slider-1-arrow .slick-next::before { color: var(--dark); font-size: 18px; }

/* ==============================
   CATEGORY GRID (editorial 4-col)
   ============================== */
.bc-cats {
  padding: 60px 0 40px;
}
.bc-cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.bc-cat-item { position: relative; overflow: hidden; }
.bc-cat-item img {
  width: 100%; height: 320px;
  object-fit: cover;
  transition: transform .5s ease;
}
.bc-cat-item:hover img { transform: scale(1.04); }
.bc-cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.45));
  color: #fff;
  padding: 40px 20px 18px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ==============================
   SECTION HEADER
   ============================== */
.bc-section-header {
  text-align: center;
  padding: 50px 0 35px;
}
.bc-section-header h2 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 8px;
}
.bc-section-header h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
}

/* ==============================
   PRODUCT GRID
   ============================== */
.bc-products { padding: 0 0 60px; }
.bc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}
.bc-product-card { position: relative; }
.bc-product-img {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 3/4;
  margin-bottom: 14px;
}
.bc-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  cursor: pointer !important;
}
.bc-product-card:hover .bc-product-img img { transform: scale(1.05); }
.bc-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}
.bc-product-card:hover .bc-product-overlay { background: rgba(255,255,255,0.1); }
.bc-product-overlay-actions {
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s;
}
.bc-product-card:hover .bc-product-overlay-actions {
  opacity: 1;
  transform: translateY(0);
}
.bc-overlay-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.bc-overlay-btn:hover { background: var(--dark); color: #fff; }

/* Wishlist badge top-right */
.bc-product-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity .3s;
  cursor: pointer;
}
.bc-product-card:hover .bc-product-badge { opacity: 1; }

.bc-product-info { text-align: left; }
.bc-product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.bc-product-name a { color: inherit; }
.bc-product-name a:hover { color: var(--warm-dk); }
.bc-product-price {
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.bc-price-new {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.bc-price-old {
  font-size: 13px;
  font-weight: 400;
  color: var(--light);
  text-decoration: line-through;
}

/* ==============================
   VITRIN SECTION WRAPPER
   ============================== */
.bc-vitrin { padding: 0 0 60px; }
.bc-vitrin .bc-product-grid { margin-top: 0; }

/* ==============================
   MARQUEE STRIP (between sections)
   ============================== */
.bc-strip {
  background: var(--beige);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  margin: 20px 0 60px;
}
.bc-strip-inner {
  display: inline-flex;
  gap: 60px;
  animation: bc-strip-scroll 25s linear infinite;
}
.bc-strip-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-dk);
  display: flex;
  align-items: center;
  gap: 20px;
}
.bc-strip-item::after {
  content: '✦';
  font-size: 10px;
  color: var(--warm);
}
@keyframes bc-strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==============================
   EDITORIAL 2-COL FEATURE
   ============================== */
.bc-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 60px;
}
.bc-feature-img { overflow: hidden; height: 500px; }
.bc-feature-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.bc-feature:hover .bc-feature-img img { transform: scale(1.04); }
.bc-feature-body {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
.bc-feature-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-dk);
  margin-bottom: 16px;
}
.bc-feature-body h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.bc-feature-body p {
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px;
}
a.bc-btn-dark {
  display: inline-block;
  padding: 13px 32px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .25s;
  align-self: flex-start;
}
a.bc-btn-dark:hover { background: var(--warm-dk); color: #fff; }
a.bc-btn-warm {
  display: inline-block;
  padding: 13px 32px;
  background: var(--warm);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .25s;
}
a.bc-btn-warm:hover { background: var(--warm-dk); color: #fff; }

/* ==============================
   NEWSLETTER STRIP
   ============================== */
.bc-newsletter {
  background: var(--beige);
  padding: 60px 40px;
  text-align: center;
  margin: 0 0 0;
}
.bc-newsletter h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}
.bc-newsletter p {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 28px;
}
.bc-newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.bc-newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 13px;
  background: #fff;
}
.bc-newsletter-form button {
  padding: 14px 28px;
  background: var(--dark);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.bc-newsletter-form button:hover { background: var(--warm-dk); }

/* ==============================
   FOOTER — MODERN WHITE
   ============================== */

/* ---- Contact Strip ---- */
.bc-footer {
  background: #fff;
  border-top: 1px solid #ede9e3;
  font-family: var(--font);
}
.bc-ftr-strip {
  background: #faf8f5;
  border-bottom: 1px solid #ede9e3;
  padding: 20px 0;
}
.bc-ftr-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.bc-ftr-strip-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bc-ftr-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #ede2d5;
  border-radius: 8px;
  text-decoration: none !important;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.bc-ftr-contact-item:hover {
  border-color: #914b2e;
  box-shadow: 0 3px 10px rgba(145, 75, 46, 0.08);
}
.bc-ftr-ci-icon {
  width: 38px;
  height: 38px;
  background: #fdf5ee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #914b2e;
  flex-shrink: 0;
}
.bc-ftr-ci-body {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.bc-ftr-ci-body small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #999;
  text-transform: uppercase;
}
.bc-ftr-ci-body strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.2px;
}
.bc-ftr-strip-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.bc-ftr-hours,
.bc-ftr-email {
  font-size: 12.5px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.bc-ftr-hours i, .bc-ftr-email i { color: #914b2e; font-size: 15px; }
.bc-ftr-email:hover { color: #914b2e; }

/* ---- Main Footer Body ---- */
.bc-ftr-body {
  padding: 56px 0 40px;
}
.bc-ftr-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Brand Col */
.bc-ftr-brand {}
.bc-ftr-logo {
  max-height: 38px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: none !important;
  opacity: 1 !important;
}
.bc-ftr-brand p {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 260px;
}
.bc-ftr-social {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.bc-ftr-social a {
  width: 34px;
  height: 34px;
  border: 1.5px solid #e0d8cf;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.bc-ftr-social a:hover {
  background: #914b2e;
  border-color: #914b2e;
  color: #fff;
}
.bc-ftr-etbis { margin-top: 4px; }
.bc-ftr-etbis img {
  max-height: 55px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.bc-ftr-etbis img:hover { opacity: 1; }

/* Nav Cols */
.bc-ftr-col h6 {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0ebe4;
}
.bc-ftr-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bc-ftr-col ul li {
  margin-bottom: 10px;
}
.bc-ftr-col ul li a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.bc-ftr-col ul li a:hover {
  color: #914b2e;
  padding-left: 4px;
}

/* ---- Bottom Bar ---- */
.bc-ftr-bottom {
  border-top: 1px solid #ede9e3;
  background: #faf8f5;
  padding: 16px 0;
}
.bc-ftr-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.bc-ftr-bottom-inner p {
  font-size: 12px;
  color: #999;
  margin: 0;
}
.bc-ftr-bottom-inner p strong {
  color: #555;
}
.bc-ftr-payment-img {
  max-height: 28px;
  width: auto;
  opacity: 1;
  filter: none;
}


/* ==============================
   BUTTONS & UTILITIES
   ============================== */
.bc-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.bc-text-center { text-align: center; }
.bc-show-all-wrap { text-align: center; padding: 10px 0 30px; }
.bc-show-all {
  display: inline-block;
  padding: 13px 40px;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.bc-show-all:hover { background: var(--dark); color: #fff; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .bc-header-inner { padding: 0 20px; }
  .bc-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-product-grid { grid-template-columns: repeat(3, 1fr); }
  .bc-feature { grid-template-columns: 1fr; }
  .bc-feature-img { height: 320px; }
  .bc-ftr-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .bc-ftr-brand { grid-column: 1 / -1; }
  .bc-ftr-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  .bc-nav, .bc-icon-label { display: none !important; }
  .bc-hamburger { display: flex; }
  .bc-header-inner { grid-template-columns: auto 1fr auto; padding: 0 16px; height: 60px; }
  .bc-logo { grid-column: 2; }
  .bc-hamburger { grid-column: 1; }
  .bc-icons { grid-column: 3; gap: 12px; }
  .bc-icons a { font-size: 18px; }
  .bc-hero-slide { height: 55vh; min-height: 350px; }
  .bc-hero-caption h2 { font-size: 28px; }
  .bc-hero-caption { bottom: 30px; left: 20px; }
  .bc-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .bc-cat-item img { height: 200px; }
  .bc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bc-feature-body { padding: 40px 24px; }
  .bc-feature-body h2 { font-size: 24px; }
  .bc-ftr-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .bc-ftr-strip-inner { flex-direction: column; align-items: flex-start; }
  .bc-ftr-strip-right { width: 100%; }
  .bc-container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .bc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px 8px; }
  .bc-cats-grid { grid-template-columns: 1fr 1fr; }
  .bc-ftr-grid { grid-template-columns: 1fr; }
  .bc-ftr-brand { grid-column: auto; }
  .bc-section-header h3 { font-size: 24px; }
  .bc-ftr-contact-item { width: 100%; box-sizing: border-box; }
  .bc-ftr-bottom-inner { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   CATEGORY & SEARCH PRODUCT GRID OVERRIDES (BOOTSTRAP ADAPTATION)
   ========================================================================== */
.product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px 20px !important;
  margin: 0 !important;
}
.product-grid::before,
.product-grid::after {
  display: none !important;
}
.product-grid > div[class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px 8px !important; }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (urun.php)
   ========================================================================== */
.bc-product-detail-row {
  display: flex;
  gap: 50px;
  margin-top: 30px;
}
.bc-product-detail-left {
  width: 50%;
  flex-shrink: 0;
}
.bc-product-detail-right {
  width: calc(50% - 50px);
  flex-shrink: 0;
}

/* Gallery styling */
.bc-gallery-container {
  display: flex;
  gap: 20px;
}
.bc-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80px;
  flex-shrink: 0;
}
.bc-gallery-thumb-item {
  width: 80px;
  height: 80px;
  border: 1px solid #eaeaea;
  cursor: pointer;
  overflow: hidden;
  background: #fafafa;
  transition: border-color 0.2s;
}
.bc-gallery-thumb-item.active,
.bc-gallery-thumb-item:hover {
  border-color: #111;
}
.bc-gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bc-gallery-main {
  flex-grow: 1;
  border: 1px solid #f2f2f2;
  background: #fafafa;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.bc-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Detail Column */
.bc-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.bc-detail-price {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 24px;
}
.bc-detail-price .old-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
}
.bc-detail-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

/* Add-ons (Hediye seçenekleri) */
.bc-addons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.bc-addon-item {
  border: 1px solid #eee;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: border-color 0.2s;
}
.bc-addon-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  user-select: none;
}
.bc-addon-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #8c4d33;
}
.bc-addon-note-wrap {
  display: none;
  margin-top: 12px;
  width: 100%;
}
.bc-addon-note-wrap textarea {
  width: 100%;
  height: 80px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 13px;
  font-family: inherit;
  resize: none;
  outline: none;
}
.bc-addon-note-wrap textarea:focus {
  border-color: #8c4d33;
}

/* Actions */
.bc-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bc-qty-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  width: 110px;
  height: 48px;
  justify-content: space-between;
}
.bc-qty-btn {
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  user-select: none;
}
.bc-qty-btn:hover {
  color: #000;
}
.bc-qty-val {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}
.bc-action-buttons {
  display: flex;
  gap: 15px;
}
.bc-btn-cart {
  flex: 1;
  height: 48px;
  background: #f5f5f5;
  color: #111;
  border: 1px solid #111;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.bc-btn-cart:hover {
  background: #111;
  color: #fff;
}
.bc-btn-buy {
  flex: 1;
  height: 48px;
  background: #8c4d33;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}
.bc-btn-buy:hover {
  background: #753e28;
}

/* Accordions */
.bc-accordions {
  margin-top: 40px;
  border-top: 1px solid #eaeaea;
}
.bc-accordion-item {
  border-bottom: 1px solid #eaeaea;
}
.bc-accordion-header {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  user-select: none;
}
.bc-accordion-header i {
  font-size: 16px;
  transition: transform 0.3s;
}
.bc-accordion-header.active i {
  transform: rotate(180deg);
}
.bc-accordion-content {
  display: none;
  padding-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

/* Slogan & Tabs Panel */
.bc-editorial-section {
  padding: 70px 0 60px;
  background: #fff;
  text-align: center;
  margin: 50px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.bc-editorial-heading {
  font-size: 30px;
  font-weight: 300;
  color: #111;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.bc-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.bc-tab-nav-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(145, 75, 46, 0.7);
  cursor: pointer;
  position: relative;
  padding-bottom: 14px;
  transition: color 0.2s;
  user-select: none;
}
.bc-tab-nav-item:hover,
.bc-tab-nav-item.active {
  color: #914b2e;
}
.bc-tab-nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: #914b2e;
}
.bc-tabs-content {
  max-width: 800px;
  margin: 0 auto;
  min-height: 80px;
  padding: 0 20px;
}
.bc-tab-panel {
  display: none;
  font-size: 13.5px;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
}
.bc-tab-panel.active {
  display: block;
}

/* Related Products Section */
.bc-related-section {
  padding: 40px 0 80px;
}
.bc-related-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

/* Responsive fixes for detail page */
@media (max-width: 900px) {
  .bc-product-detail-row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .bc-product-detail-left,
  .bc-product-detail-right {
    display: contents;
  }
  
  /* Mobile Order */
  .bc-gallery-container { order: 1; width: 100%; margin-bottom: 25px; }
  .bc-detail-title      { order: 2; width: 100%; }
  .bc-detail-price      { order: 3; width: 100%; }
  #sepet_mesaj          { order: 4; width: 100%; }
  .bc-variant-group     { order: 5; width: 100%; }
  .bc-detail-desc       { order: 6; width: 100%; margin-bottom: 25px; }
  .bc-accordions        { order: 7; width: 100%; margin-bottom: 30px; }
  .bc-addons            { order: 8; width: 100%; }
  .bc-detail-actions    { order: 9; width: 100%; }

  .bc-gallery-thumbs {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }
  .bc-gallery-thumb-item {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }
  .bc-gallery-container {
    flex-direction: column-reverse;
  }
  .bc-tabs-nav {
    flex-wrap: wrap;
    gap: 15px 20px;
  }
}

/* Product Variant Selector Styles */
.bc-variant-group {
  margin-bottom: 25px;
}
.bc-variant-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
  display: block;
}
.bc-variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bc-variant-item {
  padding: 8px 16px;
  border: 1px solid #ddd;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.bc-variant-item:hover {
  border-color: #111;
  color: #111;
}
.bc-variant-item.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Sepetim & Checkout Styles */
.bc-cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.bc-cart-table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111;
  border-bottom: 1px solid #111;
  padding: 15px 10px;
  text-align: left;
}
.bc-cart-table td {
  padding: 20px 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-family: 'Manrope', sans-serif;
}
.bc-cart-img {
  width: 80px;
  height: auto;
  display: block;
}
.bc-cart-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.bc-cart-title a {
  color: #111;
}
.bc-cart-variant {
  font-size: 11px;
  color: #666;
  line-height: 1.6;
}
.bc-cart-price,
.bc-cart-total {
  font-size: 13px;
  font-weight: 600;
  color: #111;
}
.bc-cart-delete-btn {
  font-size: 18px;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}
.bc-cart-delete-btn:hover {
  color: #c9302c;
}
.bc-coupon-form {
  display: flex;
  gap: 10px;
  margin: 20px 0 40px;
}
.bc-coupon-form input {
  flex: 1;
  height: 46px;
  padding: 0 15px;
  border: 1px solid #ddd;
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
}
.bc-coupon-form input:focus {
  border-color: #111;
  outline: none;
}
.bc-coupon-form button {
  height: 46px;
  padding: 0 25px;
  background: #111;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.bc-coupon-form button:hover {
  opacity: 0.9;
}
.bc-cart-summary {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 40px;
  font-family: 'Manrope', sans-serif;
}
.bc-cart-summary h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111;
  border-bottom: 1px solid #111;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.bc-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 12px 0;
  border-bottom: 1px solid #f9f9f9;
}
.bc-summary-row.total {
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid #111;
  border-bottom: none;
  padding: 18px 0 0;
  margin-top: 10px;
}
.bc-summary-row span:first-child {
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bc-summary-row span:last-child {
  font-weight: 600;
  color: #111;
}
.bc-payment-options {
  margin: 25px 0;
}
.bc-payment-options .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid #eee;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.bc-payment-options .form-check:hover {
  border-color: #111;
}
.bc-payment-options input[type="radio"] {
  accent-color: #111;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.bc-payment-options label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #111;
  cursor: pointer;
  margin: 0;
}
.bc-checkout-form {
  margin-top: 20px;
}
.bc-checkout-form .form-group {
  margin-bottom: 15px;
}
.bc-checkout-form input[type="text"],
.bc-checkout-form input[type="email"],
.bc-checkout-form input[type="password"],
.bc-checkout-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
  transition: border-color 0.2s;
  background: #fff;
}
.bc-checkout-form input:focus,
.bc-checkout-form textarea:focus {
  border-color: #111;
  outline: none;
}
.bc-btn-checkout {
  display: block !important;
  width: 100% !important;
  height: 48px !important;
  background: #1a1a1a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: var(--font) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  cursor: pointer !important;
  transition: background 0.25s, transform 0.15s !important;
  box-shadow: none !important;
  text-align: center !important;
  line-height: 48px !important;
  padding: 0 !important;
  text-decoration: none !important;
}
.bc-btn-checkout:hover {
  background: #914b2e !important;
  color: #fff !important;
  opacity: 1 !important;
}
#alan2-buton {
  background: transparent !important;
  color: #1a1a1a !important;
  border: 1px solid #1a1a1a !important;
  margin-top: 10px !important;
  line-height: 46px !important; /* adjustment for border height */
}
#alan2-buton:hover {
  background: #1a1a1a !important;
  color: #fff !important;
}
.bc-checkout-checkboxes {
  margin: 20px 0;
}
.bc-checkout-checkboxes .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11.5px;
  font-family: 'Manrope', sans-serif;
}
.bc-checkout-checkboxes input[type="checkbox"] {
  accent-color: #111;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.bc-checkout-checkboxes label {
  cursor: pointer;
  color: #333;
}
.bc-checkout-checkboxes a {
  color: #111;
  text-decoration: underline;
}



/* Mobile & Tablet Responsive Media Queries */
.bc-hamburger {
  display: none;
  cursor: pointer;
  font-size: 22px;
  color: #111;
  padding: 5px;
}

/* Mobile Overlay and Sidebar Panel Styling */
.mobile-header-active {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  z-index: 10000 !important;
  background: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: block !important;
}
.mobile-header-active.sidebar-visible {
  transform: translateX(0);
}
.body-overlay {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4) !important;
  z-index: 9999 !important;
  display: block;
}

@media (max-width: 1024px) {
  .bc-product-grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
  }
  .bc-detail-actions > div {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .bc-qty-wrapper {
    width: 100% !important;
    justify-content: center;
    gap: 30px;
    margin-bottom: 5px;
  }
  .bc-action-buttons {
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Header Responsive */
  .bc-hamburger {
    display: block !important;
  }
  .hdr-search,
  .hdr-nav {
    display: none !important;
  }
  .hdr-mid-inner {
    padding: 10px 15px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .hdr-logo img {
    max-height: 60px !important;
    max-width: 150px !important;
    object-fit: contain !important;
    width: auto !important;
  }
  .hdr-icons {
    gap: 15px !important;
  }
  .hdr-icons i {
    font-size: 18px !important;
  }
  .hdr-icon-badge {
    top: -5px !important;
    right: -5px !important;
    width: 14px !important;
    height: 14px !important;
    font-size: 8px !important;
    line-height: 14px !important;
  }
  
  /* Grids and Cards */
  .bc-product-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .bc-product-card {
    margin-bottom: 10px !important;
  }
  .bc-product-name {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
  }
  .bc-price-new,
  .bc-price-old {
    font-size: 11.5px !important;
  }
  
  /* Sections */
  .bc-vitrin {
    padding: 30px 0 !important;
  }
  .bc-vitrin h3 {
    font-size: 16px !important;
    letter-spacing: 1.5px !important;
  }
  
  /* Footer & Newsletter */
  .bc-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }
  .bc-footer-brand {
    align-items: center !important;
  }
  .bc-newsletter h3 {
    font-size: 18px !important;
    letter-spacing: 1px !important;
  }
  .bc-newsletter p {
    font-size: 11px !important;
  }
  .bc-newsletter-form {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .bc-newsletter-form button {
    width: 100% !important;
  }
  
  /* Product Detail Page Mobile */
  .bc-detail-title {
    font-size: 20px !important;
    letter-spacing: 0.5px !important;
  }
  .bc-detail-price {
    font-size: 16px !important;
  }
  .bc-detail-desc {
    font-size: 12px !important;
  }
  .bc-addons span {
    font-size: 11px !important;
  }
  .bc-btn-cart,
  .bc-btn-buy {
    height: 44px !important;
    font-size: 11px !important;
  }
  .bc-editorial-heading {
    font-size: 20px !important;
    letter-spacing: 2px !important;
  }
  .bc-tab-nav-item {
    font-size: 9.5px !important;
    letter-spacing: 1px !important;
  }
  .bc-tab-panel {
    font-size: 11.5px !important;
    letter-spacing: 1px !important;
  }
  
  /* Cart & Checkout Mobile */
  .bc-cart-table th {
    font-size: 9.5px !important;
    letter-spacing: 1px !important;
    padding: 10px 5px !important;
  }
  .bc-cart-table td {
    padding: 15px 5px !important;
  }
  .bc-cart-img {
    width: 50px !important;
  }
  .bc-cart-title {
    font-size: 11.5px !important;
  }
  .bc-cart-price,
  .bc-cart-total {
    font-size: 11.5px !important;
  }
  .bc-cart-summary {
    padding: 20px !important;
  }
}

/* Minimalist Added-to-Cart Success Modal */
.bc-modal-content {
  border-radius: 0 !important;
  border: none !important;
  padding: 35px 25px !important;
  max-width: 480px !important;
  margin: 0 auto !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
}
.bc-modal-body {
  padding: 0 !important;
  text-align: center !important;
  font-family: 'Manrope', sans-serif !important;
}
.bc-modal-success-icon {
  font-size: 40px !important;
  color: #914b2e !important;
  margin-bottom: 20px !important;
  display: inline-block !important;
  line-height: 1 !important;
}
.bc-modal-msg {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #111 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 25px !important;
}
.bc-modal-actions {
  display: flex !important;
  gap: 12px !important;
  width: 100% !important;
}
.bc-modal-btn-secondary {
  flex: 1 !important;
  height: 46px !important;
  line-height: 44px !important;
  background: #fff !important;
  color: #111 !important;
  border: 1px solid #111 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  text-align: center !important;
  transition: all 0.25s ease !important;
  font-family: 'Manrope', sans-serif !important;
  white-space: nowrap !important;
}
.bc-modal-btn-secondary:hover {
  background: #111 !important;
  color: #fff !important;
}
.bc-modal-btn-primary {
  flex: 1 !important;
  height: 46px !important;
  line-height: 46px !important;
  background: #914b2e !important;
  color: #fff !important;
  border: none !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  text-align: center !important;
  display: inline-block !important;
  transition: all 0.25s ease !important;
  font-family: 'Manrope', sans-serif !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.bc-modal-btn-primary:hover {
  background: #753e28 !important;
  color: #fff !important;
}
.bc-modal-btn-primary i {
  margin-right: 6px !important;
  font-size: 14px !important;
  vertical-align: middle !important;
}

@media (max-width: 576px) {
  .bc-action-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .bc-btn-cart,
  .bc-btn-buy {
    width: 100% !important;
    flex: none !important;
  }
}


/* ====================================================
   BOOTSTRAP INTERFERENCE OVERRIDES for new Footer
   ==================================================== */
.bc-footer {
  display: block !important;
  position: relative !important;
}
.bc-footer, .bc-footer * {
  box-sizing: border-box;
}

/* Grid display must win over Bootstrap's row/col */
.bc-ftr-grid {
  display: grid !important;
  width: 100% !important;
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.bc-ftr-strip-inner {
  display: flex !important;
}
.bc-ftr-strip-left {
  display: flex !important;
}
.bc-ftr-strip-right {
  display: flex !important;
}
.bc-ftr-bottom-inner {
  display: flex !important;
}

/* List resets */
.bc-footer ul,
.bc-ftr-col ul {
  padding-left: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
.bc-footer ul li,
.bc-ftr-col ul li {
  list-style: none !important;
  padding: 0 !important;
  margin-left: 0 !important;
}

/* Link resets — bootstrap adds color to a tags */
.bc-ftr-col ul li a {
  color: #666 !important;
  text-decoration: none !important;
}
.bc-ftr-col ul li a:hover {
  color: #914b2e !important;
}
.bc-ftr-contact-item {
  text-decoration: none !important;
  display: flex !important;
}
.bc-ftr-social a {
  display: flex !important;
  text-decoration: none !important;
}

/* Container overrides — ensure no Bootstrap .container interferes */
.bc-ftr-body > .bc-container,
.bc-ftr-strip > .bc-container,
.bc-ftr-bottom > .bc-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  width: 100% !important;
  float: none !important;
}

@media (max-width: 768px) {
  .bc-ftr-body > .bc-container,
  .bc-ftr-strip > .bc-container,
  .bc-ftr-bottom > .bc-container {
    padding: 0 16px !important;
  }
}

/* ==============================
   AUTH PAGES — Luxury Split Screen
   ============================== */

.bc-auth-wrap {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  min-height: 700px;
  margin: 60px auto !important;
  width: 94% !important;
  max-width: 1200px !important;
  position: relative !important;
  left: 0 !important;
  right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15) !important;
  background: #fff !important;
}

/* ---- Left Brand Panel ---- */
.bc-auth-panel {
  flex: 0 0 38% !important;
  width: 38% !important;
  min-height: 500px !important;
  position: relative !important;
  background-image: url('../images/auth-panel-bg.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden !important;
  display: block !important;
}
.bc-auth-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 14, 8, 0.65) 0%,
    rgba(90, 50, 28, 0.55) 60%,
    rgba(10, 10, 8, 0.7) 100%
  );
}
.bc-auth-panel-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 52px;
}
.bc-auth-panel-logo img {
  max-height: 36px;
  width: auto;
  filter: brightness(0) invert(1) !important;
  opacity: 0.92;
}
.bc-auth-panel-quote {
  color: #fff;
}
.bc-auth-panel-quote blockquote {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.92);
  margin: 0 0 18px;
  border: none;
  padding: 0;
  font-style: italic;
}
.bc-auth-panel-quote cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

/* ---- Right Form Panel ---- */
.bc-auth-form-panel {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}
.bc-auth-form-inner {
  width: 100%;
  max-width: 420px;
}

.bc-auth-form-header {
  margin-bottom: 40px;
}
.bc-auth-form-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.bc-auth-form-header p {
  font-size: 14px;
  color: #999;
  margin: 0;
}

/* Form element */
.bc-auth-form-el {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.bc-auth-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.bc-auth-col-full {
  grid-column: 1 / -1;
}

/* Input groups — elegant underline style */
.bc-auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.bc-auth-input-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.bc-auth-input-group label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}
.bc-auth-input-group label span {
  color: #914b2e;
}
.bc-auth-forgot {
  font-size: 11px;
  color: #914b2e;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.bc-auth-forgot:hover { text-decoration: underline; }

.bc-auth-input-group input,
.bc-auth-input-group textarea,
.bc-auth-form-el input,
.bc-auth-form-el textarea,
.bc-auth-form-grid input,
.bc-auth-form-grid textarea {
  width: 100% !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1.5px solid #e0dbd4 !important;
  padding: 10px 0 !important;
  font-family: var(--font) !important;
  font-size: 15px !important;
  color: #1a1a1a !important;
  outline: none !important;
  transition: border-color 0.25s !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  height: auto !important;
  -webkit-appearance: none !important;
}
.bc-auth-input-group textarea,
.bc-auth-form-el textarea {
  padding: 10px 0 !important;
  resize: none !important;
  min-height: 64px !important;
}
.bc-auth-input-group input:focus,
.bc-auth-input-group textarea:focus,
.bc-auth-form-el input:focus,
.bc-auth-form-el textarea:focus {
  border-bottom-color: #914b2e !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
}
/* Chrome autofill override */
.bc-auth-input-group input:-webkit-autofill,
.bc-auth-form-el input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #1a1a1a !important;
  border-bottom: 1.5px solid #e0dbd4 !important;
}


/* Submit button */
.bc-auth-submit {
  width: 100% !important;
  height: 52px !important;
  background: #914b2e !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--font) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.25s, transform 0.15s !important;
  margin-top: 8px !important;
  box-shadow: none !important;
  display: block !important;
  padding: 0 !important;
  line-height: 52px !important;
}
.bc-auth-submit:hover {
  background: #6e3520 !important;
  color: #fff !important;
}
.bc-auth-submit:active {
  transform: scale(0.99);
}

/* Error message */
.bc-auth-error {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fef2ef;
  border-left: 3px solid #914b2e;
  padding: 12px 16px;
  font-size: 13px;
  color: #8b3a1f;
  margin-bottom: 20px;
  border-radius: 0 4px 4px 0;
}
.bc-auth-error i { font-size: 16px; }

/* Agreement checkbox */
.bc-auth-check-row {
  display: flex;
  align-items: flex-start;
}
.bc-auth-check-lbl {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 13px !important;
  color: #666 !important;
  cursor: pointer !important;
  line-height: 1.5 !important;
  width: 100% !important;
  text-align: left !important;
}
.bc-auth-check-lbl span {
  flex: 1 !important;
}
.bc-auth-check-lbl input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
  border: 1.5px solid #e0dbd4 !important;
  border-radius: 4px !important;
  background: #fff !important;
  cursor: pointer !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s !important;
}
.bc-auth-check-lbl input[type="checkbox"]:checked {
  border-color: #914b2e !important;
}
.bc-auth-check-lbl input[type="checkbox"]:checked::after {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  background: #914b2e !important;
  border-radius: 50% !important;
  display: block !important;
}
.bc-auth-check-lbl a {
  color: #914b2e;
  font-weight: 600;
  text-decoration: none;
}
.bc-auth-check-lbl a:hover { text-decoration: underline; }

/* Switch links */
.bc-auth-switch {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  padding-top: 24px;
  border-top: 1px solid #f0ebe4;
}
.bc-auth-switch a {
  color: #1a1a1a;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid #1a1a1a;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.bc-auth-switch a:hover {
  color: #914b2e;
  border-color: #914b2e;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .bc-auth-wrap {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
    min-height: auto !important;
    border-radius: 0 !important;
  }
  .bc-auth-panel {
    display: block !important;
    flex: 0 0 280px !important;
    width: 100% !important;
    min-height: 280px !important;
  }
  .bc-auth-panel-inner {
    padding: 30px !important;
  }
  .bc-auth-panel-quote blockquote {
    font-size: 20px !important;
  }
  .bc-auth-form-panel {
    padding: 40px 24px !important;
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .bc-auth-form-panel {
    padding: 36px 20px;
  }
  .bc-auth-form-inner {
    max-width: 100%;
  }
  .bc-auth-form-header h1 { font-size: 24px; }
  .bc-auth-form-grid {
    grid-template-columns: 1fr;
  }
  .bc-auth-col-full {
    grid-column: auto;
  }
}

/* ---- Category Filters ---- */
.bc-filter-widget {
  background: #fff;
  border: 1px solid #f0ebe4;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 12px;
}
.bc-filter-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #111;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0ebe4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bc-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bc-filter-item {
  margin-bottom: 12px;
}
.bc-filter-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: color 0.2s;
}
.bc-filter-label:hover {
  color: #914b2e;
}
.bc-filter-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #914b2e;
  cursor: pointer;
}
.bc-filter-count {
  margin-left: auto;
  font-size: 11px;
  color: #aaa;
  background: #f8f8f8;
  padding: 2px 8px;
  border-radius: 10px;
}

.bc-price-filter {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bc-price-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bc-price-inputs input {
  width: 100% !important;
  height: 40px !important;
  border: 1.5px solid #e0dbd4 !important;
  padding: 0 10px !important;
  font-size: 13px !important;
  border-radius: 6px !important;
  background: transparent !important;
}
.bc-price-inputs span {
  color: #aaa;
}
.bc-filter-btn {
  width: 100%;
  height: 42px;
  background: #914b2e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}
.bc-filter-btn:hover {
  background: #753e28;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(145, 75, 46, 0.2);
}

.bc-filter-clear {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #999;
  text-decoration: underline;
  margin-top: 15px;
}

/* Mobile Filter Toggle */
.bc-mobile-filter-btn {
  display: none;
  width: 100% !important;
  height: 48px !important;
  background: #fff !important;
  border: 1px solid #1a1a1a !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 24px !important;
  border-radius: 4px !important;
  cursor: pointer;
  color: #1a1a1a !important;
  transition: all 0.25s !important;
}
.bc-mobile-filter-btn:hover {
  background: #fdfaf7 !important;
  border-color: #914b2e !important;
  color: #914b2e !important;
}
.bc-mobile-filter-btn i {
  font-size: 15px !important;
}

.bc-sidebar-mobile-header {
  display: none;
}

@media (max-width: 991px) {
  .bc-mobile-filter-btn {
    display: flex !important;
  }
  .primary-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 30px;
    box-shadow: 20px 0 50px rgba(0,0,0,0.1);
    overflow-y: auto;
    transition: left 0.3s ease;
  }
  .primary-sidebar.open {
    display: block;
    left: 0;
  }
  .bc-sidebar-mobile-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1.5px solid #eae5dc !important;
    padding-bottom: 15px !important;
    margin-bottom: 25px !important;
  }
  .bc-sidebar-mobile-header h5 {
    font-family: var(--font) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #1a1a1a !important;
    margin: 0 !important;
  }
  .bc-sidebar-close {
    display: block !important;
    position: static !important;
    font-size: 26px !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    line-height: 1 !important;
  }
}
.bc-sidebar-close { display: none; }

/* ---- Luxury Category Buttons Overrides ---- */

/* Revert green uste_don button to elegant arrow link */
.uste_don {
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 20px !important;
  border-radius: 0 !important;
  display: block !important;
}
.uste_don a {
  color: #914b2e !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  padding: 0 !important;
  background: transparent !important;
}
.uste_don a i {
  font-size: 14px !important;
}
.uste_don a:hover {
  color: #1a1a1a !important;
  background: transparent !important;
}

/* Elegant minimalist filter UYGULA button */
.bc-filter-btn,
#filter-form .bc-filter-btn {
  width: 100% !important;
  height: 44px !important;
  background: #1a1a1a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: var(--font) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  cursor: pointer !important;
  transition: background 0.25s, transform 0.15s !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}
.bc-filter-btn:hover,
#filter-form .bc-filter-btn:hover {
  background: #914b2e !important;
  color: #fff !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Premium Pagination Styling */
.pagination-area .pagination {
  gap: 6px !important;
}
.pagination-area .page-item {
  border: none !important;
  margin: 0 !important;
  background: transparent !important;
}
.pagination-area .page-link {
  border: 1px solid #eae5dc !important;
  background: #fff !important;
  color: #1a1a1a !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font) !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  padding: 0 !important;
  transition: all 0.2s !important;
}
.pagination-area .page-item.active .page-link {
  background: #914b2e !important;
  border-color: #914b2e !important;
  color: #fff !important;
}
.pagination-area .page-link:hover {
  background: #fdfaf7 !important;
  border-color: #914b2e !important;
  color: #914b2e !important;
}

/* Color tick overrides for payment radios and checkbox options */
.bc-payment-options input[type="radio"],
.bc-checkout-checkboxes input[type="checkbox"],
.form-check-input[type="radio"],
.form-check-input[type="checkbox"] {
  accent-color: var(--warm) !important;
}
.form-check-input:checked {
  background-color: var(--warm) !important;
  border-color: var(--warm) !important;
}
.form-check-input:focus {
  border-color: var(--warm) !important;
  box-shadow: 0 0 0 0.25rem rgba(145, 75, 46, 0.25) !important;
}

/* ========================================
   DESKTOP HIDDEN MENU & DARK HEADER OVERRIDES
   ======================================== */
@media (min-width: 769px) {
  /* Dark header background */
  .hdr-mid {
    background: #27272a !important;
    padding: 18px 0 !important;
    border-bottom: 1.5px solid #3f3f46 !important;
  }
  .hdr-mid-inner {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
  }
  /* Absolute Center Logo */
  .hdr-logo {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 5 !important;
  }
  /* Show hamburger button on desktop */
  .bc-hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: #914b2e !important;
    color: #fff !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background 0.25s !important;
  }
  .bc-hamburger:hover {
    background: #723b24 !important;
  }
  .bc-hamburger i {
    color: #fff !important;
    font-size: 14px !important;
  }
  /* Hide the horizontal links bar on desktop */
  .hdr-nav {
    display: none !important;
  }
  /* Force logo inversion for dark bg */
  .hdr-logo img {
    filter: brightness(0) invert(1) !important;
    max-height: 50px !important;
    width: auto !important;
    display: block !important;
  }
  /* Force announcement bar centering */
  .hdr-top-inner {
    justify-content: center !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }
}

/* Modern Fullscreen Search Overlay */
.bc-search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 17, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.bc-search-overlay-content {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.bc-search-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 32px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.25s ease;
}

.bc-search-close:hover {
  color: #fff;
  transform: scale(1.1);
}

.bc-search-overlay h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 26px;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.bc-search-form {
  position: relative;
  width: 100%;
}

.bc-search-input {
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid rgba(255,255,255,0.2) !important;
  font-size: 22px;
  color: #fff !important;
  padding: 15px 0 !important;
  font-family: 'Manrope', sans-serif;
  outline: none !important;
  transition: border-color 0.3s ease;
}

.bc-search-input:focus {
  border-bottom-color: #914b2e !important;
}

.bc-search-submit {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.7) !important;
  cursor: pointer;
  font-size: 22px;
  transition: color 0.25s ease;
}

.bc-search-submit:hover {
  color: #fff !important;
}

/* =========================================================================
   PREMIUM CUSTOM MOBILE MENU (DARK AESTHETIC)
   ========================================================================= */

/* The Main Container & Overlay styling handled by theme JS mostly, but we override */
.custom-mobile-menu {
    position: fixed;
    top: 0;
    left: -320px; /* Hidden by default */
    width: 320px;
    height: 100vh;
    background-color: #121212;
    z-index: 99999;
    overflow-y: auto;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 2px 0 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

/* Scrollbar for Custom Mobile Menu */
.custom-mobile-menu::-webkit-scrollbar {
    width: 6px;
}
.custom-mobile-menu::-webkit-scrollbar-track {
    background: #121212;
}
.custom-mobile-menu::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}
.custom-mobile-menu::-webkit-scrollbar-thumb:hover {
    background: #c9a471;
}

/* When the theme JS adds sidebar-visible */
.sidebar-visible.custom-mobile-menu {
    left: 0;
}

.custom-mobile-menu-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

/* Header */
.cmm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cmm-logo img {
    max-width: 140px;
    filter: brightness(0) invert(1);
}

.cmm-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cmm-close:hover {
    color: #c9a471;
}

/* Navigation List */
.cmm-nav-wrap {
    flex-grow: 1;
    padding: 20px 0;
}

.cmm-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cmm-nav > li {
    padding: 0;
    margin: 0;
}

.cmm-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 15px 20px;
}

.cmm-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.3px;
}

.cmm-link:hover, .cmm-nav > li.active > .cmm-link {
    color: #c9a471;
    padding-left: 30px;
    background-color: rgba(255,255,255,0.02);
}

.cmm-lang-img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

/* Dropdowns */
.cmm-dropdown {
    display: none; /* jQuery slideToggle handles visibility */
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0,0,0,0.2);
}

.cmm-has-dropdown .cmm-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cmm-has-dropdown.active > .cmm-link i {
    transform: rotate(180deg);
}

.cmm-dropdown li a {
    display: flex;
    align-items: center;
    padding: 10px 25px 10px 45px;
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cmm-dropdown li a:hover {
    color: #c9a471;
}

/* Footer / User Links */
.cmm-footer {
    padding: 25px;
    background-color: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cmm-user-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.cmm-user-links a {
    display: flex;
    align-items: center;
    color: #bbb;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cmm-user-links a i {
    font-size: 18px;
    margin-right: 8px;
    color: #777;
    transition: color 0.3s ease;
}

.cmm-user-links a:hover, .cmm-user-links a:hover i {
    color: #c9a471;
}

.cmm-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cmm-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: #bbb;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cmm-social a:hover {
    background-color: #c9a471;
    color: #fff;
    transform: translateY(-2px);
}

.cmm-copyright {
    font-size: 12px;
    color: #666;
}

/* ========================================================================= */




