/* APV Pharma - Theme Customization */

/* Brand colors */
:root {
  --apv-blue: #2567A8;
  --apv-teal: #23a1d1;
  --apv-orange: #ED8123;
  --apv-light-bg: #f8f9fa;
  --apv-dark: #303030;
}

/* Top bar */
#top {
  background-color: var(--apv-blue) !important;
  border-bottom: none !important;
}

#top .list-inline-item > a, 
#top .list-inline-item .dropdown > a, 
#top .list-inline-item .dropdown > span {
  color: #fff !important;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 3px solid var(--apv-teal);
}

#logo img {
  max-width: 220px !important;
}

/* Menu */
#menu {
  background-color: var(--apv-teal) !important;
  background-image: none !important;
  border-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#menu .navbar-nav > li > a {
  color: #fff !important;
  font-weight: 500;
}

/* Homepage hero banner */
#common-home {
  margin-top: 0;
}

.home-hero,
.home-hero-bg,
.home-hero-content,
.home-hero-tagline,
.home-hero-description,
.home-hero-btn {
  display: none;
}

/* Product cards */
.product-thumb {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.product-thumb:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-thumb .description h4 a {
  color: var(--apv-blue);
  text-decoration: none;
}

.product-thumb .description h4 a:hover {
  color: var(--apv-teal);
}

.price {
  color: var(--apv-orange) !important;
  font-weight: 700 !important;
}

.price-new {
  color: var(--apv-orange) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--apv-teal);
  border-color: var(--apv-teal);
}

.btn-primary:hover {
  background-color: var(--apv-blue);
  border-color: var(--apv-blue);
}

/* Footer */
footer {
  background-color: var(--apv-dark) !important;
  border-color: #444 !important;
}

footer h5 {
  color: var(--apv-teal) !important;
}

/* Breadcrumb */
.breadcrumb {
  background-color: transparent !important;
  border: none !important;
  padding-left: 0 !important;
}

/* Category headers */
h1, h2, h3 {
  color: var(--apv-blue);
}

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

a:hover {
  color: var(--apv-teal);
}

/* Language code badge */
.lang-code {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

#top .lang-code {
  color: #fff !important;
}