:root {
  --main-light: #fff;
  --main-primary: #1b1464;
  --main-secondary: #2596be;
  --main-focus: #fa9e2d;
  --main-focus-secondary: #fdbe70;
}

body {
  height: 100%; 
  margin-left: 380px;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  color: black;
}

main {
  flex: 1; /* takes remaining space */
}

.btn-main {
  color: var(--main-light) !important;
  background-color: var(--main-primary);
  border-color: var(--main-primary);
}

.btn-main:hover {
  background-color: var(--main-secondary);
  border-color: var(--main-secondary);
}

.btn-main-focus {
  color: var(--main-light) !important;
  background-color: var(--main-focus);
  border-color: var(--main-focus);
}

.btn-main-focus:hover {
  background-color: var(--main-focus-secondary);
  border-color: var(--main-focus-secondary);
}

.txt-main {
  color: var(--main-primary);;
}

.txt-main-secondary {
  color: var(--main-secondary);;
}

#app-content {
}

i {
  color: #5555558c;
}

i:hover {
  color: var(--main-primary);
}

.btn:focus,
.btn:active,
.btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.mobile-navbar {
  background: linear-gradient(60deg, #efefef 40%, #ffffff 40%);
}

.mobile-navbar .logo {
  width: 385px;
  height: 90px;
}


.mobile-navbar .navbar-nav {
    margin-left: auto;
}

.mobile-navbar .navbar-nav .second-nav {
  flex-direction: column;
}

.mobile-navbar .nav-item .nav-link {
  color: #5555558c;
}

.mobile-navbar .nav-item .nav-link:hover {
  color: var(--main-primary);
}

.mobile-navbar .navbar-nav .dropdown {
  display: none;
  padding: 0;
}

.mobile-navbar .navbar-nav .dropdown-toggle {
  border: none;
  background-color: var(--main-light);
  color: #5555558c !important;
}

.mobile-navbar .navbar-nav .dropdown-toggle::after {
  display: none !important;
}

.mobile-navbar .navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0
}

.mobile-navbar .navbar-nav .dropdown-menu {
  border: none;
  transition: all 0.25s ease;
  min-width: 220px;
}

.mobile-navbar .navbar-nav .dropdown-item {
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  color: var(--main-secondary);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-navbar .navbar-nav .dropdown-item:hover {
  text-decoration: underline;
  color: var(--main-primary);
}

.mobile-navbar .navbar-nav .dropdown-item:active {
  background-color: var(--main-secondary);
  color: var(--main-light);
} 

/* SIDEBAR BASE */
.sidebar {
    width: 380px;
    height: 100%;
    background: #ffffff;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    display: block;
    /* background: linear-gradient(60deg, #efefef 60%, #ffffff 40%); */
    z-index: 999;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    z-index: 150;       /* under sidebar (z-index: 100) because sidebar sits on top */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Visible overlay */
.sidebar-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* Logo */
.sidebar-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 25px;
  margin-left: -10px;
}

/* Menu list */
.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.sidebar-menu li {
    margin-bottom: 6px;
}

.sidebar-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #5555558c;
  text-decoration: none;
  transition: 0.2s;
}

.sidebar-menu a:hover {
  color: var(--main-primary);
}

/* Hover open */
.mega-parent:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.mega-menu {
    display: none;
    background: #fff;
    border-radius: 0;
    padding: 10px 0;
    width: 100vw;
    position: absolute;
    left: -20px;
}

.mega-subitem {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
}

.mega-subitem:hover {
    background: #f4f4f4;
    color: var(--main-primary);
}

.mega-subitem .arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}

.mega-subitem .arrow.open {
  transform: rotate(90deg); /* → rotated down */
}

.mega-dropdown-menu {
    display: none;
    width: 100%;
    left: -5px;
    padding-left: 10px;
    border: none;
}

/* Fullscreen mega panel */
.mega-panel {
    position: fixed;
    top: 0;
    left: 380px; /* aligned with sidebar width */
    width: calc(100vw - 380px);
    height: 100vh;
    background: #fafafa;
    display: none;
    padding: 40px;
    overflow-y: auto;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.mega-panel .panel-header .close-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--main-primary);
  border-color: var(--main-primary);
}

.mega-panel .panel-header .close-btn i {
  color: var(--main-primary);
}

.mega-panel .panel-header .close-btn:hover {
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.mega-panel.show-panel {
  display: flex;
}

.mega-panel .product-image {
  width: 275px;
  height: 250px;
  object-fit: contain;
}

/* Language buttons */
.lang-box {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    position: relative;
}

.lang-btn {
    width: 50%;
    padding: 8px;
    font-weight: 600;
    border: none;
    background: var(--main-primary);
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}

/* Contact section */
.sidebar-contact {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sidebar-contact li {
    margin-bottom: 10px;
}

.sidebar-contact a {
    display: block;
    font-size: 17px;
    color: #5555558c;
    text-decoration: none;
    transition: all .2s;
}

.sidebar-contact a:hover {
    color: var(--main-primary);
}

.sidebar-contact i {
  font-size: 17px;
}

.quote-btn {
    display: block;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    background: var(--main-primary);
    color: white !important;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all .4s;
}

.quote-btn:hover {
  background: var(--main-secondary);
}


/* INTRO SECTION */
.intro-section {
  position: relative;
  width: 100%;
  height: 40vh; /* Adjust height as needed */
  background: url('/assets/intro-bg.jpg') center center/cover no-repeat;
}

.intro-section .overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
}

.intro-section h1 {
  z-index: 2;
}

.intro-section .breadcrumb-nav {
  z-index: 2;
}

.intro-section .breadcrumb-nav .breadcrumb .breadcrumb-item a {
  color: white;
}

.intro-section .breadcrumb-nav .breadcrumb .breadcrumb-item a:hover {
  color: #bbb;
}

/* Carousel controls (prev/next arrows) */
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-color: var(--main-primary); /* red color */
  border-radius: 50%;        /* optional: make circular */
  width: 50px;               /* optional: bigger size */
  height: 50px;
  background-size: 50% 50%;  /* adjust arrow size */
}

/* Carousel indicators (dots) */
.hero-carousel .carousel-indicators button {
  background-color: var(--main-focus-secondary); /* red dots */
}

.hero-carousel .carousel-indicators .active {
  background-color: var(--main-focus); /* darker red for active */
}

.hero-carousel .carousel-control-prev-icon:hover,
.hero-carousel .carousel-control-next-icon:hover {
  background-color: var(--main-secondary); /* brighter red on hover */
}

.hero-carousel .carousel-indicators button:hover {
  background-color: var(--main-focus-secondary);
}

.hero-carousel .carousel-item { 
  position: relative;
}

.hero-carousel .carousel-item .carousel-caption {
  position: absolute;
  bottom: 17%;
  left: 1.5%;
}

.hero-carousel h2,
.hero-carousel p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Custom cards about us */
.section_our_solution .row {
  align-items: center;
}

.our_solution_category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.our_solution_category .solution_cards_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution_cards_box .solution_card {
  flex: 0 50%;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(136, 144, 195, 0.2),
    0 5px 15px 0 rgba(37, 44, 97, 0.15);
  border-radius: 15px;
  margin: 8px;
  padding: 15px 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 195px;
  transition: 0.7s;
}

.solution_cards_box .solution_card:hover {
  background: var(--main-primary);
  color: #fff;
  transform: scale(1.1);
  z-index: 9;
}

.solution_cards_box .solution_card:hover::before {
  background: rgb(85 108 214 / 10%);
}

.solution_cards_box .solution_card:hover .solu_title h3,
.solution_cards_box .solution_card:hover .solu_description p {
  color: #fff;
}

.solution_cards_box .solution_card:before {
  content: "";
  position: absolute;
  background: rgb(85 108 214 / 5%);
  width: 170px;
  height: 420px;
  z-index: -1;
  transform: rotate(42deg);
  right: -56px;
  top: -23px;
  border-radius: 35px; 
}

.solution_cards_box .solution_card:hover .solu_description button {
  background: #fff !important;
  color: var(--main-light);
}

.solution_cards_box .solution_card:hover .solu_description button a {
  color: var(--main-secondary);
}

.solution_card .solu_title h3 {
  color: #212121;
  font-size: 1.3rem;
  margin-top: 13px;
  margin-bottom: 13px;
}

.solution_card .solu_description p {
  font-size: 15px;
  margin-bottom: 15px;
}

.solution_card .solu_description button {
  border: 0;
  border-radius: 15px;
  background: linear-gradient(
    140deg,
    #2596be 0%,
    #2596be 50%,
    #2596bec7 75%
  ) !important;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 16px;
}

.solution_card .solu_description button a {
  color: var(--main-light);
}

.our_solution_content h1 {
  text-transform: capitalize;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.hover_color_bubble {
  position: absolute;
  background: rgb(54 81 207 / 15%);
  width: 100rem;
  height: 100rem;
  left: 0;
  right: 0;
  z-index: -1;
  top: 16rem;
  border-radius: 50%;
  transform: rotate(-36deg);
  left: -18rem;
  transition: 0.7s;
}

.solution_cards_box .solution_card:hover .hover_color_bubble {
  top: 0rem;
}

.solution_cards_box .solution_card .so_top_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution_cards_box .solution_card .so_top_icon img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

/* All products */

#all_products {
  height: 100%;
}

.category-title .arrow {
  transition: transform 0.3s ease;
}

.category-item .dropdown-menu {
  display: none;
}

.category-btn.dropdown-toggle::after {
    display: none !important;
}

.category-group {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1s ease-out, height 1s ease-in;
}

.category-group.show {
  opacity: 1;
  height: 100%;
  max-height: 140vh;
}

.category-group .product-image {
  width: 275px;
  height: 250px;
  object-fit: contain;
}

#main-product .brand {
  background-color: rgba(0, 0, 0, 0.035);
}


/*start media query*/
@media screen and (min-width: 320px) {
  .sol_card_top_3 {
    position: relative;
    top: 0;
  }

  .our_solution_category {
    width: 100%;
    margin: 0 auto;
  }

  .our_solution_category .solution_cards_box {
    flex: auto;
  }
}

@media only screen and (min-width: 768px) {
  .our_solution_category .solution_cards_box {
    flex: 1;
  }
}

@media only screen and (min-width: 1024px) {
  .sol_card_top_3 {
    position: relative;
    top: -3rem;
  }
  .our_solution_category {
    width: 50%;
    margin: 0 auto;
  }
}

/* REQUEST A QUOTE SECTION */
.request-quote-section {
  position: relative;
  background: url('/assets/request-offer-bg.jpg') center/cover no-repeat fixed; /* your background image */
  color: #fff;
  height: 60vh;
  display: flex;
  align-items: center;
}

.request-quote-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(35deg, transparent 40%, #222 40%);
  opacity: 0.9;
}

.request-quote-section .container {
  position: relative;
  z-index: 1;
}

.request-quote-form .form-control {
  border-radius: 0.5rem;
  border: none;
  padding: 0.75rem;
}

/* Product carousel */
/* Carousel controls (prev/next arrows) */
.products-carousel .carousel-control-prev-icon,
.products-carousel .carousel-control-next-icon {
  filter: invert(32%) sepia(99%) saturate(500%) hue-rotate(180deg);
}

.products-carousel .carousel-control-prev {
  left: -2rem; /* move further left */
}

.products-carousel .carousel-control-next {
  right: -2rem; /* move further right */
}

#products .card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#products .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#products .card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

/* CTA */
#cta {
  background: linear-gradient(135deg, #111, #333);
  border-radius: 20px;
  margin: 3rem auto;
  max-width: 900px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

#cta h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

#cta .btn-danger {
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

#cta .btn-danger:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.4);
}

/*Catalog section design*/
.catalog-section .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.catalog-section img {
  filter: hue-rotate(180deg) brightness(0.95);
}

/* Accordion */
/* Active (open) accordion header */
.accordion-button:not(.collapsed) {
  color: black;                /* white text */
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
  background: linear-gradient(-135deg, var(--main-primary) 20%, #f1f1f1 20%);
}

/* Optional: change the hover state as well */
.accordion-button:not(.collapsed):hover {
  background-color: var(--main-primary);  /* darker red */
}

.products-section .product-image img:hover {
  border: 3px solid var(--main-secondary);
}

.products-section .product-image img {
  width: 100%;
  height: 350px;
  object-fit: contain;
}

/* Single product carousel style */
.main-product-section .carousel-indicators {
  position: static !important;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
}

.main-product-section .carousel-indicators [data-bs-target] {
  width: 80px;
  height: 60px;
  border: none;
  background: none; /* remove Bootstrap’s background */
  opacity: 0.6;
  padding: 0;
  margin: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Make the image fill the button */
.main-product-section .carousel-indicators [data-bs-target] img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  pointer-events: none; /* so clicks register on the button itself */
}

.main-product-section .carousel-indicators [data-bs-target].active {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid var(--main-primary);
}

.main-product-section .carousel-control-prev,
.main-product-section .carousel-control-next {
  width: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.main-product-section .carousel-control-prev {
  left: -30px; /* move left arrow outside the image */
}

.main-product-section .carousel-control-next {
  right: -30px; /* move right arrow outside the image */
}

.main-product-section .carousel-control-prev-icon,
.main-product-section .carousel-control-next-icon {
  filter: brightness(0) saturate(100%) invert(11%) sepia(49%) saturate(3924%) hue-rotate(238deg) brightness(86%) contrast(108%);
}

/* Optional: hover effect */
.main-product-section .carousel-control-prev:hover,
.main-product-section .carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition: all 0.2s ease-in-out;
}

/* Ask about product form */
.main-prod-form {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.6s ease, opacity 0.5s ease, transform 0.5s ease;
}

.main-prod-form.show {
  max-height: 1000px; /* just large enough for your form */
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
.footer {
  background: #222; /* fallback */
  color: white;
  /* position: fixed; */
  /* bottom: 0; */
  width: 100%;
  /* margin-top: auto; */
}

.footer i:hover {
  color: var(--main-secondary);
}

.footer-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--main-secondary);
  margin-top: 5px;
  border-radius: 2px;
}

.footer-link {
  color: white;
  text-decoration: none;
  display: block;
  margin: 0.4rem 0;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--main-secondary);
}

.footer-social {
  font-size: 1.2rem;
  color: #9999998c;
  transition: color 0.3s;
}

.footer-social i:hover {
  color: var(--main-secondary);
}

/* Copyright Bar with same diagonal gradient */
.footer-bottom {
  background: linear-gradient(155deg, var(--main-secondary) 40%, #222 40%);
  color: white;
}

.page-404 {
  min-height: 60vh;
  color: #333;
  position: relative;
  overflow: hidden;
}

.page-404 h1 {
  font-size: 10rem;
  line-height: 1;
  animation: pulse404 2s infinite;
}

@keyframes pulse404 {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

#productsModal .modal-content {
  background: linear-gradient(155deg, #f8f9fa 40%, #e9ecef 40%);
}

#productsModal .form-select {
  border-radius: 0.5rem;
  padding: 0.75rem;
}

#searchModal .modal-content {
  background: rgba(0, 0, 0, 0.65);
    color: white;
    border: none;
}

#searchModal .search-input{
  border: none;
  border-radius: 0;
  font-size: 48px;
  background-color: transparent;
  color: white;
  text-align: center; 
}

#searchModal .search-input::placeholder{
  font-size: 32px;
}

/* Search button */
#searchModal .search-toggle {
  align-self: center;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
}

/* Close button styling */
#searchModal .btn-close {
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  padding: 0.5rem;
}

#searchModal .btn-close:hover {
  background-color: var(--main-secondary);
}

/* Page loader */

#page-loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 9999;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
}

#page-loader .spinner {
  width: 48px;
  height: 48px;
  margin-top: 250px;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid #ddd;
  border-top-color: #0d6efd;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* MEDIA QUERY */
/*******************************************************************************************************************/
/*******************************************************************************************************************/
/*******************************************************************************************************************/
/*******************************************************************************************************************/
/*******************************************************************************************************************/

@media screen and (min-width: 991.98px) and (max-width: 1300px) {
  .category-btn .text {
      font-size: 12px;
  }
  .category-btn .arrow {
      font-size: 12px;
  }
}



@media screen and (min-width: 991.98px) and (max-width: 1201.98px) {

  .mobile-navbar .second-nav .nav-item .nav-link {
    font-size: 12px;
  }

  .mobile-navbar .first-nav .nav-item .nav-link {
    font-size: 10px;
    font-weight: bold;
  }

  .hero-carousel .carousel-item .carousel-caption{
    bottom: 9%;
  }

  .category-group .product-image {
    width: 225px;
    height: 200px;
    object-fit: contain;
  }
}

@media (max-width: 1024.98px) {

  .mobile-navbar .nav-item .nav-link {
    color: #5555558c;
  }

  .products-carousel .carousel-control-prev-icon,
  .products-carousel .carousel-control-next-icon {
    display: none;
  }
}

@media (max-width: 991.98px) {

  body, html {
    margin-left: 0px;
  }

  .sidebar {
    left: -380px; /* hide off-screen */
    transition: left 0.5s;
  }

  .sidebar.open {
    left: 0; /* slide in */
  }
  
  .mobile-navbar {
    background: none;
  }

  .mobile-navbar  .navbar-nav {
    margin-left: 0;
    margin-top: 16px;
  }

  .mobile-navbar  .navbar-nav .second-nav {
    flex-direction: row;
  }

  .mobile-navbar  .navbar-nav.second-nav .social-links {
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: #9999998c;
  }

  .mobile-navbar .navbar-nav .dropdown {
    display: block;
  }

  .desktop-navbar {
    display: none;
    background: var(--main-primary);
  }

  .hero-carousel .carousel-item .carousel-caption{
    bottom: 9%;
  }

  .hero-carousel .carousel-item .carousel-caption a{
    font-size: 14px;
  }

  #searchModal .search-input::placeholder{
    font-size: 24px;
  }

  .request-quote-section {
    height: 70vh;
  }

  .category-title .arrow {
    transform: rotate(90deg);
  }

  .category-group .product-image {
    width: 350px;
    height: 300px;
    object-fit: contain;
  }
  
}

@media (max-width: 564px) {

  .mobile-navbar .logo {
    width: 280px;
    height: 65px;
  }

  .hero-carousel .carousel-item img{
    height: 30vh; /* full screen height */
    object-fit: cover; /* crop instead of squish */
    object-position: right; 
  }

  .hero-carousel .carousel-item .carousel-caption{
    bottom: 2%;
  }


  .hero-carousel .carousel-item .carousel-caption a{
    font-size: 12px;
  }

  .hero-carousel .carousel-item h2{
    font-size: 24px;
  }

  .hero-carousel .carousel-item p{
    font-size: 16px;
  }

  .solution_cards_box .solution_card .so_top_icon {
    border-radius: 15%;
  }

  .main-product-section .carousel-control-prev {
    display: none;
  }

  .main-product-section .carousel-control-next {
    display: none;
  }
}
