/* =====================================================
KARUKATHA LAYOUT CSS - FULL & FINAL
Structure / Navigation / Footer
===================================================== */

@import url("branding.css");

/* =====================================================
   HEADER WRAPPER
   ===================================================== */
.kk-header-wrapper {
  min-height: 184px; 
  position: relative;
  width: 100%;
}

@media (max-width: 992px) {
  .kk-header-wrapper {
    min-height: 145px; 
  }
}

/* =====================================================
   OFFER BAR - Hardware Accelerated
   ===================================================== */
.kk-offer-bar {
  background: var(--color-brand-gradient);
  color: var(--color-white);
  height: 40px; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.kk-offer-bar p {
  margin: 0;
  font-weight: 600;
  font-size: var(--text-sm);
  text-align: center;
  animation: kkOfferPulse 2s infinite ease-in-out;
}

@keyframes kkOfferPulse {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0.8; transform: scale(1); }
}

/* Collapse space entirely to remove white gap */
.kk-offer-hide {
  height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

/* =====================================================
   HEADER & STICKY LOGIC
   ===================================================== */
.kk-header {
  background: var(--color-white);
  width: 100%;
  z-index: var(--z-index-sticky);
  backface-visibility: hidden;
  transition: box-shadow 0.3s ease;
}

.kk-header-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: var(--shadow-md);
  /* Starts slide from completely hidden above the screen */
  animation: kkSlideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes kkSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* =====================================================
   NAVBAR & CATEGORY BAR
   ===================================================== */
.kk-navbar {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  background: var(--color-white);
  position: relative;
  z-index: 100;
}
.kk-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* =====================================================
LEFT AREA
===================================================== */

.kk-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* =====================================================
LOGO
===================================================== */

.kk-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  transition: 0.2s;
}

.kk-logo img {
  height: 62px;
  object-fit: contain;
}

.kk-tagline {
  font-size: 11px;
  color: var(--color-brand);
  margin-top: -2px;
  letter-spacing: 0.2px;
}

/* =====================================================
MENU BUTTON
===================================================== */

.kk-menu-btn {
  border: none;
  background: none;
  font-size: 22px;
  color: var(--gray-800);
  padding: 8px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: none;
  transition: 0.2s;
}

.kk-menu-btn:hover {
  background: var(--color-accent-soft);
}

/* =====================================================
SEARCH
===================================================== */

.kk-search {
  width: 45%;
  max-width: 520px;
}

.kk-search-box {
  position: relative;
}

#liveSearch {
  width: 100%;
  border-radius: 40px;
  border: 1px solid var(--border-light);
  padding: 11px 45px 11px 18px;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s ease;
}

#liveSearch:focus {
  border-color: var(--color-brand);
  outline: none;
  box-shadow: 0 0 0 3px rgba(94, 165, 0, 0.15);
}

.kk-search-box i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  pointer-events: none;
}

/* =====================================================
SEARCH RESULTS
===================================================== */

.kk-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: 105%;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  margin-top: 4px;
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid var(--border-light);
  z-index: 1000;
}

.kk-search-results a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--gray-800);
  font-size: 13px;
  transition: 0.15s;
}

.kk-search-results img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* =====================================================
MOBILE SEARCH
===================================================== */

.kk-search-mobile {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

.kk-search-mobile input {
  width: 100%;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  padding: 10px 40px 10px 14px;
  font-size: 14px;
}

.kk-search-mobile input:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(101, 183, 67, 0.15);
}

/* =====================================================
RIGHT NAVBAR
===================================================== */

.kk-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ICON BUTTON */

.kk-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-800);
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

.kk-icon i {
  font-size: 20px;
}

/* Desktop hover effect */
@media (hover: hover) {
  .kk-icon:hover {
    color: var(--color-brand);
    transform: translateY(-2px);
  }
}

/* =====================================================
REMOVE BOOTSTRAP DEFAULT CARET
===================================================== */

.kk-toggle.dropdown-toggle::after {
  display: none !important;
}

/* =====================================================
BOOTSTRAP DROPDOWN MENU
===================================================== */

.dropdown-menu {
  border-radius: var(--radius-lg);
  border: none;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  z-index: var(--z-index-dropdown);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition:
    opacity 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: top;
  will-change: transform, opacity;
  pointer-events: none;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.kk-right .dropdown-menu {
  right: 0;
  left: auto;
  top: calc(100% + 8px);
}

/* =====================================================
ARROW ROTATION
===================================================== */

.kk-toggle .kk-arrow {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dropdown.show .kk-arrow {
  transform: rotate(180deg);
}

/* =====================================================
DROPDOWN ITEMS
===================================================== */

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.dropdown-item:hover {
  background: var(--gray-100);
  color: var(--color-brand);
  transform: translateX(2px);
}

/* =====================================================
CART ICON
===================================================== */

.kk-cart {
  display: flex;
  align-items: center;
  position: relative;
}

.kk-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-danger);
  color: #fff;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* =====================================================
CATEGORY BAR
===================================================== */

.kk-category-bar {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 70px;
  z-index: 90;
  transition: all 0.25s ease;
}

/* =====================================================
CATEGORY LIST
===================================================== */

.kk-categories {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 14px 0;
  margin: 0;
  justify-content: center;
  align-items: center;
  transition: 0.25s;
}

/* =====================================================
CATEGORY ITEM - DESKTOP
===================================================== */

.kk-category {
  position: relative;
}

.kk-category a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray-800);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.25s ease;
  min-width: 72px;
}

.kk-category a:hover {
  background: var(--color-brand-light);
  color: var(--color-brand);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* =====================================================
CATEGORY ICONS
===================================================== */

.kk-cat-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 6px;
  transition: 0.25s;
  display: block;
}

.kk-category a:hover .kk-cat-icon {
  transform: scale(1.1);
}

.kk-category span {
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
}

/* =====================================================
CATEGORY BAR COMPACT MODE
===================================================== */

.kk-category-bar.compact .kk-categories {
  padding: 6px 0;
  gap: 20px;
}

.kk-category-bar.compact .kk-category a {
  flex-direction: row;
  gap: 6px;
  padding: 6px 10px;
  min-width: auto;
  font-size: 13px;
}

.kk-category-bar.compact .kk-cat-icon {
  display: none;
}

.kk-category-bar.compact .kk-category span {
  margin-top: 0;
}

/* =====================================================
MEGA MENU DROPDOWN - DESKTOP ONLY
===================================================== */

.kk-category .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.25s ease;
  display: block !important;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 5px;
  background: #fff;
  padding: 5px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  width: 220px;
  max-width: 80vw;
  z-index: var(--z-index-dropdown);
}

.kk-category.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* =====================================================
MEGA MENU CONTENT
===================================================== */

.kk-mega {
  padding: 26px 28px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  animation: kkMega 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes kkMega {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kk-mega-column {
  margin-bottom: 4px;
}

.kk-sub-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.kk-mega ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kk-mega li {
  margin: 0;
}

.kk-mega a {
  display: block;
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.2s;
}

.kk-mega a:hover {
  background: var(--color-brand-light);
  color: var(--color-brand);
}

.kk-mega .row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =====================================================
MOBILE RESPONSIVE SYSTEM - FULLY FIXED
===================================================== */

@media (max-width: 1200px) {
  .kk-categories {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    gap: 18px;
    padding: 12px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    touch-action: pan-x;
  }

  .kk-categories::-webkit-scrollbar {
    display: none;
  }

  .kk-categories {
    scrollbar-width: none;
  }

  .kk-category {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .kk-category a {
    min-width: 72px;
  }
}

@media (max-width: 992px) {
  .kk-menu-btn {
    display: block !important;
  }

  .kk-search {
    display: none !important;
  }

  .kk-right {
    gap: 18px;
  }

  .kk-category-bar {
    position: relative !important;
    top: auto !important;
    z-index: 95;
  }

  /* Prepare mobile categories */
  .kk-category {
    z-index: 100;
  }

  .kk-category a {
    position: relative;
    z-index: 101;
    cursor: pointer !important;
    touch-action: manipulation;
  }
}

@media (max-width: 768px) {
  .kk-offer-bar {
    font-size: 12px;
    padding: 6px 10px;
  }

  .kk-icon span {
    display: none;
  }

  .kk-right {
    gap: 18px;
  }

  .dropdown-menu {
    min-width: 200px;
  }

  .kk-category-bar.compact {
    padding: 4px 0;
  }

  .kk-search-mobile {
    position: relative !important;
  }

  /* CRITICAL: DISABLE DESKTOP MEGAS ON MOBILE */
  .kk-category .dropdown-menu {
    display: none !important;
    position: fixed !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }

  /* MOBILE CATEGORY BAR - FULL SCREEN DROPDOWN */
  .kk-category.open .dropdown-menu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 20px !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
    background: var(--color-white) !important;
    box-shadow: none !important;
    overflow-y: auto;
    border-bottom: none !important;
  }

  /* Active category state */
  .kk-category.open a {
    background: var(--color-brand-light) !important;
    color: var(--color-brand) !important;
    position: relative;
    z-index: 10001;
  }

  .kk-categories {
    padding: 12px 20px;
    gap: 16px;
  }
}

/* TOUCH DEVICES */
@media (hover: none) and (pointer: coarse) {
  .kk-category a,
  .kk-mobile-cat-title,
  .kk-mobile-sub-title {
    cursor: pointer !important;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 576px) {
  .kk-categories {
    gap: 14px;
    padding: 10px 16px;
  }

  .kk-category a {
    min-width: 64px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .kk-cat-icon {
    width: 32px !important;
    height: 32px !important;
  }
}

/* =====================================================
MOBILE OFFCANVAS - FULLY INTERACTIVE
===================================================== */

.offcanvas {
  max-width: 320px;
  width: 85vw;
  z-index: 1060 !important;
}

.offcanvas-header {
  border-bottom: 1px solid var(--border-light);
  padding: 18px 20px;
}

.offcanvas-body {
  padding: 20px;
  overflow-y: auto;
}

/* OFFCANVAS CATEGORIES */
.kk-mobile-category {
  margin-bottom: 28px;
  border-radius: 12px;
}

.kk-mobile-cat-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-brand);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 10px;
  transition: all 0.25s ease;
  font-size: 17px;
  touch-action: manipulation;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

.kk-mobile-cat-title:hover,
.kk-mobile-cat-title:active {
  background: var(--color-brand-light);
  color: var(--color-brand);
}

.kk-mobile-sub-container {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 4px;
}

.kk-mobile-category.open .kk-mobile-sub-container {
  max-height: 800px;
}

.kk-mobile-sub {
  margin-bottom: 12px;
}

.kk-mobile-sub-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  touch-action: manipulation;
  margin-bottom: 2px;
  position: relative;
  z-index: 10;
}

.kk-mobile-sub-title:hover,
.kk-mobile-sub.open .kk-mobile-sub-title {
  background: var(--gray-100);
  color: var(--color-brand);
}

.kk-mobile-sub ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0 0 8px 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.kk-mobile-sub.open ul {
  max-height: 400px;
  padding: 0 0 0 24px;
}

.kk-mobile-sub li {
  margin-bottom: 8px;
}

.kk-mobile-sub a {
  text-decoration: none;
  font-size: 14px;
  color: var(--gray-600);
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10;
}

.kk-mobile-sub a:hover {
  color: var(--color-brand);
  background: var(--gray-50);
  padding-left: 16px;
  transform: translateX(4px);
}

/* CHEVRON ANIMATIONS */
.kk-mobile-cat-title i,
.kk-mobile-sub-title i {
  transition: transform 0.25s ease;
  font-size: 13px;
  color: var(--gray-500);
  pointer-events: none;
  flex-shrink: 0;
}

.kk-mobile-category.open .kk-mobile-cat-title i,
.kk-mobile-sub.open .kk-mobile-sub-title i {
  transform: rotate(90deg);
  color: var(--color-brand);
}

/* CRITICAL MOBILE FIXES */
@media (max-width: 768px) {
  /* Force all offcanvas links clickable */
  .offcanvas *,
  .offcanvas a,
  .offcanvas .kk-mobile-cat-title,
  .offcanvas .kk-mobile-sub-title {
    pointer-events: auto !important;
  }

  /* Prevent icon blocking */
  .offcanvas i {
    pointer-events: none !important;
  }

  /* Touch targets minimum 44px */
  .kk-mobile-cat-title,
  .kk-mobile-sub-title {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* =====================================================
   BECOME A SELLER SECTION
   ===================================================== */
.kk-become-seller-section {
    padding: 120px 0 80px 0;
    background: var(--color-white); /* Soft professional grey-green tint */
}

.seller-cta-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding: 0 60px;
}

/* Typography & Badges */
.badge-pill-brand {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-brand-light);
    color: var(--color-brand-dark);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.text-brand {
    color: #65b743; /* Adjust to your brand green */
}

/* Benefits styling */
.benefit-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--color-brand);
    color: var(--color-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem; /* Size of the icon */
    flex-shrink: 0;
    transition: 0.3s;
    
    /* --- The Thickness Magic --- */
    -webkit-text-stroke: 1.5px var(--color-white); /* Adds an outside border to the font */
    font-weight: 900 !important; /* Forces the thickest font weight */
}

/* Optional: Slight shadow to make the thick icon pop */
.benefit-icon i {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-text h6 {
    margin-bottom: 4px;
    font-weight: 700;
    color: #1a1a1a;
}

.benefit-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Buttons & Links */
.partner-link {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.2s;
}

.partner-link:hover {
    color: #65b743;
}

.partner-link i {
    transition: transform 0.2s;
    display: inline-block;
}

.partner-link:hover i {
    transform: translateX(5px);
}

/* Desktop Image Overflow */
.seller-image-container {
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 480px;
}

.seller-img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: -140px; /* Adjust based on image height */
}

/* =====================================================
   MOBILE RESPONSIVENESS
   ===================================================== */
@media (max-width: 991px) {
    .kk-become-seller-section {
        padding: 60px 0;
    }

    .seller-cta-wrapper {
        padding: 40px 30px;
        margin: 0 10px;
        border-radius: 24px;
        text-align: center;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .cta-actions {
        align-items: center;
    }
}

/* =====================================================
FOOTER
===================================================== */

.kk-footer{

background:linear-gradient(
135deg,
#0f0f0f,
#1c1c1c
);

color:#d1d5db;

padding:70px 0 40px;

font-size:14px;

}


/* LOGO */

.kk-footer-logo img{
height:34px;
margin-bottom:12px;
}


/* TAGLINE */

.kk-footer-tagline{

font-family:'Dancing Script',cursive;

font-size:18px;

margin-bottom:10px;

color:#fff;

}

.kk-footer-about{

color:#9ca3af;

line-height:1.6;

}


/* TITLE */

.kk-footer-title{

font-size:15px;

font-weight:600;

margin-bottom:18px;

color:#fff;

}


/* LINKS */

.kk-footer-links{

list-style:none;

padding:0;

margin:0;

}

.kk-footer-links li{
margin-bottom:10px;
}

.kk-footer-links a{

color:#9ca3af;

text-decoration:none;

transition:.2s;

}

.kk-footer-links a:hover{

color:var(--color-brand);

padding-left:4px;

}


/* SOCIAL */

.kk-footer-social{

display:flex;

gap:14px;

margin-top:16px;

}

.kk-footer-social a{

width:36px;
height:36px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:#2b2b2b;

color:#fff;

font-size:16px;

transition:.2s;

}

.kk-footer-social a:hover{

background:var(--color-brand);

transform:translateY(-2px);

}


/* NEWSLETTER */

.kk-newsletter{

display:flex;

margin-top:10px;

}

.kk-newsletter input{

flex:1;

border:none;

padding:10px 12px;

border-radius:8px 0 0 8px;

outline:none;

}

.kk-newsletter button{

border:none;

background:var(--color-brand);

color:#fff;

padding:10px 16px;

border-radius:0 8px 8px 0;

cursor:pointer;

}


/* =====================================================
PAYMENT METHODS
===================================================== */

.kk-payments{

display:flex;

align-items:center;

flex-wrap:wrap;

gap:10px;

margin-top:18px;

}


/* ICON */

.kk-payments img{

height:28px;

background:#fff;

padding:2px 4px;

border-radius:6px;

border:1px solid #e5e7eb;

transition:.2s;

}


/* HOVER */

.kk-payments img:hover{

transform:translateY(-2px);

box-shadow:0 4px 12px rgba(0,0,0,.12);

}



/* DIVIDER */

.kk-footer-divider{

border-color:#2b2b2b;

margin:40px 0 20px;

}


/* BOTTOM */

.kk-footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:10px;

font-size:13px;

color:#9ca3af;

}

.kk-footer-legal a{

color:#9ca3af;

margin-left:16px;

text-decoration:none;

}

.kk-footer-legal a:hover{

color:#fff;

}



/* =====================================================
WHATSAPP FLOAT BUTTON
===================================================== */

.whatsapp-float{
position:fixed;
right:22px;
bottom:28px;
width:58px;
height:58px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:var(--color-brand-gradient);
color:#fff;
font-size:26px;
box-shadow:
0 10px 25px rgba(0,0,0,.25),
0 0 0 6px rgba(37,211,102,.15);
z-index:999;
transition:all .25s ease;
}


/* =====================================================
MOBILE BOTTOM NAV
===================================================== */

.kk-mobile-nav{
z-index:1000;
box-shadow:0 -4px 20px rgba(0,0,0,.08);
}

.kk-mobile-link{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:4px;
text-decoration:none;
color:#444;
font-size:12px;
transition:.2s;
}

.kk-mobile-link i{
font-size:20px;
}

.kk-mobile-link:hover{
color:var(--color-brand);
}

.kk-mobile-link.active{
color:var(--color-brand);
}

@media (max-width:576px){

.whatsapp-float{
bottom:90px;
right:16px;
width:54px;
height:54px;
}

}

/* =====================================================
   BACK TO TOP STYLING
   ===================================================== */
.kk-back-top {
    position: fixed;
    right: 25px;
    bottom: 60px; /* Positioned above the Mobile Nav/WhatsApp */
    width: 46px;
    height: 46px;
    background: var(--color-white);
    color: var(--color-brand);
    border: none;
    border-radius: 20%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    
    /* Animation States */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.kk-back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.kk-back-top i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.kk-back-top:hover {
    background: var(--color-brand);
    color: var(--color-white);
}

.kk-back-top:hover i {
    transform: translateY(-4px);
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .kk-back-top {
        right: 20px;
        bottom: 100px; /* Higher up to avoid Mobile Bottom Nav */
        width: 40px;
        height: 40px;
    }
}

.kk-highlight{
    background: #ffe08a;
    padding: 1px 3px;
    border-radius: 3px;
}