/* -------------------------------------
   THEME COLORS
------------------------------------- */
:root {
  --gk-primary: #126838;
  --gk-yellow: #F4C400;
  --gk-green: #2E8B57;
  --gk-light: #ffffff;
  --gk-bg: #f4f6ff;
}


/* -------------------------------------
   ROOT SAFETY
------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/* -------------------------------------
   NAVBAR BASE
------------------------------------- */
.gk-navbar {
  background: var(--gk-primary);
  padding: 8px 20px;
}

.gk-navbar .container-fluid {
  max-width: 1280px;   /* 🔥 zoom-safe width */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.gk-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* -------------------------------------
   DESKTOP MENU WRAPPER
------------------------------------- */
.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 16px;
}

/* -------------------------------------
   NAV LINKS
------------------------------------- */
.gk-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.gk-nav-link {
  color: var(--gk-light) !important;
  font-weight: 600;
  padding: 7px 10px !important;
  font-size: 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: 0.25s ease;
}

.gk-nav-link:hover,
.gk-nav-link.active {
  background: rgba(255, 255, 255, 0.25);
  color: var(--gk-yellow) !important;
}

/* -------------------------------------
   RIGHT SIDE (SEARCH + ICONS)
------------------------------------- */
.gk-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
}

/* -------------------------------------
   SEARCH BAR (ZOOM SAFE)
------------------------------------- */
.gk-search-form {
  background: rgba(255,255,255,0.18);
  padding: 4px 8px;
  border-radius: 50px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
  max-width: 260px;
  width: 100%;
}

.gk-search-form:hover {
  border-color: var(--gk-yellow);
}

.gk-search-input {
  border: none;
  background: transparent;
  width: 100%;
  min-width: 120px;
  font-size: 14px;
  padding-left: 6px;
  color: white;
}

.gk-search-input::placeholder {
  color: #e6e6e6;
}

.gk-search-input:focus {
  outline: none;
}

/* Button */
.gk-search-btn {
  background: var(--gk-yellow);
  color: var(--gk-dark);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* -------------------------------------
   ICONS
------------------------------------- */
.gk-icon-link {
  color: white;
  font-size: 20px;
  transition: 0.2s ease;
}

.gk-icon-link:hover {
  color: var(--gk-yellow);
  transform: scale(1.1);
}

/* -------------------------------------
   MOBILE ICONS
------------------------------------- */
.gk-mobile-icons {
  display: none;
  align-items: center;
}

.gk-mobile-icons .gk-icon-link {
  font-size: 24px;
  margin-right: 12px;
}

/* -------------------------------------
   SMALL LAPTOP / ZOOM FIX (≤ 1200px)
------------------------------------- */
@media (max-width: 1200px) {

  .gk-logo {
    height: 55px;
  }

  .gk-nav-link {
    font-size: 13px;
    padding: 6px 8px !important;
  }

  .gk-search-form {
    max-width: 220px;
  }
}

/* -------------------------------------
   19-INCH & BELOW (≤ 1100px)
------------------------------------- */
@media (max-width: 1100px) {

  .desktop-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gk-menu {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }

  .gk-right {
    width: 100%;
    justify-content: center;
  }
}

/* -------------------------------------
   MOBILE (≤ 992px)
------------------------------------- */
@media (max-width: 992px) {

  .desktop-menu {
    display: none !important;
  }

  .gk-mobile-icons {
    display: flex;
  }

  .gk-navbar {
    padding: 8px 14px;
  }

  .gk-logo {
    height: 48px;
  }
}

/* -------------------------------------
   MOBILE MENU
------------------------------------- */
#gk-mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--gk-primary);
  display: none;
  flex-direction: column;
  padding: 20px;
  z-index: 999;
}

#gk-mobile-menu.show-menu {
  display: flex;
}

.mm-link {
  color: white;
  text-decoration: none;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
}

.mm-link.active {
  color: var(--gk-yellow);
}

/* -------------------------------------
   MOBILE SEARCH
------------------------------------- */
#gk-mobile-searchbar {
  display: none;
  background: var(--gk-primary);
  padding: 12px;
}

.gk-mobile-search-form {
  display: flex;
  width: 100%;
}

.gk-mobile-search-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 25px;
  border: none;
  font-size: 15px;
}

/* -------------------------------------
   NO SCROLL WHEN MENU OPEN
------------------------------------- */
.no-scroll {
  overflow: hidden;
}

/* -------------------------------------
   CATEGORY SECTION BASE
------------------------------------- */
.gk-categories {
  background: #f4f6ff;
  padding: 50px 0;
}

.gk-section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--gk-primary);
  text-align: center;
  margin-bottom: 25px;
}

/* -------------------------------------
   CATEGORY SECTION BASE
------------------------------------- */
.gk-categories {
  background: #f4f6ff;
  padding: 50px 0;
}

.gk-section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--gk-primary);
  text-align: center;
  margin-bottom: 25px;
}

/* -------------------------------------
   MOBILE FIRST â€” HORIZONTAL SCROLL
------------------------------------- */
.gk-category-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 15px 15px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  justify-content: flex-start;
}

/* Scrollbar (hidden later for mobile) */
.gk-category-scroll::-webkit-scrollbar {
  height: 6px;
}
.gk-category-scroll::-webkit-scrollbar-thumb {
  background: var(--gk-primary);
  border-radius: 20px;
}

/* -------------------------------------
   CATEGORY CARD
------------------------------------- */
.gk-category-card {
  flex: 0 0 auto;
  min-width: 150px;
  max-width: 180px;
  padding: 22px 12px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
  scroll-snap-align: start;
}

.gk-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.12);
  border-color: var(--gk-primary);
}

/* Image */
.gk-category-img {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  background: rgba(0,0,0,0.07);
  margin: 0 auto 12px;
  border: 1px solid #ccc;
}

/* Text */
.gk-category-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gk-dark);
  line-height: 1.2;
}
.gk-category-name span {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

/* -------------------------------------
   TABLET RESPONSIVE
------------------------------------- */
@media (min-width: 576px) and (max-width: 991px) {
  .gk-category-scroll {
    gap: 25px;
    padding: 20px;
  }

  .gk-category-card {
    min-width: 170px;
    border-radius: 24px;
  }
}

/* -------------------------------------
   DESKTOP â€” PREMIUM SLIDER MODE
------------------------------------- */
@media (min-width: 992px) {
  .gk-category-scroll {
    gap: 32px;
    padding: 10px 0;
    scroll-snap-type: x proximity;
  }

  /* Hide scrollbar (desktop) */
  .gk-category-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gk-category-scroll::-webkit-scrollbar {
    display: none;
  }

  .gk-category-card {
    min-width: 200px;
    max-width: 220px;
    border-radius: 22px;
  }

  .gk-category-img {
    width: 90px;
    height: 90px;
  }

  .gk-category-name {
    font-size: 18px;
  }
}

/* -------------------------------------
   MOBILE OPTIMIZATION (CRITICAL FIX)
------------------------------------- */
@media (max-width: 768px) {

  /* Section tightening */
  .gk-categories {
    padding: 30px 0 20px;
  }

  .gk-section-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  /* Scroll fix â€” FIRST CARD VISIBLE */
  .gk-category-scroll {
    gap: 14px;
    padding: 8px 12px;
    scroll-padding-left: 12px; /* ðŸ”¥ KEY FIX */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .gk-category-scroll::-webkit-scrollbar {
    display: none;
  }

  /* Compact cards */
  .gk-category-card {
    min-width: 120px;
    max-width: 130px;
    padding: 14px 10px;
    border-radius: 16px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
  }

  .gk-category-card:hover {
    transform: none;
  }

  /* Image + text shrink */
  .gk-category-img {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    border-radius: 10px;
  }

  .gk-category-name {
    font-size: 14px;
  }

  .gk-category-name span {
    font-size: 12px;
  }
}

/* -------------------------------------
   DESKTOP SLIDER ARROWS
------------------------------------- */
.gk-cat-arrow {
  position: absolute;
  top: 185px;
  z-index: 30;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gk-primary);
  color: var(--gk-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.12);
}

.gk-cat-arrow:hover {
  background: var(--gk-primary);
  color: white;
  transform: scale(1.12);
}

.gk-cat-arrow.left { left: -60px; }
.gk-cat-arrow.right { right: -60px; }

@media (max-width: 991px) {
  .gk-cat-arrow {
    display: none !important;
  }
}




/* -------------------------------------
   RESPONSIVE LUXURY HERO BANNER
------------------------------------- */
.gk-hero-banner {
  position: relative;
  overflow: hidden;
}

.gk-hero-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 5s ease;
}

.carousel-item.active .gk-hero-img {
  transform: scale(1);
}

/* Overlay for readability */
.gk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.15)
  );
  z-index: 1;
}

/* -------------------------------------
   CONTENT (CENTER-FOCUSED & RESPONSIVE)
------------------------------------- */
/* HERO CONTENT POSITIONING */
.gk-hero-content {
  position: absolute;
  inset: 0;                   /* allow full centering */
  display: flex;
  flex-direction: column;
  justify-content: center;    /* vertical center */
  align-items: center;        /* horizontal center */
  text-align: center;         /* center text */
  z-index: 2;
  padding: 20px;
  max-width: 800px;
  margin: auto;
}

/* Title */
.gk-hero-title {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  text-shadow: 0 6px 22px rgba(0,0,0,0.6);
  animation: fadeSlide 1s ease forwards;
}

/* Subtitle */
.gk-hero-sub {
  font-size: 18px;
  color: #efefef;
  margin-top: 10px;
  animation: fadeSlide 1.3s ease forwards;
}

/* Buttons Wrapper */
.gk-hero-btn-group {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Buttons */
.gk-hero-btn {
  padding: 12px 30px;
  border-radius: 35px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;     /* perfect alignment */
  text-align: center;
  cursor: pointer;
}

.gk-hero-btn.primary {
  background: var(--gk-yellow);
  color: black;
}

.gk-hero-btn.primary:hover {
  background: white;
}

.gk-hero-btn.outline {
  border: 2px solid white;
  color: white;
}

.gk-hero-btn.outline:hover {
  background: rgba(255,255,255,0.2);
}

/* -------------------------------------
   ARROWS
------------------------------------- */
.gk-arrow {
  z-index: 3;
}

.gk-arrow i {
  font-size: 40px;
  color: rgba(255,255,255,0.9);
  transition: 0.3s ease;
}

.gk-arrow:hover i {
  color: var(--gk-yellow);
  transform: scale(1.15);
}

/* Tighter but visible positions */
.carousel-control-prev {
  left: -175px !important;
}

.carousel-control-next {
  right: -175px !important;
}

/* -------------------------------------
   PAGINATION INDICATORS
------------------------------------- */
.carousel-indicators {
  top: 430px;
}

.carousel-indicators button {
  width: 5px;
  height: 6px;
  border-radius: 20px;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: 0.3s;
}

.carousel-indicators .active {
  width: 10px;
  background: var(--gk-yellow);
}

/* -------------------------------------
   TEXT ANIMATION
------------------------------------- */
@keyframes fadeSlide {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------
   MOBILE RESPONSIVE
------------------------------------- */
@media (max-width: 768px) {

  .gk-hero-img {
    height: 340px;
  }

  .gk-hero-content {
    left: 5%;
    bottom: 12%;
    max-width: 90%;
    text-align: left;
  }

  .gk-hero-title {
    font-size: 26px;
  }

  .gk-hero-sub {
    font-size: 14px;
  }

  .gk-hero-btn-group {
    gap: 10px;
  }

  .gk-hero-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .carousel-indicators {
    bottom: 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none; /* Hide arrows on mobile */
  }
}

/* -------------------------------------
   TABLET RESPONSIVE
------------------------------------- */
@media (min-width: 769px) and (max-width: 1024px) {

  .gk-hero-title {
    font-size: 38px;
  }

  .gk-hero-sub {
    font-size: 16px;
  }

  .gk-hero-btn-group {
    gap: 12px;
  }

  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }
}

/* --------------------------------------------
   PRODUCT GRID WRAPPER
-------------------------------------------- */
.gk-product-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

/* --------------------------------------------
   PRODUCT BOX (Amazon-style)
-------------------------------------------- */
.gk-product-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #e5e8ef;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Soft theme-colored glow on hover */
.gk-product-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,79,197,0.18);
  border-color: var(--gk-primary);
}

/* --------------------------------------------
   Decorative Theme Ribbon (Top)
-------------------------------------------- */
.gk-product-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gk-primary);
  opacity: 0;
  transition: 0.3s ease;
}

.gk-product-box:hover::before {
  opacity: 1;
}

/* --------------------------------------------
   HEADER AREA
-------------------------------------------- */
.gk-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.gk-box-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
  transition: 0.3s ease;
}

.gk-product-box:hover .gk-box-title {
  color: var(--gk-primary);
}

/* --------------------------------------------
   "See All" Link
-------------------------------------------- */
.gk-see-all {
  font-size: 14px;
  font-weight: 700;
  color: var(--gk-primary);
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.gk-see-all:hover {
  color: var(--gk-yellow);
}

.gk-see-all.bottom {
  display: block;
  margin-top: 14px;
}

/* --------------------------------------------
   GRID INSIDE PRODUCT BOX
-------------------------------------------- */
.gk-box-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* --------------------------------------------
   MINI PRODUCT CARD
-------------------------------------------- */
.gk-box-item {
  background: #f9faff;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}

/* Hover Elevation */
.gk-box-item:hover {
  background: #ffffff;
  transform: translateY(-6px);
  border-color: var(--gk-primary);
  box-shadow: 0 8px 20px rgba(0,79,197,0.15);
}

/* Theme Glow Dot on Hover */
.gk-box-item::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--gk-yellow);
  border-radius: 50%;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: 0.25s ease-out;
}

.gk-box-item:hover::after {
  transform: translateX(-50%) scale(1);
}

/* Thumbnail */
.gk-box-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 8px;
  transition: 0.3s ease;
}

/* Slight zoom on hover */
.gk-box-item:hover img {
  transform: scale(1.05);
}

/* Text */
.gk-box-item p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
  transition: 0.3s ease;
}

.gk-box-item:hover p {
  color: var(--gk-primary);
}

/* --------------------------------------------
   MOBILE RESPONSIVE TWEAKS
-------------------------------------------- */
@media (max-width: 768px) {
  
  .gk-product-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gk-product-box {
    padding: 18px;
  }

  .gk-box-grid {
    gap: 10px;
  }

  .gk-box-item {
    padding: 10px;
  }
}

/* BESTSELLER SECTION PREMIUM BACKGROUND */
.premium-bs {
  background: linear-gradient(to bottom right, #f8faff, #eef2ff);
  position: relative;
}

/* PRODUCT ROW */
.gk-bs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.gk-bs-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  border: 1px solid #e5e8ef;
  transition: 0.35s ease-in-out;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* CARD HOVER EFFECT â€“ LIFT + SHADOW + GLOW */
.gk-bs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,79,197,0.25);
  border-color: var(--gk-primary);
}

/* PRODUCT IMAGE */
.gk-bs-img img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s ease;
}


/* TITLE */
.gk-bs-title {
  font-size: 17px;
  font-weight: 700;
  margin-top: 10px;
  color: #222;
}
.gk-bs-card:hover .gk-bs-title {
  color: var(--gk-primary);
}

/* RATINGS */
.gk-bs-rating {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}

/* PRICE */
.gk-bs-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--gk-primary);
}
.gk-bs-price span {
  color: #888;
  margin-left: 6px;
  text-decoration: line-through;
}

/* Always visible Add to Cart button */
.gk-bs-btn {
  margin-top: 12px;
  background: var(--gk-primary);
  color: #fff;
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  transition: 0.3s ease;
  opacity: 1 !important;          /* Always visible */
  transform: translateY(0) !important;
}

.gk-bs-btn:hover {
  background: var(--gk-yellow);
  color: #000;
}

.gk-bs-card:hover .gk-bs-btn {
  opacity: 1;
  transform: translateY(0);
}
.gk-bs-btn:hover {
  background: var(--gk-yellow);
  color: black;
}

/* ARROWS */
.gk-bs-arrow i {
  font-size: 46px;
  color: var(--gk-primary);
}
.gk-bs-arrow:hover i {
  color: var(--gk-yellow);
  transform: scale(1.15);
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .gk-bs-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 576px) {
  .gk-bs-row { grid-template-columns: 1fr; }
  .gk-bs-arrow { display:none !important; }
}
/* Fix indicators position */
#gkBestSellerCarousel .carousel-indicators {
  position: relative !important;
  margin-top: 25px;
}

/* Blue theme dots */
#gkBestSellerCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b7d0ff;
  border: none;
  margin: 0 6px;
  transition: 0.3s ease;
}

#gkBestSellerCarousel .carousel-indicators .active {
  background: var(--gk-primary); /* Blue */
  transform: scale(1.3);
}
.premium-bs {
  padding-bottom: 70px; /* give space for pagination */
}
.gk-bs-btn {
  box-shadow: 0 4px 14px rgba(0,79,197,0.25);
}

.gk-bs-btn:hover {
  box-shadow: 0 6px 20px rgba(244,196,0,0.3);
}

/* SECTION */
.gk-budget-v4 {
  padding: 70px 0;
  background: var(--gk-bg);
}

.gk-budget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

/* -------------------------------
   PREMIUM UPGRADED CARD STYLE
-------------------------------- */
.gk-budget-card {
  display: block;
  padding: 28px 22px;
  border-radius: 18px;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

/* TOP COLORED BAR (THEME ACCENT) */
.gk-budget-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  transition: 0.35s ease;
}

/* HOVER EFFECT â€” PREMIUM LIFT + OUTLINE */
.gk-budget-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.12);
}

/* TEXT */
.gk-budget-amount {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.gk-budget-text {
  color: #555;
  font-size: 14px;
  margin-top: 4px;
}

/* GRADIENT BACKGROUNDS + COLOR THEMES */

/* BLUE CARD */
.gk-b1 {
  background: linear-gradient(to bottom right, rgba(0,79,197,0.08), #fff);
}
.gk-b1 .gk-budget-amount { color: var(--gk-blue); }
.gk-b1::before { background: var(--gk-blue); }
.gk-b1:hover { border-color: var(--gk-blue); }

/* YELLOW CARD */
.gk-b2 {
  background: linear-gradient(to bottom right, rgba(244,196,0,0.15), #fff);
}
.gk-b2 .gk-budget-amount { color: var(--gk-yellow); }
.gk-b2::before { background: var(--gk-yellow); }
.gk-b2:hover { border-color: var(--gk-yellow); }

/* GREEN CARD */
.gk-b3 {
  background: linear-gradient(to bottom right, rgba(46,139,87,0.15), #fff);
}
.gk-b3 .gk-budget-amount { color: var(--gk-green); }
.gk-b3::before { background: var(--gk-green); }
.gk-b3:hover { border-color: var(--gk-green); }

/* BLUE TINT */
.gk-b4 {
  background: linear-gradient(to bottom right, rgba(0,79,197,0.06), #fff);
}
.gk-b4 .gk-budget-amount { color: var(--gk-blue); }
.gk-b4::before { background: var(--gk-blue); }
.gk-b4:hover { border-color: var(--gk-blue); }

/* YELLOW TINT */
.gk-b5 {
  background: linear-gradient(to bottom right, rgba(244,196,0,0.08), #fff);
}
.gk-b5 .gk-budget-amount { color: var(--gk-yellow); }
.gk-b5::before { background: var(--gk-yellow); }
.gk-b5:hover { border-color: var(--gk-yellow); }


/* MOBILE â€” 2 CARDS PER ROW */
@media (max-width: 576px) {
  .gk-budget-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 2 per row */
    gap: 16px; /* smaller gap for mobile */
  }

  .gk-budget-card {
    padding: 20px 14px;
  }
}
/* HIDE BESTSELLER PAGINATION DOTS ON MOBILE */
@media (max-width: 768px) {
  .gk-bestsellers .carousel-indicators {
    display: none !important;
  }
}
/* FULL WIDTH CTA */
.gk-cta-full {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.gk-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=1920');
  background-size: cover;
  background-position: center;
  filter: brightness(0.92) sepia(10%) saturate(110%) hue-rotate(-10deg); 
  transform: scale(1.1);
  transition: transform 4s ease;
}

/* Slow zoom animation */
.gk-cta-full:hover .gk-cta-bg {
  transform: scale(1.2);
}

/* Yellow-themed gradient overlay */
.gk-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom right,
      rgba(255, 204, 0, 0.55),
      rgba(255, 235, 150, 0.35),
      rgba(0, 0, 0, 0.35)
  );
  z-index: 2;
}

/* CONTENT */
.gk-cta-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: white;
  max-width: 700px;
  padding: 0 15px;
  animation: fadeUpCTA 1.2s ease forwards;
}

/* TITLE - Yellow glow */
.gk-cta-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff; /* Warm white with yellow tint */
}

/* SUBTEXT */
.gk-cta-sub {
  margin-top: 12px;
  font-size: 18px;
  opacity: 0.95;
  color: #fff;
}

/* CTA BUTTON */
.gk-cta-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 36px;
  font-size: 17px;
  font-weight: 800;
  background: var(--gk-yellow);
  color: black;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 200, 0, 0.5);
  transition: 0.3s ease;
}

.gk-cta-btn:hover {
  background: #ffffff;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 200, 0, 0.45);
}

/* ANIMATION */
@keyframes fadeUpCTA {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gk-cta-full {
    height: 300px;
  }

  .gk-cta-title {
    font-size: 28px;
  }

  .gk-cta-sub {
    font-size: 14px;
  }

  .gk-cta-btn {
    padding: 12px 26px;
  }
}

/* PRIMARY VIEW (COPY OF BESTSELLERS BUT BLUE THEME) */
.gk-primaryview {
  background: #ffffff;
}

/* ROW */
.gk-pv-row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD */
.gk-pv-card {
  width: 260px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: .3s ease-in-out;
}

.gk-pv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* BADGES */
.gk-pv-badge {
  background: var(--gk-primary);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.gk-pv-badge.pv-blue {
  background: #003c9c;
}

/* IMAGE */
.gk-pv-img img {
  width: 100%;
  border-radius: 12px;
}

/* TITLE */
.gk-pv-title {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
}

/* RATING */
.gk-pv-rating {
  color: #333;
  font-size: 15px;
  margin-top: 4px;
}

/* PRICE */
.gk-pv-price {
  font-size: 24px;
  font-weight: 700;
  margin: 8px 0;
  color: var(--gk-primary);
}

.gk-pv-price span {
  color: #777;
  font-size: 15px;
  text-decoration: line-through;
  margin-left: 4px;
}

/* BUTTON */
.gk-pv-btn {
  width: 100%;
  padding: 10px 0;
  background: var(--gk-primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  transition: .3s;
}

.gk-pv-btn:hover {
  background:#F4C400 ;
}

/* ARROWS */
.gk-pv-arrow {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: white;
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: var(--gk-primary);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  transition: .3s;
}

.gk-pv-arrow:hover {
  background: var(--gk-primary);
  color: white;
}

/* Indicators */
.gk-primaryview .carousel-indicators button {
  background: var(--gk-primary);
  opacity: .4;
}

.gk-primaryview .carousel-indicators .active {
  opacity: 1;
}

/* MOBILE */
@media(max-width:768px){
  .gk-pv-row { gap: 15px; }
  .gk-pv-card { width: 47%; }
  .gk-pv-arrow { display: none !important; }
}

/* GRID LAYOUT */
.gk-pv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 10px;
}

/* CARD STYLES */
.gk-pv-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.gk-pv-card:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
  .gk-pv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gk-pv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gk-pv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
/* Hide indicators on ALL screens by default */
#gkPrimaryViewCarousel .carousel-indicators {
    display: none !important;
}

/* Show ONLY on large desktop screens (1200px and above) */
@media (min-width: 1200px) {
    #gkPrimaryViewCarousel .carousel-indicators {
        display: flex !important;
    }
}
/* VIDEO GALLERY WRAPPER */
.gk-video-gallery {
  background: #fff;
}

/* HORIZONTAL SCROLL */
.gk-video-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.gk-video-scroll::-webkit-scrollbar {
  display: none;
}

/* VIDEO CARD - FIXED SIZE */
.gk-video-card {
  flex-shrink: 0;
  width: 260px;       /* Fixed width */
  height: 460px;      /* Fixed height */
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.10);
  transition: .3s ease;
  cursor: pointer;
}

/* Hover effect */
.gk-video-card:hover {
  transform: scale(1.04);
}

/* FIX VIDEO SIZE EXACTLY INSIDE CARD */
.gk-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Ensures perfect crop */
  display: block;
}

/* LIGHTBOX */
.gk-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.gk-lightbox video {
  width: 400px;
  max-height: 90vh;
  border-radius: 12px;
}

.gk-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 45px;
  color: white;
  cursor: pointer;
}
/* VIDEO WRAPPER */
.gk-video-gallery {
  position: relative;
 background: #f4f6ff;
}

/* HORIZONTAL SCROLL AREA */
.gk-video-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}
.gk-video-scroll::-webkit-scrollbar {
  display: none;
}

/* VIDEO CARD */
.gk-video-card {
  flex-shrink: 0;
  width: 260px;
  height: 460px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: 0.3s ease;
}

.gk-video-card:hover {
  transform: scale(1.05);
}

.gk-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROW BUTTONS (Visible only on Desktop) */
.gk-video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.gk-video-arrow:hover {
  background: #f2f2f2;
}

.gk-video-arrow.left {
  left: 200px;
}

.gk-video-arrow.right {
  right: 200px;
}

/* Hide Arrows on Mobile & Tablet */
@media (max-width: 992px) {
  .gk-video-arrow {
    display: none;
  }
}

/* FULL WIDTH RIBBON */
.gk-ribbon-strip {
  background: #fff7cc;
  padding: 18px 0;
  border-top: 2px solid #ffe26c;
  border-bottom: 2px solid #ffe26c;
}

/* FLEX WRAPPER */
.gk-ribbon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
  text-align: center;
}

/* ICON + TEXT ITEM */
.gk-ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: #444;
  background: white;
  padding: 12px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  flex: 1 1 260px;  /* auto responsive width */
  justify-content: center;
  min-width: 240px;
  max-width: 320px;
}

/* ICON STYLE */
.gk-ribbon-item i {
  font-size: 22px;
  padding: 10px;
  border-radius: 10px;
  background: #fff7cc;
  color: #e6b800;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* TABLET */
@media (max-width: 992px) {
  .gk-ribbon-container {
    gap: 20px;
  }
  .gk-ribbon-item {
    flex: 1 1 45%; /* 2 per row */
  }
}

/* MOBILE â€” SHOW 2 CARDS PER ROW */
@media (max-width: 576px) {
  .gk-ribbon-container {
    justify-content: center;
  }

  .gk-ribbon-item {
    flex: 1 1 calc(50% - 15px); /* 2 per row */
    max-width: calc(50% - 15px);
  }
}
/* FOOTER BASE */
.gk-footer {
  background: var(--gk-primary);
  color: white;
  padding: 60px 0 30px;
  margin-top: 60px;
}

/* GRID */
.gk-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

/* LOGO */
.gk-footer-logo {
  width: 90px;
  margin-bottom: 15px;
}

/* ABOUT TEXT */
.gk-footer-text {
  color: #e8ffe8;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* TITLES */
.gk-footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gk-yellow);
}

/* LINKS */
.gk-footer-links {
  list-style: none;
  padding: 0;
}

.gk-footer-links li {
  margin-bottom: 8px;
}

.gk-footer-links a {
  color: #eaffea;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.gk-footer-links a:hover {
  color: var(--gk-yellow);
  padding-left: 6px;
}

/* CONTACT */
.gk-footer-contact {
  margin-bottom: 10px;
  font-size: 15px;
}

.gk-footer-contact i {
  margin-right: 8px;
  color: var(--gk-yellow);
}

/* SOCIAL ICONS */
.gk-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  margin-right: 10px;
  border-radius: 8px;
  font-size: 18px;
  color: white;
  transition: 0.3s ease;
}

.gk-social-icons a:hover {
  background: var(--gk-yellow);
  color: black;
  transform: translateY(-3px);
}

/* FIXED BOTTOM COPYRIGHT BAR */
.gk-footer-bottom {
  background: #0e4828;
  color: #dfffe0;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;

  position: relative;
  left: 0;
  bottom: -35px;
  width: 100%;
  z-index: 9999;

  border-top: 1px solid rgba(255,255,255,0.15);
}


/* RESPONSIVE IMPROVEMENTS */
@media (max-width: 768px) {
  .gk-footer {
    padding: 40px 0 20px;
  }
  .gk-footer-logo {
    width: 70px;
  }
  .gk-footer-title {
    font-size: 16px;
  }
}

/* ============================
   SHOP HERO (WHITE BACKGROUND)
============================ */
.gk-shop-hero {
  background: #d7d7d7;
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.gk-shop-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--gk-primary);
  margin-bottom: 12px;
}

.gk-shop-hero p {
  font-size: 18px;
  color: #444;
  max-width: 650px;
  margin: auto;
  opacity: 0.9;
}

/* ============================
   SHOP PAGE WRAPPER â€” IMPROVED SPACING
============================ */
.gk-shop {
  padding: 60px 0;
}

.gk-shop-container {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 40px;
}

/* ============================================
   SHOP PAGE LAYOUT
============================================ */
.gk-shop-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

/* ============================================
   FILTER SIDEBAR (Desktop)
============================================ */
.gk-shop-filter {
    width: 260px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    position: sticky;
    top: 100px;
    max-height: 530px;
}

.filter-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gk-primary);
    margin-bottom: 18px;
}

/* GROUP HEADINGS */
.filter-group h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

/* CHECKBOX LABELS */
.filter-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    cursor: pointer;
}

.filter-group input {
    margin-right: 6px;
    transform: scale(1.2);
}

/* APPLY BUTTON */
.gk-filter-btn {
    margin-top: 20px;
    width: 100%;
    background: var(--gk-primary);
    color: white;
    padding: 12px 0;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    transition: .3s;
}

.gk-filter-btn:hover {
    background: var(--gk-yellow);
    color: black;
}

/* ============================================
   PRODUCT GRID AREA
============================================ */
.gk-products-area {
    flex: 1;
}

/* ============================================
   DESKTOP BOOST â€” Move sidebar more left
============================================ */
@media (min-width: 1400px) {
    .gk-shop-wrapper {
        gap: 70px;
    }
    .gk-shop-filter {
        margin-left: -40px; /* pushes sidebar left */
    }
}

/* ============================================
   RESPONSIVE â€” TABLET VIEW
============================================ */
@media (max-width: 992px) {

    .gk-shop-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .gk-shop-filter {
        width: 100%;
        position: relative;
        top: 0;
    }
}

/* ============================================
   MOBILE â€” Make filter collapsible style
============================================ */
@media (max-width: 576px) {

    .gk-shop-filter {
        width: 100%;
        padding: 18px;
        border-radius: 14px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .filter-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .filter-group h5 {
        font-size: 15px;
    }

    .filter-group label {
        font-size: 14px;
    }

    .gk-filter-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* ============================
   PRODUCT AREA â€” BETTER SPACING & ORDER
============================ */
.gk-shop-sort {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  align-items: center;
}

.gk-shop-sort p {
  margin: 0;
  color: #333;
  font-weight: 600;
}

.gk-shop-sort select {
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
}

/* ============================
   PRODUCT GRID â€” UPGRADED SPACING
============================ */
.gk-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
}

/* PRODUCT CARD â€” PREMIUM LOOK */
.gk-shop-card {
  background: white;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  transition: .3s ease;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
}

.gk-shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
}

/* IMAGE */
.img-box {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.img-box img {
  width: 100%;
  transition: .3s ease;
}

.gk-shop-card:hover img {
  transform: scale(1.06);
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: var(--gk-primary);
}

.badge.yellow {
  background: var(--gk-yellow);
  color: black;
}

.badge.blue {
  background: #003c9c;
}

/* TEXT */
.title {
  font-size: 17px;
  font-weight: 700;
  margin-top: 12px;
}

.rating {
  color: #444;
  margin: 6px 0;
}

.price {
  font-size: 20px;
  font-weight: 800;
  color: var(--gk-primary);
}

.price span {
  text-decoration: line-through;
  font-size: 14px;
  color: #666;
  margin-left: 5px;
}

/* BUTTON */
.add-btn {
  width: 100%;
  padding: 12px 0;
  background: var(--gk-primary);
  color: white;
  font-weight: 700;
  border: none;
  margin-top: 12px;
  border-radius: 8px;
  transition: .3s;
}

.add-btn:hover {
  background: var(--gk-yellow);
  color: black;
}

/* -------------------------
   PAGINATION
-------------------------- */
.gk-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.page-btn {
  padding: 10px 18px;
  border: none;
  background: #fff;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.page-btn.active {
  background: var(--gk-primary);
  color: white;
}

.page-btn:hover {
  background: var(--gk-yellow);
  color: black;
}

/* ============================
   RESPONSIVE FIXES
============================ */

/* TABLET */
@media (max-width: 992px) {
  .gk-shop-container {
    grid-template-columns: 1fr;
  }

  .gk-shop-filter {
    position: relative;
    top: 0;
  }
}

/* **MOBILE: 2 CARDS PER ROW** */
@media (max-width: 576px) {
  .gk-shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gk-shop-card {
    padding: 14px;
    border-radius: 14px;
  }

  .gk-shop-sort {
    flex-direction: column;
    gap: 12px;
  }

  .gk-shop-hero h1 {
    font-size: 28px;
  }
}
/* -----------------------
   ABOUT HERO
------------------------ */
.gk-about-hero {
  background: #d7d7d7;
  padding: 70px 0;
  text-align: center;
  color: white;
}
.gk-about-hero h1 {
  font-size: 42px;
  font-weight: 800;
}
.gk-about-hero p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

/* -----------------------
   OUR STORY
------------------------ */
.gk-about-story .story-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.story-text h2 {
  font-size: 32px;
  color: var(--gk-primary);
  font-weight: 800;
}
.story-text p {
  font-size: 16px;
  margin-top: 12px;
  color: #444;
  line-height: 1.6;
}

/* -----------------------
   MISSION VISION
------------------------ */
.gk-about-mv {
  background: #f4f6ff;
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 25px;
}
.mv-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.mv-card i {
  font-size: 38px;
  color: var(--gk-yellow);
  margin-bottom: 12px;
}
.mv-card h3 {
  font-weight: 800;
  color: var(--gk-primary);
}

/* -----------------------
   WHY CHOOSE US
------------------------ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}
.why-card {
  text-align: center;
  padding: 25px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.why-card i {
  font-size: 40px;
  color: var(--gk-primary);
  margin-bottom: 12px;
}
.why-card h4 {
  font-weight: 800;
  margin-bottom: 8px;
}

/* -----------------------
   TEAM
------------------------ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 30px;
  justify-items: center;
}
.team-card {
  text-align: center;
}
.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.team-card h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

/* -----------------------
   CTA BANNER
------------------------ */
.gk-about-cta {
  position: relative;
  height: 300px;
  background-image: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=1920');
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.cta-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: white;
}
.cta-btn {
  margin-top: 18px;
  background: var(--gk-yellow);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  color: black;
}
.cta-btn:hover {
  background: white;
}
/* ============================
   CONTACT HERO
============================ */
.gk-contact-hero {
  background: var(--gk-primary);
  color: white;
  padding: 70px 0;
}
.gk-contact-hero h1 {
  font-size: 42px;
  font-weight: 800;
}
.gk-contact-hero p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

/* ============================
   CONTACT INFO CARDS
============================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.info-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  border-top: 4px solid var(--gk-yellow);
}
.info-card i {
  font-size: 36px;
  color: var(--gk-primary);
  margin-bottom: 12px;
}
.info-card h4 {
  font-weight: 800;
  margin-bottom: 6px;
}
/* ============================
   CONTACT FORM SECTION (UPGRADED)
============================ */
.gk-contact-form {
  background: #f5f7ff;
  padding: 70px 0;
}

.gk-contact-form .form-left {
  flex: 1;
  max-width: 750px;
}

/* Heading Area */
.form-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--gk-primary);
  margin-bottom: 10px;
}

.form-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  max-width: 600px;
}

/* Premium Card Style */
.gk-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.6);
}

/* Labels */
.gk-form label {
  font-weight: 700;
  color: var(--gk-primary);
  font-size: 14px;
  margin-bottom: 4px;
}

/* Inputs */
.gk-form .form-control {
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px solid #dcdcdc;
  transition: 0.3s;
  font-size: 16px;
}

.gk-form .form-control:focus {
  border-color: var(--gk-primary);
  box-shadow: 0 0 8px rgba(18,104,56,0.25);
}

/* Premium Button */
.gk-submit-btn {
  margin-top: 15px;
  background: var(--gk-primary);
  padding: 14px 40px;
  color: white;
  border-radius: 35px;
  font-size: 17px;
  font-weight: 800;
  border: none;
  box-shadow: 0 6px 15px rgba(18,104,56,0.3);
  transition: 0.3s ease-in-out;
}

.gk-submit-btn:hover {
  background: var(--gk-yellow);
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(244,196,0,0.35);
}

/* MAP SECTION */
.form-map {
  flex: 1;
  max-width: 500px;
}

.form-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border: 2px solid white;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .gk-contact-form .container {
    flex-direction: column !important;
  }

  .form-map {
    max-width: 100%;
    margin-top: 30px;
  }

  .gk-form {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .form-left h2 {
    font-size: 28px;
  }

  .gk-form {
    padding: 20px;
  }

  .gk-submit-btn {
    width: 100%;
  }
}
/* MAIN WRAPPER */
.gk-contact-wrapper {
  padding: 80px 0;
  background: #f6f9ff;
}

/* GRID LAYOUT */
.gk-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT PANEL TEXT */
.gk-contact-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--gk-primary);
  margin-bottom: 8px;
}

.gk-contact-subtext {
  color: #555;
  margin-bottom: 30px;
  font-size: 15px;
}

/* FORM CARD */
.gk-contact-formbox {
  background: #ffffffd9;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
}

/* INPUTS */
.gk-contact-formbox .form-control {
  border-radius: 12px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.gk-contact-formbox .form-control:focus {
  border-color: var(--gk-primary);
  box-shadow: 0 0 8px rgba(18,104,56,0.2);
}

/* BUTTON */
.gk-submit-btn {
  background: var(--gk-primary);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  margin-top: 10px;
  box-shadow: 0 6px 15px rgba(18,104,56,0.3);
  transition: 0.3s;
}

.gk-submit-btn:hover {
  background: var(--gk-yellow);
  color: #000;
  transform: translateY(-3px);
}

/* MAP BOX */
.gk-contact-mapbox iframe {
  width: 100%;
  height: 470px;
  border-radius: 18px;
  border: 2px solid white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gk-contact-grid {
    grid-template-columns: 1fr;
  }
  .gk-contact-mapbox iframe {
    height: 350px;
  }
  .gk-contact-formbox {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .gk-contact-title {
    font-size: 28px;
  }
  .gk-submit-btn {
    width: 100%;
  }
}
/* SECTION */
.kr-pro-testimonials {
  padding: 80px 0;
  background: #fff;
}

.kr-pro-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--gk-primary);
  margin-bottom: 10px;
}

.kr-pro-subtitle {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 45px;
}

/* SLIDER WRAPPER */
.kr-pro-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 5px;
  scrollbar-width: none;
}
.kr-pro-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.kr-pro-card {
  min-width: 350px;
  max-width: 350px;
  padding: 30px 22px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  flex-shrink: 0;
  text-align: center;
  transition: 0.35s ease;
}

.kr-pro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.kr-pro-img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid var(--gk-yellow);
}

/* TEXT */
.kr-pro-card h4 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--gk-primary);
  font-weight: 700;
}

.kr-pro-stars {
  color: var(--gk-yellow);
  font-size: 18px;
  margin-bottom: 12px;
}

.kr-pro-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .kr-pro-card {
    min-width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .kr-pro-card {
    min-width: 85%;
    max-width: 85%;
  }

  .kr-pro-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .kr-pro-card {
    min-width: 100%;
    max-width: 100%;
  }
}
/* PRELOADER BACKGROUND */
#gk-preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* CUBE CONTAINER */
.cube-wrapper {
    width: 110px;
    height: 110px;
    perspective: 700px;
}

/* CUBE */
.cube {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    animation: spinCubeFull 2.8s infinite ease-in-out;
}

/* FACES */
.face {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.18);
}

/* Assign colors based on your brand */
.front  { background: #0d6b4d; transform: rotateY(0deg) translateZ(50px); }
.back   { background: #145341; transform: rotateY(180deg) translateZ(50px); }

.right  { background: #f9c80e; transform: rotateY(90deg) translateZ(50px); }
.left   { background: #eab307; transform: rotateY(-90deg) translateZ(50px); }

.top    { background: #004aad; transform: rotateX(90deg) translateZ(50px); }
.bottom { background: #003680; transform: rotateX(-90deg) translateZ(50px); }

/* FULL 3D ROTATION KEYFRAMES */
@keyframes spinCubeFull {
    0%   { transform: rotateX(0deg) rotateY(0deg); }
    25%  { transform: rotateX(90deg) rotateY(0deg); }
    50%  { transform: rotateX(90deg) rotateY(90deg); }
    75%  { transform: rotateX(180deg) rotateY(90deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}
/* Desktop/Tablet Carousel */
.desktop-carousel {
  display: block;
}

.gk-bs-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.gk-bs-card {
  width: 250px;
  background: #fff;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.gk-bs-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* MOBILE GRID FIX */
.gk-bs-mobile-grid {
  display: none;
}

/* MOBILE VIEW */
@media (max-width: 767px) {

  /* Hide desktop carousel */
  .desktop-carousel {
    display: none !important;
  }

  /* Show mobile grid */
  .gk-bs-mobile-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gk-bs-card {
    width: 100% !important;
    margin: 0;
  }

  .gk-bs-img img {
    height: 160px !important;
  }

  /* Hide arrows always on mobile */
  .gk-bs-arrow {
    display: none !important;
  }
}
/* Hide mobile scroll by default */
.gk-bs-mobile-scroll {
  display: none;
}

/* MOBILE (<768px) */
@media (max-width: 767px) {

  /* Hide desktop carousel */
  .desktop-carousel {
    display: none !important;
  }

  /* SHOW MOBILE SCROLL */
  .gk-bs-mobile-scroll {
    display: flex !important;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .gk-bs-mobile-scroll::-webkit-scrollbar {
    display: none;
  }

  /* Each card width â†’ ensures EXACTLY 2 visible */
  .gk-bs-mobile-scroll .gk-bs-card {
    flex: 0 0 calc(50% - 10px);  /* 2 cards visible */
    scroll-snap-align: start;
  }

  .gk-bs-img img {
    height: 160px !important;
  }

  .gk-bs-arrow {
    display: none !important;
  }
}
/* ===========================================
   DESKTOP VIEW (DEFAULT)
=========================================== */

/* Desktop carousel container */
.desktop-pv {
    display: block;
    position: relative;
    width: 100%;
}

/* Card Row */
.gk-pv-row {
    display: flex;
    gap: 22px;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Product Card */
.gk-pv-card {
    flex: 0 0 calc(20% - 18px); /* 5 per row */
    background: #fff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s ease;
}

.gk-pv-card:hover {
    transform: translateY(-4px);
}

/* Card Image */
.gk-pv-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===========================================
   FIXED NAVIGATION ARROWS (DESKTOP ONLY)
=========================================== */
.gk-pv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.gk-pv-arrow.carousel-control-prev {
    left: -28px;
}

.gk-pv-arrow.carousel-control-next {
    right: -28px;
}

.gk-pv-arrow i {
    font-size: 20px;
    color: #006a4e;
}

.gk-pv-arrow:hover {
    background: #006a4e;
}
.gk-pv-arrow:hover i {
    color: #fff;
}

/* ===========================================
   RESPONSIVENESS FOR TABLET & SMALL DESKTOP
=========================================== */

/* â‰¤1199px â†’ 4 cards */
@media (max-width: 1199px) {
  .gk-pv-card {
    flex: 0 0 calc(25% - 18px);
  }
}

/* â‰¤992px â†’ 3 cards */
@media (max-width: 992px) {
  .gk-pv-card {
    flex: 0 0 calc(33.33% - 18px);
  }
}

/* ===========================================
   MOBILE VIEW (<768px)
=========================================== */
@media (max-width: 767px) {

    /* Hide desktop carousel */
    .desktop-pv {
        display: none !important;
    }

    /* Mobile scroll container */
    .gk-pv-mobile-scroll {
        width: 100%;
        display: flex !important;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        white-space: nowrap;
    }

    /* Hide scrollbar */
    .gk-pv-mobile-scroll::-webkit-scrollbar {
        display: none;
    }

    /* 2 cards visible */
    .gk-pv-mobile-scroll .gk-pv-card {
        flex: 0 0 calc(50% - 10px);
        scroll-snap-align: start;
        display: inline-block;
    }

    /* Smaller images for mobile */
    .gk-pv-img img {
        height: 160px !important;
    }

    /* Hide desktop arrows */
    .gk-pv-arrow {
        display: none !important;
    }
}

/* ===========================================
   GLOBAL FIX â€” REMOVE SIDE SCROLL BUG
=========================================== */
body {
    overflow-x: hidden !important;
}
/* ALWAYS hide mobile scroll on larger screens */
.gk-pv-mobile-scroll {
    display: none !important;
}
@media (max-width: 767px) {

    .gk-pv-mobile-scroll {
        display: flex !important;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        white-space: nowrap;
    }

}
/* ================================
   MOBILE NAVBAR â€“ PREMIUM GREEN
================================ */

@media (max-width: 768px) {

    /* Navbar */
    .gk-navbar {
        background: #0a6b41 !important; /* GREEN */
        padding: 10px 14px !important;
        height: 60px;
        display: flex;
        align-items: center;
        border-bottom: none !important;
    }

    /* Logo */
    .gk-logo {
        height: 34px !important;
        filter: brightness(0) invert(1); /* Make white */
    }

    /* Icons row */
    .gk-mobile-icons {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .gk-mobile-icons i,
    .navbar-toggler i {
        color: #ffffff !important;
        font-size: 22px !important;
    }

    /* Search button */
    .gk-mobile-search-btn {
        background: none;
        border: none;
        padding: 4px 8px;
    }

    /* Mobile Slide Search */
    #gk-mobile-searchbar {
        width: 100%;/* ============================================
   MOBILE NAVIGATION (Refined)
============================================ */
@media (max-width: 768px) {

    /* NAVBAR */
    .gk-navbar {
        padding: 10px 16px !important;
        background: #006a4e;
        display: flex;
        align-items: center;
        border-bottom: none;
        position: relative;
        z-index: 1000;
    }

    .gk-logo {
        height: 36px !important;
    }

    .gk-mobile-icons {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .gk-mobile-icons i,
    .gk-toggler i,
    .gk-mobile-search-btn i {
        font-size: 22px;
        color: #ffffff !important;
    }

    .gk-mobile-search-btn,
    .gk-toggler {
        background: none;
        border: none;
        padding: 4px;
    }

    /* ==============================
       MOBILE DROPDOWN MENU CONTAINER
    =============================== */

    #gkNavbar {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: #ffffff;
        transition: max-height 0.4s ease, padding 0.3s ease;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        padding: 0; /* FIX: Remove accidental padding causing misalignment */
        margin-top: 0; /* FIX alignment */
    }

    #gkNavbar.show {
        max-height: 450px;
        padding-top: 14px;   /* NEW: Smooth spacing from navbar */
        padding-bottom: 14px;
    }

    /* MENU LIST */
    .gk-menu {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .gk-menu .nav-item {
        width: 100%;
    }

    .gk-menu .nav-link {
        display: block;
        width: 100%;
        padding: 16px 22px;   /* Increased spacing */
        margin: 6px 14px;     /* Increased spacing between links */
        border-radius: 12px;
        font-size: 17px;
        font-weight: 600;
        color: #006a4e !important;
        background: transparent;
        transition: all 0.25s ease;
        position: relative;
    }

    /* Hover state */
    .gk-menu .nav-link:hover {
        background: rgba(0, 106, 78, 0.08);
    }

    /* ==============================
       ACTIVE LINK STYLE
    =============================== */

    .gk-menu .nav-link.active {
        background: rgba(0, 106, 78, 0.12) !important;
        font-weight: 700;
        color: #006a4e !important;
    }

    .gk-menu .nav-link.active::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 60%;
        background: #ffcc00;
        border-radius: 12px;
    }
}

        background: #0a6b41;
        padding: 12px;
        display: none;
        animation: slideDown 0.3s ease;
        border-bottom: 1px solid rgba(255,255,255,0.25);
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-6px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .gk-mobile-search-form {
        display: flex;
        gap: 10px;
    }

    .gk-mobile-search-form input {
        flex: 1;
        padding: 10px 14px;
        border-radius: 8px;
        border: none;
        outline: none;
        font-size: 15px;
    }

    .gk-mobile-search-form button {
        background: #ffffff;
        color: #0a6b41;
        border: none;
        padding: 10px 14px;
        border-radius: 8px;
        font-size: 18px;
    }
}
/* ============================================
   MOBILE NAVIGATION (Refined)
============================================ */
@media (max-width: 768px) {

    /* NAVBAR */
    .gk-navbar {
        padding: 10px 16px !important;
        background: #006a4e;
        display: flex;
        align-items: center;
        border-bottom: none;
        position: relative;
        z-index: 1000;
    }

    .gk-logo {
        height: 36px !important;
    }

    .gk-mobile-icons {
        display: flex;
        align-items: center;
        gap: 0px;
    }

    .gk-mobile-icons i,
    .gk-toggler i,
    .gk-mobile-search-btn i {
        font-size: 22px;
        color: #ffffff !important;
    }

    .gk-mobile-search-btn,
    .gk-toggler {
        background: none;
        border: none;
        padding: 4px;
    }

    /* ==============================
       MOBILE DROPDOWN MENU CONTAINER
    =============================== */

    #gkNavbar {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: #ffffff;
        transition: max-height 0.4s ease, padding 0.3s ease;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        padding: 0; /* FIX: Remove accidental padding causing misalignment */
        margin-top: 0; /* FIX alignment */
    }

    #gkNavbar.show {
        max-height: 450px;
        padding-top: 14px;   /* NEW: Smooth spacing from navbar */
        padding-bottom: 14px;
        margin-top: 5px;
    }

    /* MENU LIST */
    .gk-menu {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .gk-menu .nav-item {
        width: 100%;
    }

    .gk-menu .nav-link {
        display: block;
        width: 100%;
        padding: 16px 22px;   /* Increased spacing */
        margin: 6px 14px;     /* Increased spacing between links */
        border-radius: 12px;
        font-size: 17px;
        font-weight: 600;
        color: #006a4e !important;
        background: transparent;
        transition: all 0.25s ease;
        position: relative;
    }

    /* Hover state */
    .gk-menu .nav-link:hover {
        background: rgba(0, 106, 78, 0.08);
    }

    /* ==============================
       ACTIVE LINK STYLE
    =============================== */

    .gk-menu .nav-link.active {
        background: rgba(0, 106, 78, 0.12) !important;
        font-weight: 700;
        color: #006a4e !important;
    }
}
/* MOBILE ONLY SEARCH BAR */
#gk-mobile-searchbar {
    display: none; /* Hidden by default */
}

/* Visible only on mobile */
@media (max-width: 768px) {
    #gk-mobile-searchbar {
        display: block;
        width: 100%;
        background: #ffffff;
        padding: 10px 15px;
        border-bottom: 1px solid #e5e5e5;
        animation: slideDown 0.35s ease;
        z-index: 999;
    }
}

/* Animation */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Mobile Search Form */
.gk-mobile-search-form {
    display: flex;
    gap: 10px;
}

.gk-mobile-search-form input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.gk-mobile-search-form button {
    background: #006a4e;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
}
  /* ===========================
       NAVBAR BASE
=========================== */
.gk-navbar {
    background: #126838;
    padding: 10px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.gk-logo {
    height: 42px;
    width: auto;
    display: block;
}

/* ---------------------------
        MOBILE ICONS
---------------------------- */
.gk-mobile-icons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    padding: 4px;
}

/* ---------------------------
   DESKTOP MENU
---------------------------- */
.desktop-menu .gk-menu {
    display: flex;
    gap: 24px;
    margin-right: 25px;
}

.gk-nav-link {
    color: white;
    font-weight: 600;
    padding: 8px 4px;
}

.gk-nav-link.active,
.gk-nav-link:hover {
    color: #ffea00;
}

/* Search (desktop) */
.gk-search-input {
    width: 180px;
    border-radius: 6px 0 0 6px;
}

.gk-search-btn {
    background: white;
    border-radius: 0 6px 6px 0;
}

/* ===========================
   MOBILE SEARCH BAR
=========================== */
#gk-mobile-searchbar {
    display: none;
    padding: 12px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.gk-mobile-search-form {
    display: flex;
    gap: 10px;
}

.gk-mobile-search-form input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.gk-mobile-search-form button {
    padding: 10px 14px;
    background: #006a4e;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 18px;
}

/* ===========================
       MOBILE MENU PANEL
=========================== */
#gk-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.mm-link {
    padding: 14px;
    font-size: 17px;
    border-radius: 8px;
    color: #006a4e;
    text-decoration: none;
}

.mm-link:hover {
    background: #e6f5ef;
}

.mm-link.active {
    background: #006a4e;
    color: white;
}
/* ============ LOGO FIX ============ */

/* Default logo styling */
.gk-logo {
    height: 70px !important;
    width: auto;
    object-fit: contain;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .gk-navbar {
        padding: 8px 12px !important;
        background: #075E3E;  /* Dark green navbar */
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .gk-logo-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        max-width: 120px !important; /* ensures no overflow */
    }

    .gk-logo {
        height: 36px !important;   /* PERFECT size for mobile */
        width: auto;
        display: block !important;
        filter: none !important;   /* removes forced white/brightness filters */
    }

    /* Ensure icons donâ€™t overlap logo */
    .gk-mobile-icons {
        display: flex;
        gap: 14px;
        align-items: center;
    }
}
/* =====================================
   PROFESSIONAL RESPONSIVE NAVBAR
===================================== */

/* Layout container */
.gk-navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Logo */
.gk-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

/* Menu List */
.gk-menu {
    display: flex;
    gap: 26px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Desktop menu link */
.gk-nav-link {
    color: #e9ffee;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 8px 4px;
    transition: 0.2s ease;
}

.gk-nav-link:hover {
    color: #ffffff;
}

/* Active Page */
.gk-nav-link.active {
    color: #ffeb3b;
}

/* Search + Cart wrapper */
.gk-search-form {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.gk-search-input {
    width: 250px;
    max-width: 22vw;
    min-width: 160px;
    border-radius: 20px;
    border: none;
    padding: 9px 15px;
}

.gk-search-btn {
    background: white;
    border: none;
    padding: 8px 10px;
    border-radius: 10px;
    color: #006a4e;
}

/* Cart Icon */
.icon-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
}

/* -----------------------------------------
   TABLET RESPONSIVE (â‰¤ 991px)
----------------------------------------- */
@media (max-width: 991px) {

    .desktop-menu {
        gap: 20px;
    }

    .gk-search-input {
        max-width: 30vw;
    }

    .gk-menu {
        gap: 16px;
    }

    .gk-logo {
        height: 44px;
    }
}

/* -----------------------------------------
   MOBILE VIEW (â‰¤ 767px)
----------------------------------------- */
@media (max-width: 767px) {

    .desktop-menu,
    .gk-search-form {
        display: none !important;
    }

    .gk-logo {
        height: 38px;
    }

    .gk-mobile-icons {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .icon-btn {
        font-size: 22px;
    }

   #gk-mobile-menu {
    position: fixed;
    top: 60px;
    right: 0;
    width: 55%;
    background: #ffffff;
    padding: 20px;
    gap: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 99999;

    display: flex; 
    flex-direction: column;

    transform: translateX(100%);
    transition: transform 0.4s ease;
}

#gk-mobile-menu.show-menu {
    transform: translateX(0);
}
    #gk-mobile-menu {
    transition: transform 0.4s ease;
    transform: translateX(100%);
}

#gk-mobile-menu.show-menu {
    transform: translateX(0);
}

.no-scroll {
    overflow: hidden;
}

