/* // */
.popup-notification {
    position: fixed;
    top: 30px;
    right: 50px;

    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 290px;
    max-width: 570px;

    padding: 12px 16px;

    border-radius: 12px;
    background: #fff;

    font-size: 18px;
    font-weight: 500;
    color: #333;

    box-shadow: 0 8px 25px rgba(0,0,0,0.1);

    opacity: 0;
    transform: translateX(-30px);
    visibility: hidden;

    transition: all 0.3s ease;
    z-index: 9999;
}

/* Hiện */
.popup-notification.show {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

/* ICON */
.popup-notification__icon {
    width: 30px;
    height: 30px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    flex-shrink: 0;
}

/* Success */
.popup-notification.success {
    border-left: 4px solid #28a745;
}

.popup-notification.success .popup-notification__icon {
    background: #e9f9ee;
    color: #28a745;
}

/* Error */
.popup-notification.error {
    border-left: 4px solid #dc3545;
}

.popup-notification.error .popup-notification__icon {
    background: #fdeaea;
    color: #dc3545;
}

/* Text */
.popup-notification__content {
    flex: 1;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
    .popup-notification {
        left: 10px;
        right: 10px;
        max-width: unset;
        width: auto;
    }
}
/* // */
/* Wrapper */
.lang-select {
    position: relative;
    display: inline-block;
}

/* Button */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 6px 12px;
    border-radius: 30px;

    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Flag */
.flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dropdown */
.lang-dropdown {
    position: absolute;
    top: 110%;
    right: 0;
    width: 150px;

    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);

    list-style: none;
    padding: 6px 0;
    margin: 0;

    display: none;
    z-index: 9999;
}

/* Show */
.lang-dropdown.show {
    display: block;
}

/* Item */
.lang-dropdown li button {
    width: 100%;
    border: none;
    background: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

/* Hover */
.lang-dropdown li button:hover {
    background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
    .lang-btn {
        font-size: 16px;
        padding: 8px 14px;
    }

    .flag {
        width: 22px;
        height: 22px;
    }
}
/* Desktop giữ nguyên, chỉ chỉnh mobile */
@media (max-width: 768px) {

    /* Cho header không bị vỡ layout */
    .header_account_area {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Lang nằm cùng hàng icon */
    .header_lang {
        display: flex;
        align-items: center;
        margin-left: 5px;
    }

    /* Button gọn lại */
    .lang-btn {
        padding: 5px 8px;
        font-size: 13px;
        border-radius: 20px;
        gap: 5px;
    }

    /* Flag nhỏ hơn */
    .flag {
        width: 18px;
        height: 18px;
    }

    /* Ẩn text nếu muốn gọn hơn */
    .lang-btn span {
        display: none;
    }

    /* Dropdown fix không bị lệch */
    .lang-dropdown {
        right: 0;
        left: auto;
        min-width: 140px;
        border-radius: 10px;
    }

    /* Item dễ bấm hơn */
    .lang-dropdown li button {
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Tránh bị che bởi header */
    .lang-dropdown {
        z-index: 99999;
    }
}
/* Chỉ hiển thị trên mobile */
.mobile-topbar {
    display: none;
}

@media (max-width: 991px) {
    .mobile-topbar {
        position: fixed;
        top: -70px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 9999;
        padding: 8px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        /* border-radius: 0 0 20px 20px; */
        transition: top 0.3s ease;
        display: block;
    }

    .mobile-topbar.show {
        top: 0; /* Hiện thanh khi scroll xuống */
    }

    .topbar-scroll {
        display: flex;
        gap: 45px;
        overflow-x: auto;
        padding: 0 12px;
        scroll-snap-type: x mandatory;
    }

    .topbar-scroll::-webkit-scrollbar {
        display: none;
    }

    .topbar-scroll a {
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
        font-size: 16px;
        color: #333;
        scroll-snap-align: center;
    }

    .topbar-scroll img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
}


/* // */
.lnrcss{
    color: #fafafa;
}
.lnrcss:hover{
    color: #e09292;
}
/* Thanh phía trên */
.top-bar {
width: 100%;
background: #e81212;
/* màu xanh giống hình */
color: #fff;
padding: 6px 0;
overflow: hidden;
position: relative;
}

/* Vùng chứa chữ chạy */
.marquee {
white-space: nowrap;
overflow: hidden;
position: relative;
}

/* Dòng chữ */
.marquee span {
display: inline-block;
padding-left: 100%;
/* để chữ bắt đầu từ bên phải */
animation: marquee 12s linear infinite;
font-weight: bold;
font-size: 15px;
}

/* Hiệu ứng chạy */
@keyframes marquee {
0% {
transform: translateX(0);
}

100% {
transform: translateX(-100%);
}
}


/* // */

.single_brand {
    text-align: center;
}

.single_brand img {
    width: 100%;
    max-width: 120px;
    /* tùy chỉnh */
    display: block;
    margin: 0 auto;
}

.single_brand .brand-name {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    /* nếu muốn chữ in hoa */
}

/* KHUNG BAO BỌC CAROUSEL */
.brand_container {
    position: relative;
    padding: 0 50px;
    /* chừa khoảng cho mũi tên */
}

/* MŨI TÊN TRÁI – PHẢI */
.brand_container::before,
.brand_container::after {
    content: ">";
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: bold;
    color: #ccc;
    background: #e81212;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Mũi tên trái */
.brand_container::before {
    content: "<";
    left: 10px;
}

/* Mũi tên phải */
.brand_container::after {
    right: 10px;
}
/* // */
    

.banner-box img {
width: 100%;
height: 470px;
border-radius: 16px;
object-fit: cover;
}
@media (max-width: 480px) {
    .banner-box img {
        width: 100%;
        height: 300px;
        border-radius: 16px;
        object-fit: cover;
    }
}

/* SERVICE BOX */
.service-box {
display: flex;
align-items: center;
gap: 15px;
background: #fff;
padding: 25px;
border-radius: 14px;
margin-bottom: 15px;
box-shadow: 0 15px 10px rgba(0, 0, 0, 0.08);
}

.service-box .icon {
width: 40px;
height: 40px;
}

.service-box h5 {
margin: 0;
font-size: 16px;
font-weight: 600;
}

.service-box p {
margin: 0;
font-size: 13px;
color: #555;
}
/* /// */
/* WRAPPER */
.category-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
    margin: 0 auto;
}

/* STICKY TRÊN MOBILE */
@media (max-width: 768px) {
    .category-wrapper {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 100;
        padding-bottom: 5px;
        border-bottom: 1px solid #eee;
    }
}

/* CONTAINER */
.category-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 12px 4px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.category-container::-webkit-scrollbar {
    display: none;
}

/* ITEM */
.category-item {
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,.06);
    transition: .25s ease;
    text-decoration: none;
    color: #000;
    scroll-snap-align: center;
}

.category-item:hover {
    transform: translateY(-6px);
    color: #c81b1b;
}

/* IMG */
.category-item img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

/* TEXT */
.category-item span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* ACTIVE */
.category-item.active {
    background: #ffe2e2;
    border: 1px solid #ff9c9c;
}

.category-item.active span {
    color: #c90000;
}

/* ARROW */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #cf1f1f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    z-index: 20;
}

.arrow:hover {
    background: #e98989;
}

.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

/* HIDDEN ARROW TRÊN MOBILE */
@media (max-width: 768px) {
    .arrow {
        display: none;
    }
    .category-item {
        width: 120px;
    }
    .category-item img {
        height: 110px;
    }
}
/* // */


.optioncart {
    border: 2px solid #ddd;
    border-radius: 12px;
    margin-bottom: 15px;
    padding: 15px;
    transition: 0.3s;
}

.optioncart-header {
    display: flex;
    gap: 12px;
    cursor: pointer;
}

.optioncart input[type="radio"] {
    width: 22px;
    height: 22px;
}

.optioncart h3 {
    margin: 0;
    color: #e85a0c;
}

.optioncart p {
    margin: 3px 0;
    color: #555;
}

/* Mặc định ẩn nội dung */
.optioncart-content {
    display: none;
    padding-top: 12px;
}

.optioncart.active {
    border-color: #32c36c;
    background: #f9fff9;
}

.date-input {
      position: relative;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    padding: 12px 14px;

    border: 1px solid #ccc;
    border-radius: 10px;

    font-size: 16px;
    background-color: #f8f8f8;

    -webkit-appearance: none;
    appearance: none;
}
/* Ngăn overflow khi được đặt trong khung bo góc */
.optioncart-content .date-input {
    max-width: 100%;
    overflow: hidden;
}



.date-input input {
  width: 100%;
  padding: 12px 40px 12px 14px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f5f5f5;
  outline: none;
  transition: 0.3s;
}

.date-input input:focus {
  border-color: #4CAF50;
  background: #fff;
}

.calendar-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Mobile */
@media (max-width: 600px) {
  .date-input input {
    font-size: 14px;
    padding: 10px 36px 10px 12px;
  }
}


.note {
    font-size: 14px;
    color: #555;
}
/* // */
.shipping-form {
    width: 100%;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shipping-form .row {
    display: flex;
    gap: 15px;
}

.shipping-form .row.full {
    flex-direction: column;
}

.shipping-form .col {
    flex: 1;
}

.shipping-form input,
.shipping-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.shipping-form input:focus,
.shipping-form select:focus {
    outline: none;
    border-color: #333;
}

.shipping-form .checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    cursor: pointer;
}

.shipping-form .company {
    margin-top: -5px;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .shipping-form .row {
        flex-direction: column;
    }
}
/* Checkbox line */
.shipping-form .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    cursor: pointer;
    padding: 6px 0;
    user-select: none;
}

/* Tùy chỉnh checkbox mặc định (cho đẹp hơn) */
.shipping-form .checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #333;   /* màu dấu check */
    cursor: pointer;
}

/* Khoảng cách dưới checkbox để tách ra đẹp */
.shipping-form .company {
    margin-top: 4px;
}
/* // */
/* HEADER */
.why-header {
  background: rgba(207, 31, 31, 0.08);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin: 40px 0;
}

.why-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.why-header .sub {
  margin-top: 10px;
  font-size: 18px;
}

.why-header span {
  color: #cf1f1f;
  font-weight: 600;
}

.why-header .desc {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.card {
  background: rgba(243, 81, 81, 0.1);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(243, 81, 81, 0.1);
}

.icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
  color: #555;
}

/* SERVICE */
.service {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(243, 81, 81, 0.1);
  padding: 30px;
  border-radius: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.service-text {
  flex: 1;
}

.service-text h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.tags span {
  display: inline-block;
  background: #cf1f1f;
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  margin-right: 10px;
}

/* IMAGE */
.service-img {
  flex: 1;
}

.service-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service {
    flex-direction: column;
  }
}
/* // */
/* Desktop ≥1200px: 5 sản phẩm */
@media (min-width: 1200px) {
    .col-lg-2-4 {
        width: 16.6666%;   /* 100% / 6 */
        flex: 0 0 16.6666%;
        max-width: 16.6666%;
    }
}

/* Tablet ≥768px và <1200px: 3 sản phẩm */
@media (min-width: 768px) and (max-width: 1199px) {
    .col-lg-2-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

/* Mobile <768px: 2 sản phẩm */
@media (max-width: 767px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
/* // */
/* BADGE */
.countdown-tag {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* transform: translate(-8px, -12px); */
    background: linear-gradient(90deg, #ff3b30, #ff7a00);
    border: 2px solid #f4c542;
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

/* layout bên trong */
.countdown-inner {
    display: flex;
    /* flex-direction: column; */
    line-height: 1.1;
}

/* dòng trên */
.countdown-label {
    /* display: flex; */
    margin-right: 12px;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    color: #ffd54f;
    font-weight: 600;
}

/* icon */
.countdown-label .icon {
    font-size: 10px;
    margin-top: 5px;
}

/* dòng dưới (time) */
.countdown-tag .time {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}
@media (max-width: 480px) {
    .countdown-tag {
        /* transform: translate(-5px, -8px); */
        padding: 4px 10px;
    }

    .countdown-label {
        font-size: 9px;
    }

    .countdown-tag .time {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .countdown-tag {
        /* transform: translate(-4px, -6px); */
        padding: 3px 8px;
    }
}
/* /// */

    .gallery .main-image {
        width: 70%;
        margin: 0 auto;
        /* căn giữa */
        border-radius: 12px;
        overflow: hidden;
        cursor: zoom-in;
    }

    .gallery .main-image img {
        width: 100%;
        display: block;
        transition: transform 0.3s ease;
    }

    .gallery .main-image:hover img {
        transform: scale(1.05);
    }

    /* thumbnails */
    .gallery .thumbnails {
        display: flex;
        gap: 12px;
        margin-top: 15px;
        margin-bottom: 15px;
        overflow-x: auto;
    }

    .gallery .thumbnails img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: 0.25s;
        flex-shrink: 0;
    }

    .gallery .thumbnails img:hover {
        transform: scale(1.08);
        border-color: #4CAF50;
    }

    .gallery .thumbnails img.active {
        border-color: #4CAF50;
    }

    @media (max-width: 768px) {
        .gallery .main-image {
            width: 80%;
        }
    }
/* /// */
/* Ẩn dưới desktop */
.mobile-nav {
    display: none;
}

@media (max-width: 986px) {

    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 62px;
        background: #cf1f1f;
        justify-content: space-around;
        align-items: center;
        z-index: 9999;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .nav-item {
        position: relative;
        color: #fff;
        font-size: 22px;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 55px;
        height: 55px;
    }

    /* Home nổi lên như hình */
    .nav-item.active {
        background: #fff;
        color: #cf1f1f;
        border-radius: 50%;
        transform: translateY(-15px);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    }

    /* Badge giỏ hàng */
    .badge {
        position: absolute;
        top: 2px;
        right: 8px;
        background: #ff9800;
        color: #fff;
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 50%;
    }

    /* Search box popup */
    .search-box {
        position: fixed;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%) scale(0.8);
        width: 90%;
        background: #fff;
        padding: 12px 18px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 99999;
    }

    .search-box input {
        width: 100%;
        border: none;
        outline: none;
        font-size: 16px;
    }

    /* Hiện search */
    .search-box.show {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) scale(1);
    }

    /* chống nội dung bị đè */
    body {
        padding-bottom: 70px;
    }
}
/* // */
.input-error {
    border: 1px solid red !important;
}

/* // */
.product-info-box{
    max-width: 500px;
    font-family: Arial, sans-serif;
}

.info-item{
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.info-icon{
    width: 34px;
    font-size: 28px;
    color: #222;
    text-align: center;
    margin-top: 2px;
}

.info-content{
    flex: 1;
}

.viewing-text{
    margin: 0;
    font-size: 16px;
    color: #333;
}

.title-row{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.title-row h4{
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.info-content p{
    margin: 0 0 4px;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.info-btn{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c9c9c9;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
}

.info-content a{
    color: #666;
    text-decoration: none;
}

.view-more{
    color: #ff5a4e !important;
}
.popup{
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;

    background: rgba(0,0,0,0.6);

    /* căn giữa chuẩn responsive */
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.popup.active{
    opacity: 1;
    visibility: visible;
}

.popup-content{
    position: relative;

    width: 90%;
    max-width: 650px;

    background: #fff;
    border-radius: 18px;

    padding: 35px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.2);

    animation: popupShow 0.3s ease;
}

.popup-content h2{
    font-size: 30px;
    margin-bottom: 20px;
    color: #111;
}

.popup-content p{
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.close-popup{
    position: absolute;
    top: 15px;
    right: 20px;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;
    color: #222;

    transition: 0.2s;
}

.close-popup:hover{
    transform: scale(1.1);
    color: red;
}

@keyframes popupShow{
    from{
        transform: scale(0.9);
        opacity: 0;
    }
    to{
        transform: scale(1);
        opacity: 1;
    }
}

/* MOBILE */
@media(max-width:768px){

    .popup-content{
        width: calc(100% - 30px);
        padding: 25px;
        border-radius: 14px;
    }

    .popup-content h2{
        font-size: 24px;
    }

    .popup-content p{
        font-size: 15px;
        line-height: 1.7;
    }

    .close-popup{
        font-size: 28px;
        top: 12px;
        right: 15px;
    }
}

.empty-result {
    text-align: center;
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon img {
    width: 100px;
    height: 100px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.empty-result h2 {
    font-size: 22px;
    font-weight: 700;
    color: black;
    margin-bottom: 10px;
}

.empty-result p {
    font-size: 16px;
    color: #777;
    margin-bottom: 25px;
}

.btn-view {
    display: inline-block;
    background: #cf1f1f; /* Màu xanh giống hình */
    padding: 12px 22px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-view:hover {
    background: black;
    color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
    .empty-result h2 {
        font-size: 20px;
    }
    .empty-result p {
        font-size: 14px;
    }
    .empty-icon img {
        width: 80px;
        height: 80px;
    }
}