/**
 * BEUS Takı - Custom Color Scheme
 * Mor, Pembe, Bordo, Kırmızı, Eflatun Tonları
 * Balanced for readability and aesthetics
 */

:root {
  /* Ana Tema Renkleri - Okunabilirlik için optimize edilmiş */
  --theme-color: #9B4A9B;        /* Mor - Daha yumuşak ton */
  --theme-color2: #5A1F5A;       /* Koyu Mor - Navbar için */
  --theme-color-light: rgba(155, 74, 155, 0.08); /* Açık Mor arka plan */
  
  /* Renk Paleti */
  --color-purple: #8B3A8B;       /* Mor */
  --color-purple-dark: #4A0E4A;  /* Koyu Mor */
  --color-purple-light: #B565B5; /* Açık Mor */
  
  --color-pink: #D8627D;         /* Pembe */
  --color-pink-light: #F4B6C2;   /* Açık Pembe */
  --color-pink-dark: #C1547A;    /* Koyu Pembe */
  
  --color-burgundy: #800020;     /* Bordo */
  --color-burgundy-light: #A52A2A; /* Açık Bordo */
  --color-burgundy-dark: #5C0011;  /* Koyu Bordo */
  
  --color-red: #DC143C;          /* Kırmızı */
  --color-red-light: #FF6B6B;    /* Açık Kırmızı */
  --color-red-dark: #8B0000;     /* Koyu Kırmızı */
  
  --color-magenta: #C71585;      /* Eflatun */
  --color-magenta-light: #FF1493; /* Açık Eflatun */
  --color-magenta-dark: #8B008B;  /* Koyu Eflatun */
  
  /* Gradientler */
  --gradient-primary: linear-gradient(135deg, #8B3A8B 0%, #D8627D 100%);
  --gradient-secondary: linear-gradient(135deg, #4A0E4A 0%, #800020 100%);
  --gradient-accent: linear-gradient(135deg, #C71585 0%, #FF1493 100%);
  
  /* Hover Renkleri */
  --hover-color: #B565B5;
  --hover-dark: #4A0E4A;
  
  /* Gölge Renkleri */
  --shadow-color: rgba(139, 58, 139, 0.15);
  --shadow-color-dark: rgba(74, 14, 74, 0.25);
}

/* Theme Button - Okunabilir ve şık */
.theme-btn {
  background: linear-gradient(135deg, #9B4A9B 0%, #C1547A 100%);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.theme-btn:hover {
  background: linear-gradient(135deg, #7A3A7A 0%, #A04060 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(155, 74, 155, 0.3);
  color: #ffffff;
}

/* Theme Button 2 */
.theme-btn2 {
  background: transparent;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
}

.theme-btn2:hover {
  background: var(--theme-color);
  color: var(--color-white);
}

/* Navbar - Normal durum (sayfa üstünde) */
.navbar {
  background: #ffffff !important;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  padding: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
}

/* Header area wrapper */
.header-area {
  position: relative;
  z-index: 999;
}

/* Sticky navbar - scroll edildiğinde */
.navbar-sticky,
.sticky-navbar,
.navbar.is-sticky,
.navbar.fixed,
.navbar.sticky,
.header-sticky .navbar,
.header-area.sticky .navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  min-height: 60px !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
  background: #ffffff !important;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Navbar navigation - Normal durum */
.navbar .navbar-nav {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar .nav-item {
  margin: 0 2px;
  list-style: none;
  padding: 0 !important;
}

.navbar .nav-item .nav-link {
  color: #333333 !important;
  font-weight: 500;
  padding: 6px 16px !important;
  transition: all 0.3s ease;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  margin-right: 3px !important;
}

/* Sticky durumda link padding azalt */
.navbar-sticky .nav-item .nav-link,
.navbar.sticky .nav-item .nav-link,
.header-area.sticky .navbar .nav-item .nav-link {
  padding: 6px 16px !important;
  border-radius: 6px;
  font-size: 14px;
}

.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
  color: #9B4A9B !important;
  background: rgba(155, 74, 155, 0.08);
  padding: 6px 16px !important;
  border-radius: 6px;
}

/* Navbar Container */
.navbar .container,
.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

/* Sticky container adjustments */
.navbar-sticky .container,
.navbar.sticky .container,
.header-area.sticky .navbar .container {
  padding: 5px 15px !important;
}


/* Navbar Brand */
.navbar-brand {
  color: #333333 !important;
  display: flex;
  align-items: center;
  padding: 10px 0;
  margin-right: 40px;
}

.navbar-brand img {
  max-height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

/* Sticky durumda logo küçült */
.navbar-sticky .navbar-brand img,
.navbar.sticky .navbar-brand img,
.header-area.sticky .navbar .navbar-brand img {
  max-height: 40px !important;
}

/* Navbar Right Icons */
.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 40px;
}

.navbar .nav-right-link {
  color: #333333 !important;
  padding: 8px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 20px;
}

.navbar .nav-right-link:hover {
  color: #9B4A9B !important;
  transform: scale(1.1);
}

.navbar .nav-right .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #9B4A9B;
  color: #ffffff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Dropdown Menu */
.navbar .dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(155, 74, 155, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px;
}

.navbar .dropdown-menu .dropdown-item {
  color: #333333;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(155, 74, 155, 0.1);
  color: #9B4A9B;
  padding-left: 25px;
}

/* Mobile Menu Button */
.navbar-toggler {
  border: 2px solid #9B4A9B;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(155, 74, 155, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 51, 51, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Right Section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right a {
  color: #333333 !important;
  font-size: 20px;
  transition: color 0.3s ease;
}

.nav-right a:hover {
  color: #9B4A9B !important;
}

.nav-right .badge {
  background: #9B4A9B;
  color: #ffffff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 10px;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* Header Top */
.header-top {
  border-top: 3px solid #9B4A9B;
  background: #fafafa;
  padding: 10px 0;
}

.header-top-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-top-list li {
  display: flex;
  align-items: center;
}

.header-top-list li a {
  color: #666666;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-top-list li a:hover {
  color: #9B4A9B;
}

.header-top-list li i {
  color: #9B4A9B;
  margin-right: 5px;
}

/* Search Area */
.search-area {
  background: #f8f8f8;
  padding: 30px 0;
}

.search-wrapper {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-middle-search .search-content {
  border: 2px solid #e5e5e5;
}

.header-middle-search .search-content:hover,
.header-middle-search .search-content:focus-within {
  border-color: #9B4A9B;
  box-shadow: 0 0 10px rgba(155, 74, 155, 0.1);
}

.form-control,
.select {
  color: #333333;
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

.form-control:focus,
.select:focus {
  border-color: #9B4A9B;
  box-shadow: 0 0 0 0.2rem rgba(155, 74, 155, 0.15);
}

/* Product Cards */
.product-item:hover {
  box-shadow: 0 5px 20px var(--shadow-color);
}

.product-item .product-img .type {
  background: var(--gradient-accent);
}

.product-item .product-img .type.new {
  background: var(--color-magenta);
}

.product-item .product-img .type.sale {
  background: var(--color-red);
}

.product-item .product-img .type.hot {
  background: var(--gradient-primary);
}

.product-item .product-action a {
  background: var(--theme-color);
}

.product-item .product-action a:hover {
  background: var(--color-pink);
}

.product-cart-btn {
  background: var(--theme-color);
  color: var(--color-white);
}

.product-cart-btn:hover {
  background: var(--color-pink);
}

/* Price Colors */
.product-price span {
  color: var(--theme-color);
  font-weight: 600;
}

.product-price del {
  color: var(--color-burgundy-light);
}

/* Category Items - Şık ve zarif tasarım */
.category-item {
  background: #ffffff;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(155, 74, 155, 0.15);
  transition: all 0.3s ease;
  text-align: center;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-item:hover {
  box-shadow: 0 8px 25px rgba(155, 74, 155, 0.2);
  border-color: rgba(155, 74, 155, 0.3);
  transform: translateY(-5px);
}

/* Category Image/Icon */
.category-item .category-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(155, 74, 155, 0.1) 0%, rgba(193, 84, 122, 0.1) 100%);
  padding: 20px;
  transition: all 0.3s ease;
}

.category-item:hover .category-img {
  background: linear-gradient(135deg, rgba(155, 74, 155, 0.15) 0%, rgba(193, 84, 122, 0.15) 100%);
  transform: scale(1.05);
}

.category-item .category-img img {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Category SVG Icons */
.category-item .category-icon {
  width: 80px;
  height: 80px;
  stroke: #9B4A9B;
  fill: none;
  stroke-width: 3;
  transition: all 0.3s ease;
}

.category-item:hover .category-icon {
  stroke: #C1547A;
  transform: scale(1.1);
}

.category-item .category-info {
  background: linear-gradient(135deg, #9B4A9B 0%, #C1547A 100%);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 25px;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.category-item:hover .category-info {
  background: linear-gradient(135deg, #7A3A7A 0%, #A04060 100%);
  transform: scale(1.05);
}

.category-item .category-info h4 {
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.category-item .category-info p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

/* Feature Icons - Düzeltilmiş */
.feature-icon {
  background: linear-gradient(135deg, #9B4A9B 0%, #C1547A 100%);
  color: #ffffff;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 32px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(155, 74, 155, 0.15);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #C71585 0%, #FF1493 100%);
}

.feature-item h4 {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

/* Footer - Koyu arka plan */
.footer-area {
  background: linear-gradient(180deg, #3A1A3A 0%, #2A0A2A 100%);
  color: rgba(255, 255, 255, 0.9);
}

.footer-area p,
.footer-area li {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget-title {
  color: var(--color-pink-light);
  border-bottom: 2px solid var(--theme-color);
}

/* Footer list styles - disk/bullet sorununu çöz */
.footer-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-list li {
  list-style: none !important;
  margin-bottom: 10px;
  position: relative;
  padding-left: 0 !important;
}

.footer-list li::before {
  content: none !important;
  display: none !important;
}

.footer-list li::marker {
  content: none !important;
  display: none !important;
}

.footer-list li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  padding-left: 0;
}

.footer-list li a:hover {
  color: var(--color-pink-light);
  transform: translateX(5px);
  padding-left: 14px;;
}

.footer-social a {
  background: var(--theme-color);
}

.footer-social a:hover {
  background: var(--color-pink);
}

/* Forms */
.form-control:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 58, 139, 0.25);
}

.form-select:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 58, 139, 0.25);
}

/* Badges */
.badge {
  background: var(--gradient-primary);
}

.badge.badge-secondary {
  background: var(--color-burgundy);
}

.badge.badge-success {
  background: var(--color-magenta);
}

/* Pagination */
.pagination .page-link {
  color: var(--theme-color);
}

.pagination .page-link:hover {
  background: var(--theme-color-light);
  border-color: var(--theme-color);
}

.pagination .page-item.active .page-link {
  background: var(--gradient-primary);
  border-color: var(--theme-color);
}

/* Breadcrumb */
.site-breadcrumb {
  background: linear-gradient(135deg, rgba(139, 58, 139, 0.9), rgba(216, 98, 125, 0.9)), url('/assets/img/breadcrumb/03.jpg') center/cover;
}

.breadcrumb-menu li a:hover {
  color: var(--color-pink-light) !important;
}

/* Blog Cards */
.blog-item:hover {
  box-shadow: 0 5px 20px var(--shadow-color);
}

.blog-btn {
  color: var(--theme-color);
}

.blog-btn:hover {
  color: var(--color-pink);
}

.blog-item-meta li {
  color: var(--color-burgundy);
}

/* Swiper Pagination */
.swiper-pagination-bullet-active {
  background: var(--theme-color);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--theme-color);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--color-pink);
}

/* Hero Section */
.hero-section {
  background: transparent;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

.hero-slider {
  position: relative;
  z-index: 1;
}

.hero-single {
  position: relative;
  background: transparent !important;
}

.hero-single-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 1 !important;
  filter: none !important;
  z-index: 0 !important;
}

.hero-single::before,
.hero-single::after {
  display: none !important;
}

.hero-single .container {
  position: relative !important;
  z-index: 1 !important;
}

.hs-2 .hero-single-bg {
  opacity: 1 !important;
}

.hero-content {
  padding: 40px 0;
}

.hero-content .hero-sub-title {
  color: #9B4A9B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
}

.hero-content .hero-title {
  color: #333333 !important;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0;
}

.hero-content p {
  color: #666666 !important;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Site Heading - Başlıklar için düzeltme */
.site-heading {
  margin-bottom: 50px;
  text-align: center;
}

.site-title-tagline,
.site-heading .tagline {
  color: #9B4A9B;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.site-title,
.site-heading h2 {
  color: #333333;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 0;
}

.site-title span,
.site-heading h2 span {
  color: #C1547A;
}

/* Öne Çıkan Ürünler vb. başlıklar için */
h2 {
  color: #333333;
  font-weight: 700;
}

/* Tagline stil düzeltmesi */
.text-uppercase.text-muted {
  color: #9B4A9B !important;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}

/* Section Titles - Düzeltilmiş */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2,
.site-heading h2 {
  color: #333333;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after,
.site-heading h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #9B4A9B 0%, #C1547A 100%);
  border-radius: 2px;
}

.section-title p {
  color: #666666;
  font-size: 16px;
  max-width: 600px;
  margin: 20px auto 0;
}

/* Links */
a {
  color: var(--theme-color);
}

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

/* Selection */
::selection {
  background: var(--theme-color);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--theme-color);
  color: var(--color-white);
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* Loader */
.loader-ripple div {
  border-color: var(--theme-color);
}

/* Nice Select */
.nice-select .option:hover {
  background: var(--theme-color);
}

.nice-select .option.selected {
  background: var(--theme-color-light);
  color: var(--theme-color);
}

/* Tooltips */
[data-tooltip]:hover::after {
  background: var(--gradient-primary);
}

/* Modal Headers */
.modal-header {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

/* Alerts */
.alert-primary {
  background: var(--theme-color-light);
  border-color: var(--theme-color);
  color: var(--theme-color2);
}

/* Progress Bars */
.progress-bar {
  background: var(--gradient-primary);
}

/* Tabs */
.nav-tabs .nav-link.active {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}

.nav-tabs .nav-link:hover {
  color: var(--color-pink);
}

/* Accordion */
.accordion-button:not(.collapsed) {
  background: var(--theme-color-light);
  color: var(--theme-color);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 58, 139, 0.25);
}

/* Cards */
.card:hover {
  box-shadow: 0 5px 20px var(--shadow-color);
}

.card-header {
  background: var(--gradient-primary);
  color: var(--color-white);
}

/* Dropdown */
.dropdown-item:hover {
  background: var(--theme-color-light);
  color: var(--theme-color);
}

.dropdown-item.active {
  background: var(--theme-color);
}

/* Back to Top Button */
.back-to-top {
  background: var(--gradient-primary);
}

.back-to-top:hover {
  background: var(--gradient-accent);
}

/* Custom Animations */
@keyframes pulse-purple {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 58, 139, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(139, 58, 139, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 58, 139, 0);
  }
}

.pulse-animation {
  animation: pulse-purple 2s infinite;
}

/* Page Content Padding - Navbar altındaki içerik için */
.main-content,
.page-content,
main {
  padding-top: 0;
  position: relative;
}

/* Hero ve ilk section'lar için padding */
.hero-section:first-child,
.hero-area:first-child,
section:first-child {
  padding-top: 0;
}

/* Blog ve diğer sayfalar için breadcrumb padding */
.site-breadcrumb {
  padding: 20px 0;
  margin-top: 0;
}

/* Sticky navbar boşluk ayarı */
.navbar-spacer {
  height: 70px;
}

body.has-sticky-navbar {
  padding-top: 60px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar .nav-item {
    margin: 0;
  }
  
  .navbar .nav-item .nav-link {
    padding: 10px 20px;
    border-radius: 0;
  }
  
  .navbar-collapse {
    background: #ffffff;
    margin-top: 15px;
    padding: 20px;
    border-top: 1px solid #e5e5e5;
  }
}

@media (max-width: 768px) {
  .navbar {
    background: #ffffff !important;
    padding: 10px 0;
  }
  
  .navbar .container,
  .navbar .container-fluid {
    padding: 0 15px;
  }
  
  .navbar-toggler {
    border-color: #9B4A9B !important;
    padding: 4px 10px;
  }
  
  .navbar .nav-link {
    color: #333333 !important;
    padding: 12px 15px !important;
  }
  
  .navbar .nav-link:hover {
    color: #9B4A9B !important;
    background: rgba(155, 74, 155, 0.05);
  }
  
  .navbar-brand {
    margin-right: auto;
  }
  
  .navbar .nav-right {
    padding-left: 15px;
  }
}

/* Breadcrumb - Okunabilir overlay */
.site-breadcrumb {
  position: relative;
  color: #ffffff;
  background: none;
  overflow: hidden;
  z-index: 1;
}

.site-breadcrumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/assets/img/breadcrumb/03.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.site-breadcrumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(90, 31, 90, 0.85), rgba(128, 0, 32, 0.85));
  z-index: 1;
}

.site-breadcrumb .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  color: #ffffff !important;
  font-weight: bolder;
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
}

.breadcrumb-menu {
  color: #ffffff !important;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-menu li {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-right: 10px;
}

.breadcrumb-menu li a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
}

.breadcrumb-menu li a:hover {
  color: #F4B6C2 !important;
}

/* Logo Area */
.header-logo img {
  max-height: 60px;
  width: auto;
}

.header-middle {
  padding: 20px 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

/* Header Middle Buttons */
.header-middle-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-middle-right .header-middle-btn {
  background: rgba(155, 74, 155, 0.08);
  color: #9B4A9B;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 14px;
}

.header-middle-right .header-middle-btn:hover {
  background: rgba(155, 74, 155, 0.15);
  transform: translateY(-2px);
}

.header-middle-right .header-middle-btn i {
  font-size: 18px;
}

.header-middle-right .header-middle-btn span {
  background: #9B4A9B;
  color: #ffffff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

/* Mobile Menu Toggle */
.navbar-toggler span {
  border-color: #9B4A9B;
}

.offcanvas {
  background: #ffffff;
}

.offcanvas .nav-link {
  color: #333333 !important;
}

.offcanvas .nav-link:hover {
  color: #9B4A9B !important;
}

/* Links and buttons */
.nav-right-link:hover {
  color: var(--theme-color) !important;
}

.nav-right-link span {
  background: var(--theme-color) !important;
}

/* Dropdown cart */
.dropdown-cart-header a:hover {
  color: var(--theme-color) !important;
}

.dropdown-cart-item .cart-remove:hover {
  color: var(--theme-color) !important;
}

/* Site heading */
.site-title-tagline {
  color: var(--theme-color) !important;
}

.site-heading::before {
  background: var(--theme-color-light) !important;
}

.site-heading::after {
  border-bottom-color: var(--theme-color) !important;
}

/* Forms and inputs */
.form-control:focus,
.form-select:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--theme-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(139, 58, 139, 0.25) !important;
}

/* Nice select dropdown */
.nice-select {
  border-color: var(--border-info-color) !important;
}

.nice-select:hover,
.nice-select:focus,
.nice-select.open {
  border-color: var(--theme-color) !important;
}

.nice-select .option:hover {
  background: var(--theme-color) !important;
  color: var(--color-white) !important;
}

.nice-select .option.selected {
  background: var(--theme-color-light) !important;
  color: var(--theme-color) !important;
}

/* Buttons */
.theme-btn,
.btn-primary {
  background: var(--gradient-primary) !important;
  border: none !important;
}

.theme-btn:hover,
.btn-primary:hover {
  background: var(--gradient-secondary) !important;
}

.theme-btn2 {
  border-color: var(--theme-color) !important;
  color: var(--theme-color) !important;
}

.theme-btn2:hover {
  background: var(--theme-color) !important;
  color: var(--color-white) !important;
}

/* Product elements */
.product-cart-btn {
  background: #9B4A9B;
  color: #ffffff;
}

.product-cart-btn:hover {
  background: #C1547A;
  color: #ffffff;
}

.product-price span {
  color: #9B4A9B;
  font-weight: 600;
}

.product-price del {
  color: #999999;
  font-weight: normal;
}

/* Pagination */
.page-link {
  color: var(--theme-color) !important;
}

.page-link:hover {
  background: var(--theme-color-light) !important;
  border-color: var(--theme-color) !important;
  color: var(--theme-color) !important;
}

.page-item.active .page-link {
  background: var(--gradient-primary) !important;
  border-color: var(--theme-color) !important;
}

/* Swiper */
.swiper-pagination-bullet-active {
  background: var(--theme-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--theme-color) !important;
}

/* Loader */
.loader-ripple div {
  border-color: var(--theme-color) !important;
}

/* Back to top */
.back-to-top {
  background: var(--gradient-primary) !important;
}

/* Links - Sadece gerekli yerlerde mor */
a {
  color: #9B4A9B;
  text-decoration: none;
}

a:hover {
  color: #C1547A;
  text-decoration: none;
}

/* Navbar links beyaz kalmalı */
.navbar a {
  color: inherit;
}

/* Footer links açık renk */
.footer-area a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-area a:hover {
  color: #F4B6C2;
}

/* Product Cards - Beyaz arka plan üzerinde mor vurgular */
.product-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 5px 20px rgba(155, 74, 155, 0.15);
  transform: translateY(-2px);
  border-color: rgba(155, 74, 155, 0.2);
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 15px;
}

.product-title {
  margin-bottom: 10px;
}

.product-title a {
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #9B4A9B;
}

.product-desc {
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Sidebar Profile Icon */
.sidebar-profile-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(155, 74, 155, 0.1) 0%, rgba(193, 84, 122, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sidebar-profile-icon i {
  font-size: 60px;
  color: #9B4A9B;
  transition: all 0.3s ease;
}

.sidebar:hover .sidebar-profile-icon {
  background: linear-gradient(135deg, rgba(155, 74, 155, 0.15) 0%, rgba(193, 84, 122, 0.15) 100%);
}

.sidebar:hover .sidebar-profile-icon i {
  color: #C1547A;
  transform: scale(1.05);
}

/* Category Menu */
.category-all {
  position: relative;
  margin-right: 20px;
  z-index: 100;
}

.category-btn {
  background: linear-gradient(135deg, #9B4A9B 0%, #C1547A 100%);
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: linear-gradient(135deg, #7A3A7A 0%, #A04060 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(155, 74, 155, 0.3);
}

.category-btn i {
  font-size: 18px;
}

.main-category {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  margin-top: 10px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.main-category.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-category li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-category li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.main-category li a:hover {
  background: rgba(155, 74, 155, 0.08);
  color: #9B4A9B;
  padding-left: 25px;
}

.main-category li a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.main-category li a span {
  flex: 1;
}

/* Hide category-all button (we're using direct category links instead) */
.category-all {
  display: none !important;
}

/* Prevent nav links from wrapping */
.navbar-nav .nav-link {
  white-space: nowrap;
  border: 1px solid #883dad;
  margin-right: 3px !important;
}

/* Mobile offcanvas menu - remove border and align left */
@media (max-width: 991px) {
  .offcanvas-body .navbar-nav .nav-link {
    border: none !important;
    text-align: left;
    justify-content: flex-start;
  }
  
  .offcanvas-body .navbar-nav {
    align-items: flex-start;
  }
}

/* Mobile header-middle adjustments */
@media (max-width: 991px) {
  .header-middle-list .list-item-info {
    display: none !important;
  }
  
  .header-middle-list .list-item {
    display: flex !important;
    padding: 0 !important;
    min-width: auto !important;
    width: auto !important;
  }
  
  .header-middle-list .list-item-icon {
    display: block !important;
    margin: 0 !important;
  }
  
  .header-middle-list li {
    display: block !important;
    margin: 0 5px !important;
  }
  
  .header-middle-right {
    display: flex !important;
    align-items: center !important;
  }
  
  .header-middle-list {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    gap: 5px;
  }
  
  .header-middle-list .list-item i {
    font-size: 20px;
  }
}

/* Product Card Button Hover */
.product-add-to-cart-btn:hover {
  background-color: #dc2626 !important;
}

/* Sidebar User Menu */
.user-menu-list-wrapper {
  padding-left: 20px;
  margin-top: 10px;
}

.user-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.user-menu-list li {
  margin-bottom: 8px;
}

.user-menu-list li a {
  display: block;
  padding: 8px 15px;
  color: #666666;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.user-menu-list li a:hover {
  background: rgba(155, 74, 155, 0.08);
  color: #9B4A9B;
  padding-left: 20px;
}

/* Address Item Styles */
.address-item {
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.address-item:hover {
  border-color: rgba(155, 74, 155, 0.3);
  box-shadow: 0 5px 15px rgba(155, 74, 155, 0.1);
}

.address-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.address-item-header h5 {
  margin: 0;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
}

.address-item-body {
  flex: 1;
  margin-bottom: 15px;
}

.address-item-body p {
  color: #666666;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.address-item-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 15px;
  border-top: 1px solid #e5e5e5;
}

.address-item-footer .btn {
  flex: 1;
  min-width: 100px;
}

/* Settings Item Styles */
.settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.settings-item:hover {
  border-color: rgba(155, 74, 155, 0.2);
  box-shadow: 0 2px 10px rgba(155, 74, 155, 0.05);
}

.settings-item-info h6 {
  margin: 0 0 5px 0;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
}

.settings-item-info p {
  margin: 0;
  color: #666666;
  font-size: 14px;
}

.form-check-input:checked {
  background-color: #9B4A9B;
  border-color: #9B4A9B;
}

.form-check-input:focus {
  border-color: #9B4A9B;
  box-shadow: 0 0 0 0.25rem rgba(155, 74, 155, 0.25);
}

/* Search Area Improvements */
.header-middle-search {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.header-middle-search .search-content {
  display: flex;
  align-items: center;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.header-middle-search input {
  flex: 1;
  border: none;
  padding: 12px 15px;
  font-size: 14px;
  color: #333333;
  background: transparent;
}

.header-middle-search input:focus {
  outline: none;
}

.header-middle-search select {
  border: none;
  border-right: 1px solid #e5e5e5;
  padding: 12px 15px;
  font-size: 14px;
  color: #666666;
  background: transparent;
  cursor: pointer;
}

.header-middle-search select:focus {
  outline: none;
}

/* Search button */
.search-btn,
.header-middle-search .search-btn {
  background: #9B4A9B;
  color: #ffffff !important;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover,
.header-middle-search .search-btn:hover {
  background: #C1547A;
  color: #ffffff !important;
}

/* Category Grid Layout */
.category-area {
  padding: 0 0;
  background: #fafafa;
}

.category-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .category-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .category-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Category Card Alternative Style */
.category-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid rgba(155, 74, 155, 0.12);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-card:hover {
  border-color: rgba(155, 74, 155, 0.25);
  box-shadow: 0 10px 30px rgba(155, 74, 155, 0.15);
  transform: translateY(-5px);
}

/* Features Section Background Fix */
.feature-area,
.features-section {
  background: #f8f8f8;
  padding: 40px 0;
}

.feature-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* Blog Cards - Okunabilir */
.blog-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.blog-item:hover {
  box-shadow: 0 5px 20px rgba(155, 74, 155, 0.15);
  transform: translateY(-2px);
}

.blog-title {
  margin: 15px 0;
}

.blog-title a {
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.blog-title a:hover {
  color: #9B4A9B;
}

.blog-item-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  padding: 0;
  list-style: none;
}

.blog-item-meta li {
  color: #666666;
  font-size: 14px;
}

.blog-btn {
  color: #9B4A9B;
  font-weight: 500;
  text-decoration: none;
}

.blog-btn:hover {
  color: #C1547A;
}

/* Blog Sidebar */
.blog-sidebar {
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.blog-sidebar .widget {
  margin-bottom: 30px;
}

.blog-sidebar .widget-title {
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #9B4A9B;
}

/* Category SVG Icon Styles */
.category-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  padding: 15px;
  border-radius: 50%;
  background: rgba(155, 74, 155, 0.05);
  border: 2px solid rgba(155, 74, 155, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.category-item:hover .category-icon-wrapper {
  background: rgba(155, 74, 155, 0.1);
  border-color: rgba(155, 74, 155, 0.2);
  transform: rotate(5deg) scale(1.05);
}

.category-icon-wrapper svg {
  width: 60px;
  height: 60px;
  stroke: #9B4A9B;
  stroke-width: 2.5;
  fill: none;
  transition: all 0.3s ease;
}

.category-item:hover .category-icon-wrapper svg {
  stroke: #C1547A;
  stroke-width: 3;
}

.category-item img {
  max-width: 65%;
  margin-bottom: 10px;
}

/* Product Card Grid Fixes */
.product-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.product-item .product-img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f9f9f9;
}

.product-item .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-item .product-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-item .product-title {
  font-size: 16px;
  margin-bottom: 10px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-item .product-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-item .product-title a:hover {
  color: var(--theme-color);
}

.product-item .product-price {
  margin-top: auto;
  padding-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color);
}

.product-item .product-price del {
  color: #999;
  font-size: 14px;
  font-weight: normal;
  margin-right: 8px;
}

.product-item .product-btn {
  margin-top: 15px;
}

.product-item .product-btn .theme-btn {
  width: 100%;
  padding: 10px;
  text-align: center;
  background: var(--theme-color);
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-item .product-btn .theme-btn:hover {
  background: var(--theme-color2);
}

.product-item .product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-pink);
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  z-index: 1;
}

/* Product Image Placeholder */
.product-img-placeholder {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
}

.product-img-placeholder i {
  font-size: 48px;
  margin-bottom: 10px;
  color: #ccc;
}

.product-img-placeholder span {
  font-size: 14px;
  color: #999;
}

/* Category Description */
.category-description {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: center;
  border: 1px solid #eee;
}

.category-description p {
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Grid Layout Fixes */
.shop-area .row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.shop-area .row > [class*='col-'] {
  padding: 15px;
  display: flex;
}

.shop-area .product-item {
  width: 100%;
}

/* Product Detail Page */
.product-details-img {
  position: relative;
}

.product-main-slider {
  margin-bottom: 20px;
}

.product-main-slider img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-thumb-slider {
  margin-top: 10px;
}

.product-thumb-slider .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s;
}

.product-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid var(--theme-color);
  border-radius: 4px;
}

.product-details-content .product-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.product-details-content .product-price {
  font-size: 24px;
  margin-bottom: 20px;
}

.product-details-content .price-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 15px;
}

.product-details-content .price-new {
  color: var(--theme-color);
  font-weight: bold;
}

.product-action {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 30px 0;
}

.quantity-wrapper {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.quantity-btn {
  background: #f5f5f5;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.quantity-btn:hover {
  background: #e0e0e0;
}

.quantity-input {
  border: none;
  width: 60px;
  text-align: center;
  font-size: 16px;
}

.product-features {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.product-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.product-description {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
}

.product-description h3 {
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid var(--theme-color);
  padding-bottom: 10px;
}

/* Additional Global Fixes */
.text-primary {
  color: #9B4A9B !important;
}

.bg-primary {
  background-color: #9B4A9B !important;
}

.btn-primary {
  background-color: #9B4A9B;
  border-color: #9B4A9B;
}

.btn-primary:hover {
  background-color: #C1547A;
  border-color: #C1547A;
}

/* Badge colors */
.badge-primary {
  background-color: #9B4A9B;
}

.badge-secondary {
  background-color: #C1547A;
}

/* Text color utilities */
.text-theme {
  color: #9B4A9B !important;
}

.text-pink {
  color: #C1547A !important;
}

/* Navbar Collapse - Menü düzeni */
.navbar-collapse {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-expand-lg .navbar-collapse {
  padding: 0;
}

/* Sticky durumda navbar-collapse */
.navbar-sticky .navbar-collapse,
.sticky-navbar .navbar-collapse,
.navbar.is-sticky .navbar-collapse {
  padding: 0 !important;
}

/* FORCE NAVBAR COLOR OVERRIDES */
.navbar,
.navbar.navbar-expand-lg,
.navbar.navbar-light,
.navbar.bg-light {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.navbar a,
.navbar .nav-link,
.navbar .navbar-nav .nav-link,
.navbar-expand-lg .navbar-nav .nav-link {
  color: #333333 !important;
  margin-right: 3px !important;
}

.navbar a:hover,
.navbar .nav-link:hover,
.navbar .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #9B4A9B !important;
}

/* Override any inline styles on navbar */
nav.navbar[style] {
  background: #ffffff !important;
}

nav.navbar a[style],
nav.navbar .nav-link[style] {
  color: #333333 !important;
}
