:root {
  --color-primary: #7a7b7b;
  --color-light-primary: #b8b8b8fb ;
  --color-very-light-primary: #f9f9f9fb ;
  --color-secondary: #003366;
  --color-accent: #F5A623;
  --color-light: #F8F8F8;
  --color-text: #1A1A1A;
  --color-text-light: #FFFFFF;
  --border-raduse: 1.5rem;
  --main-transition:  all 0.3s ease;

}
/* ### Color ### */
.primary-color{
    color: var(--color-primary);
}
.primary-light-color{
    color: var(--color-light-primary);
}
.secondary-color{
    color: var(--color-secondary);
}
.accent-color{
    color: var(--color-accent);
}
.text-color{
    color: var(--color-text);
}
.light-text-color{
    color: var(--color-text-light);
}
.bg-primary-color{
    background-color: var(--color-primary);
}
.bg-primary-light-color{
    background-color: var(--color-light-primary);
}
.bg-primary-very-light-color{
    background-color: var(--color-very-light-primary);
}
.bg-secondary-color{
   background-color: var(--color-secondary);
}
.bg-accent-color{
    background-color: var(--color-accent);
}
.bg-light-color{
  background-color: var(--color-light);
}
.bg-text-color{
    background-color: var(--color-text);
}
.bg-light-text-color{
    background-color: var(--color-text-light);
}

/* ### End Color ### */
/* ### Hover Color ### */
.hover-accent-color:hover{
    color: var(--color-accent);
}
.hover-accent-color:hover i{
   transform: scale(1.15);
}
/* ### End Hover Color ### */
/* ### Btn Style ### */
.active-btn{
    border-bottom: solid 4px var(--color-accent) !important;
    color: var(--color-accent) !important;
} 
.btn-fill {
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
}
.btn-fill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: var(--color-accent);
  z-index: -1;
  transition: width 0.6s ease;
}
.btn-fill:hover::before {
  width: 100%;
}
.secondary-btn{
  color: var(--color-text-light);
  transition: var(--main-transition);
  background-color: var(--color-secondary);
  border: solid 2px var(--color-secondary);
}
.secondary-btn:hover{
  color: var(--color-secondary);
  transition: var(--main-transition);
  background-color: var(--color-light);
}
/* ### End Btn Style ### */
/* ### Rotate Style ### */
.rotateY{
   perspective: 800px;
}
.rotateY .rotateIcon{
  transition: transform 0.6s ease, color 0.6s ease;
  transform-style: preserve-3d;
  position: relative;
}
.rotateY:hover .rotateIcon{
  transform: rotateY(180deg);
}
/* ### End Rotate Style ### */
/* ### Transition ### */
.main-transition{
    transition: var(--main-transition);
}
/* ### End Transition ### */
/* ### Border Raduse ### */
.main-border-raduse{
  border-radius: var(--border-raduse);
}
/* ### End Border Raduse ### */
/* ### Timeline ### */
.timeline-line {
  width: 2px;
  height: 200px; 
  margin: 0 auto;
}
.timeline-item h4 {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .timeline-item {
    flex-direction: column !important;
  }
  .timeline-line {
    height: 50px;
  }
}
/* ### End  Timeline ### */
/* ### Scale ### */
.main-scale:hover{
    scale: 1.05;
}
/* ### End Scale ### */
.text-justify{
    text-align: justify;
}
/* ### End Scale ### */
/* ### FontSize ### */
.text-xs   { font-size: 0.75rem;   line-height: calc(1 / 0.75); }
.text-sm   { font-size: 0.875rem;  line-height: calc(1.25 / 0.875); }
.text-base { font-size: 1rem;      line-height: calc(1.5 / 1); }
.text-lg   { font-size: 1.125rem;  line-height: calc(1.75 / 1.125); }
.text-xl   { font-size: 1.25rem;   line-height: calc(1.75 / 1.25); }
.text-2xl  { font-size: 1.5rem;    line-height: calc(2 / 1.5); }
.text-3xl  { font-size: 1.875rem;  line-height: calc(2.25 / 1.875); }
.text-4xl  { font-size: 2.25rem;   line-height: calc(2.5 / 2.25); }
.text-5xl  { font-size: 3rem;      line-height: 1; }
.text-6xl  { font-size: 3.75rem;   line-height: 1; }
.text-7xl  { font-size: 4.5rem;    line-height: 1; }
.text-8xl  { font-size: 6rem;      line-height: 1; }
.text-9xl  { font-size: 8rem;      line-height: 1; }
/* ### End FontSize ### */
/* ###  Spacing ### */
/* Width */
.w-0 { width: 0; }
.w-px { width: 1px; }
.w-0\.5 { width: 0.125rem; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; } 
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }/* T */
.w-9 { width: 2.25rem; } 
.w-10 { width: 2.5rem; }/* T */
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; } /* T */
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-40 { width: 10rem; }
.w-44 { width: 11rem; }
.w-48 { width: 12rem; }
.w-52 { width: 13rem; }
.w-56 { width: 14rem; }
.w-60 { width: 15rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }

/* Height */
.h-0 { height: 0; }
.h-px { height: 1px; }
.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; } 
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }/* T */
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }/* T */
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-44 { height: 11rem; }
.h-48 { height: 12rem; }
.h-52 { height: 13rem; }
.h-56 { height: 14rem; }
.h-60 { height: 15rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }

/* ### End Spacing ### */
/* ### End Container ### */
.custome-container {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;  
  padding-inline: 1rem;
}
@media (min-width: 576px) {
  .custome-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .custome-container{
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .custome-container{
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .custome-container{
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .custome-container{
    max-width: 1320px;
  }
}
/* ### End Container ### */
/* ### Hide Scrollbar ### */
/* hide scrroll  */
.scroll-hidden::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.scroll-hidden {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* ### End Hide Scrollbar ### */
/* ### Header ### */
header{
  color: var(--color-text-light);
  z-index: 100 !important; 
}
header #profil-nav{
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.header-page-nav{
    flex: 1;
}
.phone-icon {
  display: inline-block;
  animation: shake 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.eyeIcon{
  position: absolute;
  left: 0;
  top: 62%;
}
#authModal.modal {
  z-index: 99999 !important;
}
.modal-backdrop {
  z-index: 3 !important;
}
#authModal.modal * {
  pointer-events: auto !important;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(10deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(8deg); }
  40% { transform: rotate(-8deg); }
  50% { transform: rotate(6deg); }
  60% { transform: rotate(-6deg); }
  70% { transform: rotate(4deg); }
  80% { transform: rotate(-4deg); }
  90% { transform: rotate(2deg); }
}

.shake {
  display: inline-block;
  animation: smooth-shake 3s ease-in-out infinite;
  transform-origin: center center; 
}

#profil-nav{
  border-bottom-left-radius: 50rem; 
  border-bottom-right-radius: 50rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* ### End Header ### */
/* line clamp */
.line-clamp-1{
    display: -webkit-box;
    -webkit-line-clamp: 1;     
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1.6rem;
  }
.line-clamp-2{
    display: -webkit-box;
    -webkit-line-clamp: 2;     
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2rem;
}
.line-clamp-3{
  display: -webkit-box;
  -webkit-line-clamp: 3;     
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.8rem;
}
.line-clamp-4{
  display: -webkit-box;
  -webkit-line-clamp: 4;     
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 5rem;
}
.line-clamp-7{
  display: -webkit-box;
  -webkit-line-clamp: 7;     
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 8.8rem;
}
/*end line clamp */
/* ### Alert ### */
/* Notification Box Styles */
.notification-box {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  max-width: 380px;
  background-color: var(--color-light-primary);
  color: var(--color-text);
  padding: 1rem;
  border-radius: var(--border-raduse);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  z-index: 1060;
}

.notification-box .btn-close {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
}

.notification-content {
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.notification-icon {
  color: var(--color-primary);
}

.notification-text {
  padding-right: 0.5rem;
}

/* ### End Alert ### */

/* ###  Main ### */
main {
  margin-top: 11rem; 
}
@media (max-width: 992px) {
  main {
    margin-top: 9rem;
  }
}
@media (max-width: 768px) {
  main {
    margin-top: 8rem;
  }
}
@media (max-width: 576px) {
  main {
    margin-top: 7rem;
  }
}

a{
  text-decoration: none;
  color: var(--color-text-light);
}
button{
  border: none;
  background-color: var(--color-text-light);
  padding: 6px 10px;
  border-radius: var(--border-raduse);
}
/* Swiper Banner */
.bannerSwiper .swiper-wrapper {
  height: 60vh; 
}
@media (max-width: 1200px) {
  .bannerSwiper .swiper-wrapper {
    height: 52vh;
  }
}
@media (max-width: 992px) {
  .bannerSwiper .swiper-wrapper {
    height: 45vh;
  }
}

@media (max-width: 768px) {
  .bannerSwiper .swiper-wrapper {
    height: 38vh;
  }
}
@media (max-width: 576px) {
  .bannerSwiper .swiper-wrapper {
    height: 30vh;
  }
}

.companyLogo .swiper-wrapper{
  height: 28vh !important;
}
.popularBlog .swiper-wrapper{
  height: 50vh !important;
}
.swiper-button-next,  .swiper-button-prev {
  bottom: var(--swiper-pagination-bottom, 8px) !important;
  top: var(--swiper-pagination-top, auto) !important;
  background-color: var(--color-accent);
  color: var(--color-secondary);
}
.swiper-button-next::after,  .swiper-button-prev::after {
  font-size: 20px !important;
}
.swiper-button-next:hover,  .swiper-button-prev:hover {
  transform: scale(1.06);
  opacity: 0.9 !important;
}
.swiper-button-prev{
    left: var(--swiper-navigation-sides-offset, 60px) !important;
    right: auto !important;
}
.swiper-button-next{
  left: var(--swiper-navigation-sides-offset, 15px) !important;
  right: auto !important;
  }
  
.swiper-pagination-bullet {
  width: 12px; 
  height: 12px;   
  background-color: var(--color-light);
  opacity: 0.9;
  border-radius: 6px;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 30px;     
  height: 12px;     
  background-color: var(--color-accent);  
  border-radius: 6px;
}
/*End Swiper Banner */
/* ### Profile Type Section ### */
.profile-type-section .card{
  border: solid 4px var(--color-primary);
}
.profile-type-section .profile-card {
  transition: opacity 0.5s ease;
}

.profile-type-section .profile-card:hover .card-img-top{
  opacity: 0.5; 
}
.profile-type-section .profile-card:hover {
  background-color: var(--color-secondary); 
  border: solid 4px var(--color-secondary);
}

.profile-type-section .profile-card .price-btn {
  opacity: 0;
  transition: all 0.3s ease;
}

.profile-type-section .profile-card:hover .price-btn {
  opacity: 1;
}
/* ### End Profile Type Section ### */
/* ###  Profile Price Section ### */
.blog-bar .custome-container{
  overflow-x: auto;
}
.blog-bar .blog-item:hover  {
  border-bottom: solid 4px var(--color-secondary);
  color: var(--color-secondary);
}
.blog-bar .blog-item {
  border-bottom: solid 4px var(--color-light-primary);
  color: var(--color-secondary);
}

.product-row {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: var(--color-very-light-primary);
}

@media (max-width: 991px) {
.product-header {
  display: none !important;
}
}
.product-header {
  background: var(--color-secondary);
  color: var(--color-text-light);
  font-weight: bold;
  border-bottom-right-radius: var(--border-raduse);
  border-bottom-left-radius: var(--border-raduse);
}
.profil-item:hover{
    border-bottom: solid 4px var(--color-secondary) !important;
    color: var(--color-secondary) !important; 
}
.profil-item{
    border-bottom: solid 4px var(--color-light-primary) ;
}
.product-row:not(.product-header) .col {
  text-align: center;
  padding: 8px;
}

.product-row:hover:not(.product-header) {
  background: var(--color-light);
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.col {
  text-align: center;
  vertical-align: middle;
  overflow-wrap: break-word;
}

.popular:hover {
  color: red;
}

/* ### End Profile Price Section ### */
/* ### buy steps ### */
.buy-steps-section .buy-step-icon:hover{
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.buy-steps-section .buy-step-item:hover{
    transform: translateY(-5px);
}
/* ### End buy steps ### */
/* ### benefits Section ### */
.benefits-section{
  margin-top: -7rem;
}

.benefits-section .benefit-item{
   border: solid 2px var(--color-secondary);
}

/* ### End benefits Section ### */
/* ### Weblog Section ### */
.weblog-section .card-img-top{
  margin-bottom: 3.8rem;
}
.weblog-section .weblog-card:hover  {
  background-color: var(--color-secondary);
}
.weblog-section .weblog-card:hover .card-body  {
  background-color: var(--color-secondary);
}
.weblog-section .weblog-card:hover .blog-title {
  transform: translateY(-8px);
}
.weblog-section .weblog-card:hover .blog-desc {
  max-height: 3em; 
  display: block !important;
}
.weblog-section .weblog-card:hover .card-img-top {
  scale: 1.06;
  opacity: 0.5;
}
/* ### End Weblog Section ### */
/* ### End Main ### */
/*-----------------------------------------------------
                  Products Page
--------------------------------------------------------
*/
@media (max-width: 992px) {

    .product-row  {
        padding: 10px 10px;
    }
    .product-row .col {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
    }

    .product-row .col span.d-lg-none {
        display: inline-block !important;
        font-weight: bold;
        color: #555;
    }

    .product-header {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .product-row .col {
        font-size: 13px;
    }
}
.filter-box {
  position: sticky;
  top: 150px;
  height: fit-content; 
}
.filter-box .filterProfil:hover  ,.filter-box .weightFilter:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.filter-item label {
  color: var(--color-secondary);
}
.custom-input, .custom-select {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: border 0.2s ease;
}
.custom-input:focus, .custom-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.25);
}

/* Mobile action buttons fixed at bottom */

/* Drawer base */
.mobile-drawer {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 70%;
    background: var(--color-text-light);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: bottom 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

/* Drawer open */
.mobile-drawer.open {
    bottom: 0;
}

/* Header of drawer */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-weight: bold;
    background: var(--color-light);
    border-bottom: 1px solid var(--color-accent);
}

.drawer-header .closeDrawer {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Content scroll */
.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}
/* chart */
#chartPopup{
    display: none
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-content {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  max-width: 900px;
  width: 90%;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {opacity:0; transform: scale(0.9);}
  to {opacity:1; transform: scale(1);}
}

/*-----------------------------------------------------
                End Products Page
--------------------------------------------------------
/*-----------------------------------------------------
                Products Detail  Page
--------------------------------------------------------*/
.product-tab-btn:hover{
    border-bottom: solid 4px var(--color-secondary) !important;
    color: var(--color-secondary) !important; 
}
.product-tab-btn{
    border-bottom: solid 4px var(--color-light-primary) ;
}
/*-----------------------------------------------------
                End Products Detail Page
--------------------------------------------------------
/*-----------------------------------------------------
                About Us Page
--------------------------------------------------------*/
.contact-us-section {
 background: linear-gradient(0.25turn, var(--color-light), var(--color-light-primary) ,var(--color-primary));
 
}
.about-section .about-icon-wrapper{
  position: absolute;
  top: -2.6rem;
  left: 50%; 
  transform: translateX(-50%);
  border: solid 1px var(--color-accent);
}
.about-section .about-col{
  margin-top: 80px;
}
.about-section .about-col:hover{
  transform: translateY(-10px);
}
/*-----------------------------------------------------
                End About Us Page
--------------------------------------------------------
*/
/*-----------------------------------------------------
                Blog  Page
--------------------------------------------------------
*/
.blog-bar .custome-container{
  overflow-x: auto;
}
.blog-bar .blog-item:hover  {
  border-bottom: solid 4px var(--color-secondary);
  color: var(--color-secondary);
}
.blog-bar .blog-item {
  border-bottom: solid 4px var(--color-light-primary);
  color: var(--color-secondary);
}
.filter-box .filterBlog:hover  {
box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.filter-box .filterBlog .blog-Title:hover {
  color: var(--color-accent);
}
.blog-card {
  border: solid 4px var(--color-primary);
  transition: opacity 0.5s ease;
}

.blog-card:hover .card-img-top , .blog-card:hover .timeBadge{
  opacity: 0.5; 
}
.blog-card:hover {
  background-color: var(--color-secondary); 
  border: solid 4px var(--color-secondary);
}

.blog-card .price-btn {
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-card:hover .price-btn {
  opacity: 1;
}
/*-----------------------------------------------------
                End Blog Page
--------------------------------------------------------
*/
#faqAccordion .accordion-item {
  border: none;
  background-color: transparent;
  border-radius: 0 !important;
}

.accordion#faqAccordion .accordion-item:last-child {
  border-bottom: none;
}

#faqAccordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--color-secondary);
  box-shadow: none;
}

#faqAccordion .accordion-button:focus {
  box-shadow: 0px 2px 3px var(--color-secondary);
  border-color: var(--color-accent);
  z-index: 3;
  outline: 0;
}

#faqAccordion .accordion-button:hover {
  box-shadow: 0px 2px 3px var(--color-accent);
}

#faqAccordion .accordion-button {
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  transition: var(--main-transition);
  justify-content: space-between;
  border-radius: 5px !important;
  align-items: center;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 1.25rem;
}

#faqAccordion .accordion-button::after {
  background-image: none;
  font-family: var(--fontIcons);
  height: fit-content;
  width: fit-content;
  font-weight: 400;
  content: "+";
  font-size: 2rem;
  line-height: 0;
  margin-inline-end: 0;
}
#faqAccordion .accordion-button:not(.collapsed)::after {
  content: "-";
}

#faqAccordion .accordion-body p {
  text-align: justify;
  margin-bottom: 0;
  color: var(--color-primary);
  line-height: 1.8;
  font-weight: 500;
  font-size: 1rem;
}
/* /// */
