@import url('https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap');

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --theme-main: #00c7aa;
  --theme-secondary: #20201f;
}

/* Custom Fonts */
@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geogtq-rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geogtq-bd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geogtq-md.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geogtq-sb.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geogtq-ul.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geogtq-th.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geogtq-lq.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

/* Italic Versions */
@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geog-bdit.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geog-lgit.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geog-mdit.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geog-rgit.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geog-sbit.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Geogtq';
  src: url('../fonts/geog-ulit.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
}

body {
  font-family: 'Geogtq', sans-serif !important;
  font-weight: 100;
}

ul li {
  list-style-type: none;
}

ul {
  margin-bottom: 0 !important;
}

ol,
ul {
  padding-left: 0 !important;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
  cursor: pointer;
}

p {
  color: #6d6d6d;
  font-size: 16px;
  line-height: 29px;
  font-weight: 400;
}

img {
  max-width: 100%;
  width: 100%;
}

button:focus {
  outline: none;
}

button {
  border: none;
}

.ptb-50 {
  padding: 50px 0;
}

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mtb-50 {
  margin: 50px 0;
}

.title {
  padding-bottom: 30px;
}

.title h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--theme-secondary);
  font-weight: 600;
}

.title h2 span {
  color: var(--theme-main);
}

.title-white h2,
.title-white h6 {
  color: #fff;
}

.title.text-center {
  margin: auto;
}

.primary-btn {
  display: inline-block;
  background-color: var(--theme-secondary);
  color: #fff;
  padding: 10px 35px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 15px;
  transition: .3s;
}

.primary-btn:hover {
  background-color: var(--theme-main);
}

.fw-semibold {
  font-weight: 600;
}

.form-control, .form-select {
  padding: .5rem .75rem !important;
  border-radius: 0 !important;
}

/* ----------------Custom css ------------------- */
/* Top Black Bar */
.top-bar {
  background-color: #000;
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar .terms {
  font-size: 0.7rem;
  text-align: right;
}

/* Discount Section */
.discount-banner {
  background-color: #3000ff;
  color: #ffff00;
  text-align: center;
  padding: 20px 0;
}

.discount-item {
  border-right: 2px solid #fff;
}

.discount-item:last-child {
  border-right: none;
}

.discount-item h6 {
  margin-bottom: 0;
  font-weight: 400;
}

.discount-item .save {
  font-weight: 600;
  font-size: 1.5rem;
}

.discount-item .amount {
  font-size: 2.5rem;
  font-weight: 800;
}

.limited-time {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #ffff00;
}

@media (max-width: 768px) {
  .discount-item {
    border-right: none;
    border-bottom: 2px solid #fff;
    margin-bottom: 1rem;
  }
}

/* -----------Slider Section ---------------- */
.slick-prev:before,
.slick-next:before {
  color: black;
  font-size: 30px;
}

.slide-counter {
  font-weight: 600;
  font-size: 16px;
}

.main-banner .slick-arrow,
.product-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 40px;
  height: 40px;
  background-color: #222;
  color: #fff;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.main-banner .slick-arrow.slick-arrow-left,
.product-slider .slick-arrow.slick-arrow-left {
  left: 30px;
}

.main-banner .slick-arrow.slick-arrow-right,
.product-slider .slick-arrow.slick-arrow-right {
  right: 30px;
}

.main-banner .slide-counter,
.home-blog .blog-count {
  position: absolute;
  right: 20px;
  bottom: -30px;
}

/* Base slick-dots container as a bar */
.main-banner .slick-dots,
.blog-slider .slick-dots {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  height: 4px;
  width: 90% !important;
  background-color: #e0e0e0;
  /* light gray background */
  border-radius: 3px;
  overflow: hidden;
}

/* Hide buttons */
.main-banner .slick-dots li button,
.blog-slider .slick-dots li button {
  display: none;
}

/* Each li becomes a segment of the progress bar */
.main-banner .slick-dots li,
.blog-slider .slick-dots li {
  flex-grow: 1;
  height: 100%;
  margin: 0;
  background-color: transparent;
}

/* Active segment */
.main-banner .slick-dots li.slick-active,
.blog-slider .slick-dots li.slick-active {
  background-color: #000;
}

.main-banner .slick-dots li button:before,
.blog-slider .slick-dots li button:before {
  content: none !important;
}

/* -------------------Product Slider ----------------------- */
.product-slider .tile-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 4px;
  height: 100%;
  margin: 0 10px;
}

.product-slider .slick-arrow {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product-slider:hover .slick-arrow {
  opacity: 1;
  pointer-events: auto;
}

.product-slider .tile-item h5 {
  font-weight: 600;
}

/* ---------------------Home Blog Slider ---------------------- */
.promo-slide {
  position: relative;
  overflow: hidden;
}

.promo-slide img {
  width: 100%;
  display: block;
}

.promo-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 10px 15px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  border: none;
}

.promo-btn:hover {
  background: #000;
  color: #fff;
}

/* -----------------------Footer Start ------------------------- */
footer {
  background: #000;
}

.links-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  gap: 12px;
}

.custom-grid {
  width: calc(25% - 12px);
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.custom-grid h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.custom-grid a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 6px;
}

.custom-grid a:hover {
  color: #fff;
}

.f-subscribe button {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: #222;
  color: #fff;
  width: 34px;
  height: 34px;
}

.f-subscribe input {
  border-radius: 0;
}

.footer-social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-social-links a {
  color: #fff;
  font-size: 20px;
}

.f-papyment img {
  width: max-content;
  height: 15px;
}

footer .divider {
  width: 100%;
  height: 1px;
  background-color: #444;
}

/* -------------------Breadcrumb --------------------- */
.breadcrumb ul li {
  margin-right: 8px;
  position: relative;
}

.breadcrumb ul li:not(:last-child):after {
  content: ">";
  margin-left: 8px;
}

/* ----------------Contact Us Page------------ */
.sidebar-box {
  border: 1px solid #ddd;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.sidebar-box a {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.sidebar-box a.active {
  font-weight: bold;
  border-left: 3px solid black;
  padding-left: 7px;
}

.support-box {
  background-color: #f5f5f5;
  padding: 1rem;
  font-size: 14px;
}

.support-box i {
  margin-right: 5px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.form-control,
.form-select {
  font-size: 14px;
}

/* Top menu mega menu with images */
.top-mega-menu {
  position: static !important;
}

.top-mega-menu .dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  border-radius: 0;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 0;
  padding: 2rem;
  background: white;
  display: none;
}

.top-mega-item {
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.top-mega-item:hover {
  transform: translateY(-5px);
}

.top-mega-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-mega-item h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.top-mega-item p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Mega sidebar styles */
.mega-sidebar {
  border-right: 1px solid #f0f0f0;
  padding-right: 1rem;
}

.mega-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-sidebar-menu li {
  margin-bottom: 0;
  border-bottom: 1px solid #f8f9fa;
}

.mega-sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.mega-sidebar-link:hover {
  color: #e67e22;
  background: #f8f9fa;
}

.mega-sidebar-link.active {
  color: #e67e22;
  background: #f8f9fa;
  border-left: 3px solid #e67e22;
}

.mega-sidebar-link .arrow {
  color: #ccc;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.mega-sidebar-link:hover .arrow {
  color: #e67e22;
}

/* Mega content area */
.main-mega-menu .dropdown-menu {
  width: 100%;
  position: fixed;
  left: 0;
}

.mega-content {
  padding-left: 2rem;
  min-height: 300px;
}

.mega-content-section {
  display: none;
}

.mega-content-section.active {
  display: block;
}

.mega-content h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.mega-items-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-items-grid li {
  margin-bottom: 0.6rem;
}

.mega-items-grid a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.3rem 0;
}

.mega-items-grid a:hover {
  color: #e67e22;
}

/* Navigation styles */
.navbar-nav .nav-link {
  padding: .5rem 1.5rem;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  font-size: 16px;
  margin: 0 13px;
  text-transform: capitalize;
}

.navbar-nav .nav-link:hover {
  color: #e67e22;
}

.navbar-nav .nav-link.active {
  color: #e67e22;
}

.navbar-brand {
  max-width: 170px;
}

.navbar {
  padding: 0.5rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: white !important;
}

.search-container {
  position: relative;
  margin: 0 1rem;
}

.search-container input {
  border: 1px solid #ddd;
  padding: 0.6rem 2.5rem 0.6rem 1rem;
  background: #f8f9fa;
  font-size: 0.85rem;
  width: 350px;
}

.search-container input:focus {
  outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

.search-container .search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
}

/* Secondary navigation */
.secondary-nav {
  background: #f8f9fa;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e9ecef;
}

.secondary-nav .nav-link {
  padding: 0.4rem 1rem;
  color: #666;
  font-weight: 500;
}

.secondary-nav .nav-link:hover {
  color: #e67e22;
}

.secondary-nav .nav-link.text-warning {
  color: #e67e22 !important;
  font-weight: 500;
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9999;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.show {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
}

.mobile-menu-header .brand {
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

.mobile-search {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.mobile-search input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}

.mobile-menu-item>a:hover {
  background: #f8f9fa;
}

.mobile-menu-item.has-arrow>a::after {
  content: '›';
  font-size: 1.2rem;
  color: #999;
}

.mobile-menu-item.special {
  color: #e67e22;
  font-weight: 500;
}

/* Submenu styles */
.mobile-submenu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 10000;
  transition: left 0.3s ease;
  overflow-y: auto;
  display: none;
}

.mobile-submenu.show {
  left: 0;
  top: 70px;
  display: block;
}

.mobile-submenu-header {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  position: sticky;
  top: 0;
}

.mobile-back {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #333;
  margin-right: 1rem;
  cursor: pointer;
}

.mobile-submenu-title {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

/* Hover effects for desktop */
.dropdown:hover .dropdown-menu {
  display: block !important;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Remove dropdown arrows */
.dropdown-toggle::after {
  display: none;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .search-container {
    display: none;
  }

  .secondary-nav .nav {
    display: none;
  }

  .navbar-nav {
    display: none !important;
  }

  .mobile-toggle {
    display: block !important;
  }
}

@media (min-width: 1025px) {
  .mobile-toggle {
    display: none;
  }
}
/* ---------------- Location dropdown (header) ---------------- */
.location-menu { position: relative; }
.location-menu .location-dropdown {
  width: 320px;
  max-width: 90vw;
  right: 0;
  top: 45px;
  left: auto;
  padding: 16px;
  display: none;
}
.location-card { background: #fff; }
.location-card h6 { font-weight: 700; }
.location-card .btn { border-radius: 0; padding: 8px 14px; }
.location-card .form-control { border-radius: 0; }
@media (max-width: 575.98px) {
  .location-menu .location-dropdown { right: 10px; max-width: calc(100vw - 20px); }
}
/* Align the standalone Location trigger inline with navbar items */
.navbar .location-menu { display: inline-block; }
.navbar .location-menu .nav-link { padding: .5rem 1.5rem; color: #333; font-weight: 500; }
.navbar .location-menu .nav-link:hover { color: #e67e22; }
/* -----------------------FAQ--------------------------- */
.faq-header {
  background-color: #f8f9fa;
  padding: 1rem;
  margin-bottom: 2rem;
}

.accordion-button {
  background-color: #fff;
  color: #333;
  border: 1px solid #dee2e6;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #333;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z'/%3e%3c/svg%3e") !important;
  width: 14px !important;
  height: 14px !important;
  background-size: 14px !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M2 8a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
  padding: 1.25rem;
  background-color: #f8f9fa;
}

/* ---------------------Product Details Page------------------- */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev .swiper-arrow,
.swiper-button-next .swiper-arrow {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.thumbSwiper .swiper-slide-thumb-active {
  border: 2px solid #0d6efd;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px !important;
}

.thumbSwiper .swiper-slide {
  cursor: pointer;
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.color-option.active {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.size-option {
  border: 1px solid #ddd;
  padding: 8px 16px;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.size-option.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.finish-option {
  border: 1px solid #ddd;
  padding: 5px 15px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.finish-option.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.undulation-option {
  border: 1px solid #ddd;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.undulation-option.active {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.rating-stars {
  color: #ffc107;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #212529;
}

.product-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.thumb-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.badge-new {
  background-color: #dc3545;
  color: white;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.price-large {
  font-size: 2rem;
  font-weight: bold;
  color: #212529;
}

.background-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}




.product-card {
  position: relative;
}
.product-card .special-price {
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  margin-bottom: 5px;
  position: absolute;
  top: 5px;
  left: 5px;
}
    .product-title {
      font-weight: 600;
      font-size: 14px;
    }
    .product-price {
      color: red;
      font-weight: bold;
    }
    .old-price {
      color: gray;
      font-size: 12px;
    }
    .discount {
      font-size: 12px;
      color: #999;
    }
    

.starting-nav {
  background: #f8f9fa;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e9ecef;
}

.starting-nav .nav-link {
    padding: 0.4rem 1rem;
    color: #666;
    font-weight: 500;
}


/* -----------------------------Product Page----------------------------- */
#filterAccordion .accordion-body {
  max-height: 340px;
  overflow-y: auto;
}
.product-card .product-img {
    height: 305px;
    overflow: hidden;
}
.product-card .product-img img.card-img-top {
    height: 100%;
    object-fit: cover;
}
.pag-outlined .page-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8eaf0;
  border-radius: 10px !important;
  color: #1a1d23;
  font-weight: 500;
  transition: all 0.2s;
  box-shadow: none !important;
}

.pag-outlined .page-item.active .page-link {
  background: #1a56db !important;
  border-color: #1a56db !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(26,86,219,0.3) !important;
}

.pag-outlined .page-item:not(.active):not(.disabled) .page-link:hover {
  border-color: #1a56db !important;
  color: #1a56db !important;
  background: rgba(26,86,219,0.08) !important;
  transform: translateY(-2px);
}

.pag-outlined .page-item.disabled .page-link {
  opacity: 0.4;
}

/* Nav buttons (Prev/Next) wider than number tiles */
.pag-outlined .page-item.nav-btn .page-link {
  width: auto;
  padding: 0 18px;
}

/*===========================Responsive Start==========================*/
@media only screen and (min-width: 1400px) {}

@media only screen and (max-width: 1439px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (min-width: 991px) {
  .secondary-nav {
    position: sticky;
    top: 0;
    z-index: 9;
}
}

@media only screen and (max-width: 991px) {
.custom-grid {
    width: calc(33% - 12px);
}
nav.navbar.navbar-expand-lg {
    position: sticky;
    top: 0;
    z-index: 10;
}
.top-offer {
    width: calc(50% - 24px);
}


}

@media only screen and (max-width: 767px) {

  .ptb-100 {
    padding: 60px 0;
  }

  .pt-100 {
    padding-top: 60px;
  }

  .pb-100 {
    padding-bottom: 60px;
  }

  .mt-100 {
    margin-top: 60px;
  }

  .mb-100 {
    margin-bottom: 60px;
  }

  .mtb-100 {
    margin: 60px 0;
  }
}

@media only screen and (max-width: 575px) {
    .location-menu #locationDisplay {
    max-width: 100px;
    display: -webkit-inline-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    vertical-align: middle;
}
.navbar .location-menu .nav-link {
    padding: .5rem 1rem;
}
.custom-grid {
    width: calc(100% - 12px);
}
.footer-social-links {
    margin-top: 0px;
}
}

@media only screen and (max-width: 425px) {
    .navbar-brand {
    max-width: 130px;
}
.custom-grid {
    width: calc(50% - 12px);
}
.mobile-toggle {
    position: absolute;
    top: 25px;
    right: 10px;
    }
.starting-nav .top-mainmenu .nav-link{
    padding: 0.4rem 0.5rem !important;
    font-size: 14px !important;
}
}