/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Main Header Styles */
.main-header {
    /*background: url('../images/bg-header.png') no-repeat center center/cover;*/
    /*padding: 20px 0;*/
    background-color: #d2f1fe;
    position: relative;
    z-index: 100;
    color: #0054A6;
}

/* Main Header Content */
.logo-wrap .inner {
    display: flex;
    justify-content: start;
    gap: 15px;
}
.logo-text {
    padding-top: 30px;
}
.company-info {
    padding-top: 30px;
    text-align: left;
}
.company-info .tele-cart {
    display: flex;
    justify-content: space-between;
}
.company-info .phone-wrap {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.company-info .address {
    text-align: left;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.company-info .tele-cart .cart {
    text-align: right;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.main-nav .inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.search-bar {
    position: relative;
    margin: 12px 0 0;
    border: 1px solid #0054A6;
    border-radius: 20px;
    padding: 8px 10px 5px 10px;
    display: flex;
    justify-content: space-between;
    color: #0054A6;
}
.search-bar form {
    width: 100%;
}
.search-bar input {
    border: none;
    outline: none;
    background: transparent; 
    color: #0054A6;
    width: 96%;
}
.search-bar input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #0054A6;
    font-style: italic;
    opacity: 1; /* Ensures full color in older browsers that might default to lower opacity */
}

.search-bar input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #0054A6;
    font-style: italic;
    opacity: 1;
}

.search-bar input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #0054A6;
    font-style: italic;
    opacity: 1;
}

.search-bar input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #0054A6;
    font-style: italic;
}

.search-bar input::placeholder { /* Most modern browsers */
    color: #0054A6;
    font-style: italic;
    opacity: 1;
}
.search-bar button i {
    color: #0054A6;
}
.search-bar button {
    background: none;
    color: #0054A6;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    padding: 8px;
    border-radius: 0 20px 20px 0;
    top: -2px;
    width: 40px;
    right: 0px;
}

.cart a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
}

.cart i {
    font-size: 24px;
    margin-right: 10px;
}
.ico-map {
    background: url(../images/ico-map.png) no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0 10px;
}

.ico-phone {
    background: url(../images/ico-phone.png) no-repeat;
    width: 20px;
    height: 22px;
    display: inline-block;
}
.ico-shopping-cart {
    background: url(../images/ico-cart.png) no-repeat;
    width: 20px;
    height: 21px;
    display: inline-block;
    margin: 0 6px;
}
/* Navigation Menu Styles */
.main-nav {
    background: #0054A6;
    height: 50px;
}
.company-name {font-weight: bold;font-size: 20px; color: #0054A6;text-shadow: 0 2px #ccc;}
.slogan {font-weight: bold;font-size: 18px; color: #04AE4E;text-align: center;text-shadow: 0 2px #ccc;}
.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.main-menu li {position: relative;}
.main-menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 30px;
    margin-right: 59px;
}
.main-menu li a:hover {color: #04AE4E;}
.main-menu li ul {
    position: absolute;
    top: 50px;
    left: -15px;
    background: #0054A6;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 99;
    width: 300px;
    display: none;
}
.main-menu li:hover ul {
    display: block;
}
.main-menu li ul li  {
    list-style: none;
}
.main-menu li ul li a {
    padding: 5px 15px;
    margin: 0;
    font-size: 13px;
}
.section-header {
    padding: 40px 0 35px;
}

.section-header .category-title {
    color: #0054A6;
    font-size: 24px;
    margin: 0;
    text-align: left;
    font-weight: bold;
}

.section-header .category-sub {
    list-style: none;
    display: flex;
    justify-content: end;
    gap: 15px;
    padding: 0;
    margin: 0;
}
.section-header .category-sub  li a {
    color: black;
}
.section-header p {
    color: #666;
    margin: 0;
}

.view-all {
    color: #0054A6;
    text-decoration: none;
    font-weight: 500;
}

.brand-slider {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brand-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.brand-card:hover {
    transform: translateX(-1px);
}

.brand-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Categories Section */
.home-category.owl-carousel .owl-stage .category-item {
    margin-right: 10px;
}
.home-category.owl-carousel .owl-stage .category-item:first {
    margin-left: 0;
}
.category-brand {
    margin-right: -15px;
}

.category-item a {
    text-decoration: none;
    color: inherit;
}
.product-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.product-card .product-image {
    /*margin: 10px;
    border-bottom: 1px solid #9D9D9D;*/
}
.product-card .stars i {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(../images/ico-star.png) no-repeat;
    margin-left: 2px;
}
.discount-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 10px 0;
    font-size: 12px;
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /*padding: 20px;*/
}

.product-body .title {
    margin: 0 0 5px;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 22px;
    min-height: 45px;
}
.content h4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 22px;
    min-height: 45px;
}
.product-body {
    padding: 5px;
}

.product-info {
    display: flex;
    justify-content: space-between;
}

.product-card .stars {
    color: #ffd700;
    margin: 5px 0;
    display: block;
}

.price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.original-price {
    font-size: 12px;
    font-weight: bold;
    color: #848484;
    text-decoration: line-through;
}
.current-price {
    font-size: 14px;
    font-weight: bold;
    color: #0086CD;
}

.add-to-cart {
    background: transparent;
    outline: none;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: none;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 32px;
    color: #0054A6;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 14px;
}
/* main slider */
.owl-nav {
    position: absolute;
    top: 45%;
    left: 2%;
    z-index: 99;
    width: 96%;
    display: flex;
    justify-content: space-between;
}
.owl-nav i {font-size: 20px;line-height: 40px;}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: rgba(0, 0, 0, 0.7);
    border: none;
    outline: none;
}
/* end main slider */
/* start search-results */
.search-results {background: white;border-radius: 10px;position: absolute; top: 36px; left: 0;margin: 0; padding: 0; list-style: none;z-index: 999;}
.search-results li {list-style: none;}
.search-item {padding: 10px;}
.search-item a {display: grid; grid-template-columns: 60px auto; gap: 10px;}
.search-item .search-item-img { width: 60px;overflow: hidden;}
.search-item .search-item-img img {border: 1px solid #ddd; border-radius: 3px;}
.search-item .title {color: black;text-decoration: none; font-size: 13px;margin: 0;text-align: justify;line-height: 18px;}
/* end search-results */
/* flashsale-section */
.flashsale-section .section-header {
    display: flex;
    justify-content: space-between;
}
.flashsale-section .section-header .category-title {font-weight: bold;color: #F21606;}
.flashsale-section .section-header .title-count-down {display: flex; justify-content: space-between; gap: 30px}
.flashsale-section .section-header .count-down {display: flex; justify-content: space-between;}
.flashsale-section .section-header .sale-more {
    color: #F21606;
    padding: 7px 30px;
    border: 1px solid #F21606;
    display: inline-block;
    font-weight: bold;
}
.flashsale-section .section-header .sale-more:hover {text-decoration: none;}
.flashsale.owl-carousel .owl-stage .category-item {
    margin-left: 10px;
}
.flashsale.owl-carousel .owl-stage {margin-left: -5px;}
.count-down p {color: #F21606; font-weight: bold;line-height: 32px;}
.count-down span {display: inline-block; background: #F21606; color: white; padding: 5px 7px; margin: 0 5px;font-weight: bold;}
/* end flashsale-section */
.home-category .owl-nav {
    /*position: absolute;
    top: -30px;*/
    z-index: 99;
    display: flex;
    justify-content: space-between;
}
.home-category .owl-nav i {font-size: 20px;}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-menu li a {font-size: 16px; margin-right: 6px;}
}

@media (max-width: 600px) {
    .search-bar {
        margin: 8px 0 0;
        width: 100%;
    }

    .main-menu li a {
        text-align: center;
    }
    .main-menu {display: none;}
    .logo-text {padding-top: 0;}
    .logo-wrap .inner {
        flex-direction: column;
    }
    .logo-wrap .logo { text-align: center;}
    .section-header .category-sub {
        flex-direction: column;
        display: none;
    }
    .section-header {
        padding: 40px 0;
    }
    .search-bar form {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
}

/* Support Section */
.support-section {
    margin-top: 70px;
}
.support-section .inner {
    background: #04AE4E;
    padding: 20px 0;
    text-align: center;
}
.support-section .container {
    position: relative;
}
.support-section .consultant {
    position: absolute;
    left: 50px;
    top: -55px;
    width: 80px;
    height: auto;
}

.support-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: white;
}
.support-content p strong {
    font-size: 18px;
}
.support-btn {
    padding: 10px 20px;
    background: white;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer Styles */
.site-footer {
    background: #0054A6;
    padding: 50px 0 20px;
    color: white;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #04AE4E;;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-direction: column;
}

.social-link {
    color: white;
    text-decoration: none;
}

.qr-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.qr-container img {
    max-width: 100px;
    height: auto;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-buttons img {
    max-width: 120px;
    height: auto;
}

.payment-methods {
    text-align: center;
}
.guarantee {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

.logo-wrap .company-name,
.company-info .phone-wrap,
.company-info .address {
    margin-bottom: 10px;
}
.logo-wrap p {
    margin-bottom: 0;
}
.company-info .phone-wrap span,
.company-info .address span {
    color:#0054A6;
}
.company-info .cart {
    color: #F21606;
}
.payment-wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}
.payment-methods h3 {
    font-size: 16px;
    text-align: left;
}
.contact-info li {
    display: flex;
    flex-direction: column;
}

.site-footer .company-info {
    border-top: 1px solid #848484;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

#hamburger {display: none;}
#hamburger i {
    font-size: 24px;
    color: white;
    cursor: pointer;
}
#menu {display: none; z-index: 9999;}

/* Hot Brands Section */
.hot-brands {background: white;padding-bottom: 40px;}
.hot-brands .section-title { color: #0054A6; font-weight: bold; font-size: 24px; }
.hot-brands .section-desc { display: flex; justify-content: space-between; }
.hot-brands .section-desc p { color: #848484; }
.brand-slider .owl-nav {
    /*position: absolute;
    top: -30px;*/
    z-index: 99;
    display: flex;
    justify-content: space-between;
}
.brand-slider .owl-nav i {font-size: 20px;}
.hot-brands .brand-card { padding: 0 7px; }

/* Responsive Styles */
/* News Styles */
/* .news-section .owl-stage { display: flex; gap: 50px;} */
.news-section .section-header {padding: 30px 0 25px;text-align: center;}
.news-section .section-header .news-title { color: #0054A6; font-size: 24px; margin-bottom: 15px;}
.news-section .section-desc p { color: #848484; }
.news-section .section-header ul { margin: 0; padding: 0; list-style-type: none;;}
.news-card { border: 1px solid #9D9D9D; width: 230px;}
.news-card .news-body { padding: 10px; }
.news-card .news-cate { color: #0054A6; text-transform: uppercase;}
.news-card .news-card-title {
    color: black;
    margin: 0 0 5px;
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 22px;}
.news-card .news-cate:hover,
.news-card .news-card-title:hover { color: #04AE4E; text-decoration: none;}
.view-more { margin: 0; padding: 0; text-align: right;}
.view-more a {display: inline-block;padding: 5px 20px; background: #0054A6; color: white; text-decoration: none; text-transform: uppercase; border-radius: 4px; font-weight: bold;}
/* End News Styles */
.quantity-wrap {
    height: 32px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    justify-items: center;
    border: 1px solid #c1c8d1;
    border-radius: 34px;
    margin: 2px 4px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.quantity-wrap .mark-a {
    position: relative;
    width: 35px;
    padding: 0 3px 0 4px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.quantity-wrap input {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    -ms-appearance: textfield;
    appearance: textfield;
    outline: none;
    height: inherit;
    width: 40px;
    border: 1px solid #c1c8d1;
    padding: 0px 3px;
    text-align: center;
}
.quantity-wrap input::-webkit-outer-spin-button,
.quantity-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-wrap .mark-a[disabled] svg path {stroke:#c1c8d1;}
.quantity-wrap .mark-c {
    position: relative;
    width: 35px;
    padding: 0 3px 0 4px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.btn-order-now {margin: 15px 0;}

.user-mobile {
    display: none;
}

.btn-user {
    border-radius: 20px;
    background-color: white;
    color: #0054A6 !important;
    padding: 5px 20px !important;
    text-transform: inherit !important;
    margin-right: 0 !important;
    margin-top: 5px;
    text-align: center;
}

.owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
}

.owl-dots .owl-dot {
    width: 10px !important;
    height: 10px !important;
    background-color: gray !important;
    border-radius: 20px !important;
    margin-right: 10px !important;
}

.owl-dots .owl-dot.active {
    width: 10px !important;
    height: 10px !important;
    background-color: white !important;
    border-radius: 20px !important;
}

.custom_pagination{
  display: flex;
  list-style: none;
  border-radius: 0.25rem;
  padding: 10px;
}
.custom_pagination li{
  padding: 10px 15px;
  border: 1px solid #ddd;
  margin: 0 2px;
}
.custom_pagination li.active{
  background-color: #6fa64b;
  
}
.custom_pagination li.active a{
  color: #fff;
}
.tab-content>.tab-pane {padding-top: 20px;}
/*start images products*/
.detail-gallery {position:relative}
.gallery-control {width: 78px; float: left;}
.gallery-control a {width:76px;height:76px;display:inline-block;margin-right:10px; margin-bottom: 5px; overflow: hidden; border: 1px solid #ddd; padding: 1px; border-radius: 3px;}
.gallery-control a img {border-radius: 3px;overflow: hidden;}

.popup-gallery { margin-left: 95px; }
.no-click {pointer-events: none;}
.overlay {position: absolute;top: 0;bottom: 0;left: 0;right: 0;height: 100%;background-color: rgba(0,0,0,0.58);transition: transform .3s, opacity .6s;pointer-events: none;}
header .overlay {z-index: 1;}
/*end images products*/

/* Scroll Top */
.scrollToTop {
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: bold;
  color: #444;
  text-decoration: none;
  position: fixed;
  bottom: 65px;
  right: 25px;
  display: none;
  z-index: 10;
  cursor: pointer;
}

/* Text Hide */
.text-split {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}

/* Transition All */
.transition,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover > ul,
.scale-img img,
.scale-img:hover > img,
.btn-frame .kenit-alo-circle-fill,
.support-online .kenit-alo-circle-fill {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

/* Scale IMG */
.scale-img {
  overflow: hidden;
  display: block;
}

.scale-img img {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.scale-img:hover > img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
  -webkit-animation-name: blink;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: blink;
  -moz-animation-duration: 1s;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: infinite;
  animation-name: blink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Button Frame */
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}

.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #006ECD;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}

.btn-frame .animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: #006ECD;
  opacity: 0.5;
}

.btn-frame .zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.btn-frame .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}

.btn-frame .pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

/* Zalo */
.btn-zalo {
  bottom: 315px;
}

/* Phone */
.btn-phone {
  bottom: 230px;
}

.mm-listview li a {
    text-transform: uppercase;
}
.name {
    text-transform: uppercase;
}

.p-name {
    font-size: 22px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-header {
        text-align: center;
        padding-bottom: 10px;
    }
    .user-mobile {
        display: block;
        padding-top: 14px;
    }
    .btn-user {
        padding: 10px 20px !important;
    }

    .user-dropdown {
        line-height: 20px !important;
        margin-top: -14px;
    }

    .scrollToTop {
      bottom: 5px;
      right: 10px;
    }

    .btn-zalo {
      bottom: 150px;
    }

    .btn-phone {
      bottom: 80px;
    }

    .btn-frame {
      width: 30px;
      height: 30px;
      right: 25px;
    }

    .btn-frame .kenit-alo-circle {
        width: 60px;
        height: 60px;
        top: -5px;
        right: -25px;
    }

    .btn-frame .kenit-alo-circle-fill {
      width: 60px;
      height: 60px;
      top: -5px;
      right: -25px;
    }
}

@media (max-width: 768px) {
    .main-header {
        text-align: center;
        padding-bottom: 10px;
    }
    .user-mobile {
        display: block;
        padding-top: 14px;
    }
    .btn-user {
        padding: 10px 20px !important;
    }
    .newsletter-app .container {
        flex-direction: column;
    }

    .user-dropdown {
        line-height: 20px !important;
        margin-top: -14px;
    }

    .support-content {
        flex-direction: column;
    }

    .payment-icons {
        flex-wrap: wrap;
    }
}

@media (max-width: 1024px) {
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .qr-container {
        flex-direction: column;
    }

    .brand-slider {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 20px;
    }
    .site-footer .company-info {
        flex-direction: column;
    }
    .company-license {
        padding: 0
    }
    .category-brand {display: none;}
    .main-menu {display: none;}
    #menu {display: block;}
    #hamburger {display: block; padding-top: 10px;}
    .news-card { width: 100%;}
    .hot-brands .section-desc { flex-direction: column; }
    .support-section {margin-top: 140px;}
    .support-section .consultant {top: -137px;}
    .news-section .section-desc { flex-direction: column; }
    .logo-wrap .company-name {text-align: center;}
}