:root {
  --logo-width: 100px;
  --logo-height: 24px;
}
.main-header{
    padding-top: 8px;
    padding-bottom: 8px;
}
header.main-header .logo {
    display: flex;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

header.main-header .logo img.site-logo {
    width: auto;                         /* let height control */
    height: var(--logo-height) !important;
    max-width: var(--logo-width) !important;
    max-height: var(--logo-height) !important;
    object-fit: contain;
    display: block;
}

/* ===== HEADER MOBILE FIX ===== */

.site-logo {
    max-height: var(--logo-height);
    width: auto;
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 16px;
    }

    .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        padding-left: 15px;
    }
}


/* ===== FOOTER ===== */

.site-footer {
    background: var(--footer-bg-color, #f8f8f8);
    color: #333;
    font-size: 14px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    line-height: 1.6;
}

.site-footer i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-social, .footer-newsletter {
    display: flex;
    gap: 12px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #c7baba;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.footer-social .social-icon i {
    margin-right: 0px;
    color: #fff;
    font-size: 16px;
}

.footer-bottom {
    background: rgba(0,0,0,0.05);
    font-size: 13px;
}

/* ===============================
   TYPOGRAPHY
================================ */
h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: 20px; }
p  { font-size: 15px; line-height: 1.7; }

/* ===============================
   PRODUCT CARD
================================ */
.product-card {
  border: 1px solid #eee;
  transition: 0.3s;
  background: #fff;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
}

.product-img .sale {
  position: absolute;
  top: 10px;
  left: 10px;
}

.product-body {
  padding: 12px;
}

.product-title {
  font-size: 15px;
  margin-bottom: 6px;
}

.price {
  font-weight: 600;
}

.price del {
  font-size: 13px;
  color: #999;
}

.actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.thumb-img:hover {
  border: 2px solid #000;
}
.thumbSwiper img {
  opacity: 0.6;
}
.thumbSwiper .swiper-slide-thumb-active img {
  opacity: 1;
  border: 2px solid #000;
}

/* MOBILE */
@media (max-width: 767px) {
    .site-footer {
        text-align: left;
    }

    .footer-social, .footer-newsletter {
        justify-content: left;
    }
}
/* FIX split dropdown alignment */
.nav-item.dropdown {
    display: flex;
    align-items: center;
}

/* Main clickable link */
.nav-item.dropdown > .nav-link {
    padding-right: 0.25rem;
}

/* Caret icon */
.nav-item.dropdown > .dropdown-toggle-split {
    padding-left: 0.25rem;
}

/* Remove caret button border look */
.dropdown-toggle-split::after {
    margin-left: 0.25rem;
}

/* ===============================
   MOBILE NAV FIX – FINAL
   =============================== */
@media (max-width: 991px) {

    /* Reset dropdown layout */
    .navbar-nav .nav-item.dropdown {
        position: relative;
        width: 100%;
        display: block;
    }

    /* Shop text */
    .navbar-nav .nav-item.dropdown > .nav-link {
        display: inline-block;
        width: auto;
        padding-right: 2rem;
    }

    /* Caret (▼) position */
    .navbar-nav .dropdown-toggle-split {
        position: absolute;
        right: 0;
        top: 0;
        padding: 0.75rem 1rem;
    }

    /* Dropdown list behaves like normal menu */
    .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        float: none;
        width: 100%;
        margin: 0.25rem 0 0;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    /* Child items */
    .navbar-nav .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
}
.breadcrumb {
    background: transparent;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "→";
}
