a.reset_variations {
    display: none;
}

/* CSS cho mục MÙI HƯƠNH */
.accord-bar {
    padding: 2px 0px 2px 0px; /* Thụt vào cả bốn phía */
    text-align: center;
    font-weight: 600;
    border-radius: 0px 2px 5px 0px; /* Bo tròn góc (nếu muốn) */
    width: 0; /* Bắt đầu từ 0 */
    transition: width 1s ease-out, transform 0.3s, box-shadow 0.3s,
        font-weight 0.3s; /* Hiệu ứng giãn dần ra và thêm hiệu ứng phóng to */
}

.accord-bar.expanded {
    transform: scale(1.05); /* Phóng to thanh */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Đổ bóng */
    font-weight: bold; /* In đậm chữ */
}


/* CSS cho mục NỘI DUNG CHÍNH CỦA SẢN PHẨM */
.article-inner {
    max-width: 600px; /* Độ rộng tối đa */
    margin: 0 auto; /* Canh giữa cột */
    font-family: Arial, Helvetica, sans-serif; /* Font cho văn bản */
}

@media (max-width: 1024px) {
    .article-inner {
        max-width: 100%; /* Đảm bảo độ rộng tối đa khi màn hình nhỏ hơn 1024px */
    }
}

/* CSS cho mục PRODUCT META */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
    line-height: 2em;
    font-size: 100%;
}

.info-row {
    display: flex;
    justify-content: start;
	flex-wrap: wrap;
    align-items: center;
}

.info-row strong {
    flex-basis: 30%; /* Tỷ lệ của cột đầu */
    max-width: 110px;
}

.info-row span {
    flex-basis: 70%; /* Tỷ lệ của cột thứ hai */
}

svg.barcode {
    margin-left: -20px;
    margin-top: -5px;
}

/* CSS cho mục THUỘC TÍNH NẰM TRONG MÔ TẢ */
.custom-attributes {
    margin-bottom: 20px;
}

.custom-attributes p {
    margin: 5px 0;
    display: flex;
    align-items: top;
    flex-wrap: wrap;
}

.custom-attributes strong {
    width: 200px; /* Độ rộng của cột label trên PC */
    font-weight: bold;
    padding-right: 10px; /* Khoảng cách giữa label và content */
    box-sizing: border-box;
    flex-shrink: 0; /* Đảm bảo cột label không bị co lại */
}

.custom-attributes span {
    flex: 1; /* Để cột content chiếm phần còn lại */
    word-break: break-word; /* Đảm bảo content không tràn ra ngoài */
}

/* CSS cho thiết bị di động */
@media (max-width: 768px) {
    .custom-attributes strong {
        width: 35%; /* Độ rộng của cột label trên mobile */
        font-size: 90%;
    }

    .custom-attributes span {
        width: 670%; /* Độ rộng của cột content trên mobile */
        font-size: 90%;
    }
}

/* CSS cho viết hoa in đâm phần thương hiệu trong trang Danh mục */
.brand-attribute {
    font-weight: 600;
    text-transform: uppercase;
}

/* CSS xác định Font phần Mô tả sản phẩm */
.product-detail-info * {
    font-family: Roboto, Helvetica, sans-serif !important;
}


/* CSS cho FAQs */
.faq-section {
    width: 100%;
    max-width: 650px;
    margin-top: 30px;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    padding: 12px 20px 10px 20px;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    margin-top: 10px;
    position: relative; /* Để đặt dấu + và - */
}

.faq-question::after {
    content: "+"; /* Hiển thị dấu + mặc định */
    position: absolute;
    right: 10px;
    font-size: 18px;
}

.faq-question.active::after {
    content: "-"; /* Khi được click, đổi thành dấu - */
}

.faq-answer {
    display: none;
    padding: 12px 20px 10px 20px;
    border: 0px solid #bdbdbd;
    background-image: radial-gradient(73% 147%, #eadfdf 59%, #ece2df 100%),
        radial-gradient(
            91% 146%,
            rgba(255, 255, 255, 0.5) 47%,
            rgba(0, 0, 0, 0.5) 100%
        );
    background-blend-mode: screen;
    margin-top: 10px;
    border-radius: 8px;
}


/* CSS các tầng hương */
.fragrance-notes {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.notes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 2em;
}
.fragrance-term {
    font-size: 85%;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    width: 20%;
    position: relative;
    cursor: pointer;
}
.fragrance-notes h3 {
    font-size: 1.2em; /* Tăng kích thước chữ */
    color: brown;
    background-image: linear-gradient(to right, #ffc3a0 0%, #ffafbd 100%);
    padding: 5px 10px;
    display: inline-block; /* Để nền chỉ áp dụng cho nội dung của tiêu đề */
    border-radius: 5px; /* Bo góc cho nền */
}

.fragrance-term .fragrance-image {
    width: 68px;
    height: 68px;
    display: block;
    margin: 0 auto;
}
.fragrance-term .fragrance-name {
    display: block;
    margin-top: 5px;
}


/* CSS thời điểm sử dụng */
.fragrance-attributes {
    display: flex;
    flex-direction: column;
    gap: 20px;
	border: solid 1px #00000010;
    border-radius: 10px;
    padding: 15px 10px;
}

.season-row,
.other-attributes {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.season-item,
.time-item,
.attribute-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
    font-size: 80%;
	font-weight: 500;
	color: #505050;
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #ccc;
}

.value-bar {
    width: 90%;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    margin-top: 5px;
    position: relative;
}

.value-fill {
    height: 100%;
    border-radius: 4px;
	border: solid 1px #00000020;
}

.attribute-value {
    font-weight: bold;
    margin-top: -2px;
    text-align: center;
}


/* CSS Ẩn nút số lượng ở Thêm giỏ hàng */
.single_variation_wrap .quantity {
    display: none !important;
}

/* CSS for desktop NÚT THÊM GIỎ HÀNG & MUA NGAY */
.woocommerce-variation-add-to-cart .single_add_to_cart_button {
    font-weight: 600;
    width: 35%;
    height: 40px;
    background-color: #fff !important;
    color: #333;
    border: 1px solid #e60023;
    border-radius: 5px; /* Bo viền 5px */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
    float: left;
    line-height: 40px; /* Canh giữa chữ theo chiều dọc */
}

.woocommerce-variation-add-to-cart .ux-buy-now-button {
    font-weight: 600;
    width: 60%;
    height: 40px;
    background-color: #e60023 !important; /* Nền đỏ */
    color: white; /* Chữ trắng */
    border: none; /* Không viền */
    border-radius: 3px; /* Bo viền 5px */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
    float: left;
    line-height: 40px; /* Canh giữa chữ theo chiều dọc */
}

/* CSS nút Thêm giỏ hàng & Mua ngay for mobile */
@media (max-width: 768px) {
    .woocommerce-variation-add-to-cart .single_add_to_cart_button,
    .woocommerce-variation-add-to-cart .ux-buy-now-button {
        height: 40px;
        float: none;
        display: inline-block;
        vertical-align: top;
    }

    .woocommerce-variation-add-to-cart .single_add_to_cart_button {
        width: 35%;
        font-size: 12px;
        font-weight: 600;
    }

    .woocommerce-variation-add-to-cart .ux-buy-now-button {
        width: 60%;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
    }
}

/* Ẩn giá trong trang sản phẩm */
.woocommerce-variation-price {
    display: none;
}
.woocommerce-variation-description,
.woocommerce-variation-price {
    display: none;
}

del span.amount {
    font-size: 85%;
}

.product-price-container del {
    display: none !important;
}

span.price::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(/assets/images/shopee-voucher.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1px;
    vertical-align: middle;
}


/* Chỉnh độ rộng của phần biến thể sản phẩm  */
@media (min-width: 769px) {
    .isures-ivp--attribute_wrap {
        width: 80% !important;
    }
}

/* Ẩn giá của biến thể sản phẩm chính */
.isures-ivp--attribute_wrap.isures-ivp--related_wrap .amount * {
    display: none;
}

/* Chỉnh vị trí nút check ô chọn biến thể */
.isures-ivp--attr_item svg {
	display: none !important;
    top: 35% !important;
    right: 10px !important;
}
.isures-ivp--attr_item {
    border-radius: 4px !important;
}

/* Tên của biến thể viết hoa hết */
.isures-ivp--option > * {
    text-transform: uppercase !important;
}

.isures-ivp--option_name {
	margin-top: 3px !important;
    margin-bottom: 3px !important;
}

/* Chỉnh nhỏ dòng chữ Bạn đang xem */
.isures-ivp--current_wrap {
    font-size: 0.95em;
}

.isures-ivp--option--info .price {
    display: none !important;
}

/* Chỉnh giãn cách mô tả ngắn của sản phẩm */
.product-short-description > p:last-of-type {
    margin-bottom: 0;
}

@media only screen and (min-width: 769px) {
    form#check-member-form {
        max-width: 80%;
    }

    .wapf-field-input {
        max-width: 80%;
    }

    .wapf-field-label {
        max-width: 80%;
    }

    .wapf-field-description {
        max-width: 80%;
    }
}

/* CSS xác định Font phần Mô tả sản phẩm */
.product-detail-info * {
    font-family: Roboto, Helvetica, sans-serif !important;
}

/* Đảm bảo phần tử chứa có vị trí tương đối */
.wapf-field-container {
    padding: 0px !important;
    position: relative;
    max-width: 100%; /* Chiều rộng tối đa của phần tử chứa */
}

.wapf-field-container .wapf-swatch--image {
    width: 100%;
    height: 70px;
}

.wapf-image-swatch-wrapper {
    grid-gap: 0px !important;
}

/* Ẩn nội dung văn bản của label */
.wapf-field-label {
    position: relative;
    width: 100%; /* Đảm bảo label chiếm toàn bộ chiều rộng của phần tử chứa */
    height: auto; /* Chiều cao tự động điều chỉnh theo kích thước hình ảnh */
    margin: 0; /* Loại bỏ khoảng cách nếu có */
    padding: 0; /* Loại bỏ padding nếu có */
    text-align: center; /* Căn giữa nội dung hình ảnh */
}

/* Thay thế nội dung của label bằng hình ảnh */
.wapf-field-label::before {
    content: "";
    display: block;
    width: 100%; /* Chiều rộng của hình ảnh bằng chiều rộng của label */
    min-height: 70px; /* Chiều cao của hình ảnh, điều chỉnh theo nhu cầu */
    background-image: url("/wp-content/uploads/2024/07/header-qua-tang-20-nam-thanh-lap-orchard.webp");
    background-size: cover; /* Đảm bảo hình ảnh bao phủ toàn bộ chiều rộng của label */
    background-position: center;
    background-repeat: no-repeat;
}

/* Đảm bảo input nằm dưới hình ảnh */
.wapf-field-input {
    font-family: Roboto, Helvetica, sans-serif !important;
    border: 1px solid #ee3e8d;
    position: relative;
    z-index: 0; /* Đảm bảo phần tử input nằm dưới hình ảnh */
    margin-top: 0px; /* Khoảng cách giữa hình ảnh và input */
}

/* Loại bỏ khoảng cách dưới label khi có lớp .label-above */
.label-above .wapf-field-label {
    margin-bottom: 0px !important;
}

/* Ẩn nội dung văn bản của label trong .wapf-field-label */
.wapf-field-label label {
    display: none;
}

/* Thiết lập cho các phần tử swatch */
.wapf-swatch-wrapper {
    display: flex;
    align-items: center;
}

.wapf-swatch {
    display: flex;
    align-items: center;
    width: 100%;
}

.wapf-swatch img {
    width: 20%;
    object-fit: contain;
    padding: 10px;
}

.wapf-swatch-label {
    width: 80% !important;
    padding-left: 20px !important; /* Tùy chỉnh khoảng cách giữa hình ảnh và label */
    text-align: left !important;
    font-size: 0.9em;
}

/* Thay đổi kiểu của swatch khi được chọn */
.wapf-swatch--image.wapf-checked {
    border: none;
    background-color: #fecfef;
}

/* Padding cho mô tả của trường */
.wapf-field-description {
    padding: 10px 0 0 0;
    margin-bottom: 10px !important;
}

/* Điều chỉnh margin cho wrapper */
.wapf-wrapper {
    margin: 0 0 0px 0px !important;
}

/* Thiết lập kiểu cho các phần tử liên quan đến FUNDIIN */
.fundiin-promotion__panel {
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
    font-size: 85% !important;
    line-height: 1.2em !important;
    width: inherit !important;
    max-width: inherit !important;
    height: 45px;
    margin-top: 5px;
    padding: 3px 8px;
    background: linear-gradient(to right, #06DECD, #744DEF);
    color: #fff;
    font-family: Roboto;
    border-radius: 5px;
    font-weight: 500;
}

.fundiin_promotion__panel-inner {
    display: flex;
    align-items: center; /* Căn giữa các thành phần bên trong theo chiều dọc */
}

.fundiin_promotion__panel-inner svg {
    margin-right: 10px; /* Thêm khoảng cách giữa SVG và văn bản */
    flex-shrink: 0; /* Ngăn SVG co lại khi thu nhỏ màn hình */
}

.promotion-panel__description {
	font-family: Roboto, Helvetica, sans-serif !important;
    flex-grow: 1; /* Đảm bảo phần văn bản chiếm hết không gian còn lại */
    display: flex;
    align-items: center; /* Căn giữa phần văn bản theo chiều dọc */
}

.promotion-panel__description p {
    margin-bottom: 0px !important;
}

.promotion-panel__description a {
    padding-left: 5px !important;
	color: white;
}

/* Điều chỉnh kích thước svg trong fundiin promotion panel */
.fundiin-promotion__panel svg {
    width: 20px !important;
    height: 20px !important;
}


/* Chỉnh độ giãn của title danh mục trên PC  */
@media only screen and (min-width: 769px) {
    .page-title {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .medium-text-center {
        float: none !important;
        text-align: left !important;
        width: 100% !important;
    }

    .category-page-row {
        padding-top: 0px !important;
    }

    .is-xlarge {
        font-size: 1.5em !important;
    }
}

.search-container {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .search-container {
        display: none;
    }
}

/* Ẩn banner ở danh mục trên PC (TOP content) */
@media only screen and (min-width: 1024px) {
    .orchard-product-category-banner {
        display: none;
    }
}

/* Thu nhỏ ảnh sản phẩm trong trang danh mục */
.product-small .box-image img {
    transform: scale(0.68);
}

.badge-circle .badge-inner,
.badge-circle-inside .badge-inner {
    border-radius: 5px !important;
    font-size: small;
    display: inline-table !important;
    font-weight: 600 !important;
    height: 10px !important;
    padding: 5px !important;
    background-image: linear-gradient(
        -60deg,
        #feeeea 0%,
        #feeeea 100%
    ) !important;
    background-color: rgba(254, 238, 234) !important;
    color: rgba(238, 77, 45) !important;
}

/* Đóng khung phần mô tả danh mục ở dưới cùng */
.term-description {
    font-family: Roboto, Helvetica, sans-serif !important;
    font-size: 0.9em;
    margin: 0 auto 20px auto;
}

/* CSS Ẩn giá mặc định của WooCommerce trên trang danh mục */
.custom-price {
    display: none;
}
/* Hiển thị giá tùy chỉnh */
.woocommerce ul.products li.product .custom-price {
    display: block;
}

/* Giới hạn brand và tên sản phẩm trên 1 hàng, cắt dấu ba chấm */
.brand-attribute,
.name.product-title a {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95%;
}

.brand-attribute {
    margin-bottom: -6px;
}

/* Áp dụng style cho hình ảnh yêu thích */
.name.product-title {
    display: flex;
    align-items: center;
}

.product-yeu-thich {
    height: 12px; /* Bạn có thể điều chỉnh kích thước phù hợp */
    margin-right: 5px;
    vertical-align: middle;
}

/* Khu vực bộ lọc */
.isures-term--filter {
    border: 0px !important;
    padding: 0px !important;
}

@media only screen and (min-width: 769px) {
    .isures-filter--wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
    }
    .isures-scroll--wrap_dropdown {
        margin-top: 0px !important;
    }
    .isures-scroll--inner_dropdown {
        margin-right: 20px;
    }
    .isures-filter--nav_wrap.active {
        min-width: 400px !important;
    }
    .isures-item--attribute {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .isures-filter--wrap {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .isures-scroll--wrap_dropdown {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
}

.active.isures-item--price span {
    font-weight: 600;
    color: rgba(238, 77, 45) !important;
}
.active.isures-item--price {
    background-color: #feeeea;
}

.isures-item--price a {
    border: none !important;
    background: #f2f4fa !important;
    text-transform: UPPERCASE;
    font-weight: 600 !important;
    min-height: 36px !important;
    min-width: 100px !important;
}

.isures-term--filter:not(.isures-cate--filter) .isures-item--attribute a,
.isures-item--price a {
    justify-content: flex-start !important;
    padding: 5px 8px 5px 15px !important;
}

.isures-term--filter.isures-cate--filter.isures_type_image
    .isures-item--attribute
    a,
.isures-term--filter:not(.isures-cate--filter) .isures-item--attribute a {
    min-height: 40px !important;
}

.isures-filter--dropdown > :not(.isures-filter--nav_wrap):not(.is-divider) {
    position: relative;
    padding: 10px 25px 10px 12px !important;
    background-color: #f2f4fa !important;
}

.isures-scroll--wrap_dropdown.isures-show {
    border-radius: 4px;
}

@media screen and (max-width: 1023px) {
    .isures-scroll--inner_dropdown
        .isures-filter--dropdown
        .isures-filter--nav_wrap {
        margin-top: 10px;
        border-radius: 4px !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around !important;
        min-width: 400px;
    }
    .inline-bl {
        font-weight: 500;
        line-height: 1.6em;
    }
    .isures-scroll--inner_dropdown
        .isures-filter--dropdown
        .isures-item--attribute {
        width: 45%;
        box-sizing: border-box;
    }
}

/* Chỉnh độ rộng & căn giữa mô tả danh mục trên PC  */
.category-description {
    max-width: 900px;
    margin: auto;
}


/* CSS hiệu ứng bóng lướt NGHIÊNG cho logo by GIUSEART.com */
/* Sửa #logo thành phần tử CSS của bạn */
#logo:after,#logo:before{transform: skewX(-25deg) translateY(-50%);content:"";position:absolute;top:50%;width:40px;height:100%;background-color:white;z-index:0}
#logo:before{left:0%;animation:light-left 5s infinite alternate linear}
#logo:after{right:-5%;animation:light-right 5s infinite alternate linear}

@keyframes light-left{0%{left:-5%;opacity:0}50%{left:50%;opacity:1}to{left:105%;opacity:0}}@keyframes light-right{0%{right:-5%;opacity:0}50%{right:50%;opacity:1}to{right:105%;opacity:0}}

/* Ẩn Absolute Footer */
.absolute-footer {
  display: none;
}

/* Đổi màu nền của thanh top bar */
.header-top {
  background-color: #e60023 !important;
}

/* Chỉnh lại vị trí Logo trên mobile */
@media only screen and (max-width: 769px) {
  #logo img {
    margin-top: 2px;
  }
}

/* Chỉnh khoảng cách Logo trên PC */
@media only screen and (min-width: 769px) {
  #logo img {
    margin-left: 50px;
  }
}

/* CSS cho menu trên mobile */
@media only screen and (max-width: 769px) {
  .header-bottom .nav {
    display: inline-block;
    white-space: nowrap;
    overflow-x: auto;
  }

  .header-bottom .flex-col {
    width: 100%;
  }

  .category-page-row {
    padding-top: 0px;
  }
}


/* Chỉnh tiêu đề nhóm sản phẩm trang chủ */
.section-title-normal {
  border-bottom: 0px solid #ececec !important;
}
.section-title-normal span {
  border-bottom: 0px solid rgba(0, 0, 0, 0.1) !important;
}

.section-title span {
  text-transform: none !important;
}

/* KHÁC, KHÔNG NHỚ */
.box-text {
  padding-bottom: 1em;
  padding-top: 0;
}

/* QUÊN RỒI */
.box-text a:not(.button),
.box-text h1,
.box-text h2,
.box-text h3,
.box-text h4,
.box-text h5,
.box-text h6 {
  line-height: 1.1em !important;
  color: #3a393a;
}


.product {
    position: relative;
}

.product-variation-badges {
    position: absolute;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    white-space: nowrap;
    z-index: 1;
}

.variation-badge {
    background-color: rgba(0, 0, 0, 0.01);
    border: 1px solid #e0e0e0;
    color: #555555;
    padding: 2px 5px;
    font-size: 0.6em;
    text-transform: uppercase;
    border-radius: 3px;
}

.default-variation-badge {
    font-weight: 600;
}

.box-text.box-text-products {
    padding-top: 0px !important;
    padding-bottom: 1em !important;
}

/* Container chính */
.form-group {
  position: relative;
  display: flex;
  align-items: center;
}

.form-group .fa-phone {
  position: absolute;
  left: 15px;
  top: 18px;
  color: #aaa;
  font-size: 1em;
}

.form-group input[type="text"] {
  padding-left: 40px; /* Để chừa khoảng trống cho biểu tượng */
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group input#billing_phone {
  background-color: #fff;
  padding-left: 40px;
  margin-bottom: 0px !important;
  height: 50px;
}

/* Các phần tử khác */

body {
  font-family: "Inter Tight", sans-serif;
  background-color: #f5f5f5;
  color: #333;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.order-tracking-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

.logo-image img {
	max-width: 200px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.header-image img {
  width: 100%;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-top: -30px;
  margin-bottom: 10px;
  padding: 30px;
}

h2 {
  font-size: 1.5em;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
  text-align: left;
}

.form-group input[type="text"],
.form-group input[type="submit"] {
  width: 100%;
  height: 50px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group input[type="submit"] {
  background-image: linear-gradient(to right, #434343 0%, black 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-right: 0px !important;
}

.form-group input[type="submit"]:hover {
  background-color: #212a37;
}

#otp_message {
  background-color: #f9f9f9;
  color: #31708f;
  padding: 10px;
  border: 1px solid #bce8f1;
  border-radius: 5px;
  margin-bottom: 20px;
}

#countdown {
  position: absolute;
  font-weight: bold;
  color: #212a37;
  right: 20px;
  top: 14px;
}

input#otp {
  position: relative;
  display: flex;
  margin-bottom: 0px;
  margin-right: 0px !important;
}

#customer_info {
  margin-top: 20px;
  text-align: left;
  width: 100%;
  max-width: 600px;
}

.customer_row {
  display: flex;
  align-items: top !important;
  font-size: 14px !important;
  margin: 0;
  color: #333;
}

.customer_icon {
  flex: 0 0 10%;
  text-align: center;
  color: #212a37;
}

.customer_label {
  flex: 0 0 30%;
  text-align: left;
  font-weight: 500;
}
.customer_value {
  flex: 0 0 60%;
  text-align: right;
  font-weight: 600;
}

.order-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-item {
  margin-top: 10px !important;
  background-color: #ffffff;
  padding: 5px 20px 5px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
}

.order-item h2 {
  flex: 0 60%;
  text-align: left;
  font-size: 1.1em;
  color: #212a37;
  margin: 0;
}

.order-item .order-date {
  font-size: 0.9em;
  color: #777;
}

.order-products {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin: 0;
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
}

.order-products li {
  margin-left: 0px !important;
  margin-bottom: 5px;
  font-size: 0.9em;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}

.order-products li:last-child {
  border-bottom: none;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

.order-status {
  font-size: 0.9em !important;
  color: #888;
  font-weight: 500;
}

.order-total {
  font-size: 1em;
  color: #444;
  font-weight: bold;
}

@media (max-width: 600px) {
  .order-tracking-container {
    padding: 15px;
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .form-group input[type="text"],
  .form-group input[type="submit"] {
    width: 100%;
  }
}

.membership-column .col-inner {
	background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}

.header-cart-icon img[width="1"][height="1"] {
  width: 24px;
}

/* Điểu chỉnh độ rộng icon của side cart checkoutwc */
.cfw-side-cart-quantity-wrap svg:not(.cfw-side-cart-icon-solid) {
  fill: none;
  height: auto;
}

/* Đặt số lượng giỏ hàng trong vòng tròn đỏ và canh chỉnh */
.cfw-side-cart-quantity {
  position: relative;
  display: inline-block;
  width: 16px; /* Độ rộng của vòng tròn */
  height: 16px; /* Chiều cao của vòng tròn */
  background-color: red; /* Màu nền đỏ */
  color: white; /* Màu chữ trắng */
  border-radius: 50%; /* Bo tròn để tạo thành hình tròn */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px !important; /* Kích thước chữ */
  top: -12px; /* Di chuyển lên trên */
  left: -8px; /* Di chuyển qua trái */
  line-height: 24px; /* Đảm bảo số nằm giữa vòng tròn */
}

.cfw-side-cart-quantity-wrap .cfw-side-cart-quantity {
  font-family: inherit !important;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 20px;
  padding-left: 0em !important;
}

/* Ẩn nút điều chỉnh số lượng sản phẩm Side Cart */
.cfw-edit-item-quantity-control-wrap {
  display: none !important;
}

/* Chỉnh góc bo của nút tăng giảm số lượng Side Cart (nếu hiện) */
#cfw-side-cart .cfw-quantity-stepper {
  border-radius: 5px;
  font-size: 1em;
}

/* Chỉnh tiêu đề sản phẩm Side Cart */
.cfw-cart-item-title {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.3em;
}

/* Chỉnh giãn cách tiêu đề sản phẩm Side Cart */
.cfw-cart-item-title, th {
  letter-spacing: 0em;
}

/* Chỉnh nút X xóa sản phẩm trong Side Cart */
#cfw-side-cart .cfw-remove-item-button svg {
  margin-top: -20px;
}


#cfw-side-cart .cfw-side-cart-contents {
    margin-top: 30px;
}

@media only screen and (max-width: 769px) {
.cfw-side-cart-quantity-wrap {
    margin-top: 5px;
}
}

button#devvn_cmt_submit, button#devvn_cmt_replysubmit {
    background-image: linear-gradient(to right, #434343 0%, black 100%);
	color: white;
	min-width: 120px;
}

#comments a.btn-reviews-now {
    background-image: linear-gradient(to right, #434343 0%, black 100%);
}

@media only screen and (max-width: 768px) {
#comments a.btn-reviews-now {
    background-image: linear-gradient(to right, #434343 0%, black 100%);
	min-width: 250px;
}
	    .devvn_cmt_search_box {
        width: 250px;
    }
}

span.devvn_num_reviews {
    min-width: 150px !important;
    color: #101720 !important;
}

.devvn_cmt_box span {
	display: none;
}

.devvn_cmt_box_content {
	margin-left: 0px;
}

.devvn_cmt_tool {
	margin-left: 0px;
}

body.woocommerce.theme-flatsome #reviews #comments ol.commentlist li {
    padding: 10px 10px 5px 15px;

    border-radius: 4px;
}

div#reviews.woocommerce-Reviews {
    border-bottom: none !important;
}

span.devvn_average_rate {
    margin-right: 3px;
    padding: 4px;
    background-color: #ec4c2c;
    color: white;
    border-radius: 5px;
	font-size: 12px !important;
    font-weight: 600;
}

/* General styles for the quiz form */
#orchard-survey-form {
	font-family: Roboto, Helvetica, sans-serif !important;
    max-width: 600px;
    margin: 0 auto;
    padding: 0px;
	display: grid;
}

#orchard-survey-form .question {
    margin-bottom: 40px;
}

#orchard-survey-form .question-heading label {
	font-size: 1.5em;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
	color: #101720;
}

#orchard-survey-form .answer {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 5px;
	margin-top: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#orchard-survey-form .answer:hover {
    background-color: #f0f0f0;
}

#orchard-survey-form .answer input {
    margin-right: 10px;
}

#orchard-survey-form .answer span {
	font-size: 1.2em !important;
    flex-grow: 1;
	color: #101720;
}

#orchard-survey-form .question-image {
	display: none;
}

/* Styles for summary and result sections */
#summary, #result {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#summary h3, #result h3 {
    margin-top: 0;
}

#summary-content p, #result-content p {
    margin: 10px 0;
}

button#show-result {
    background-color: #f60023;
    color: white;
	border-radius: 4px;
	min-height: 45px;
}

#orchard-survey-form button {
    background-color: #f60023;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	min-width: 100%;
	justify-content: center;
}

#orchard-survey-form button:hover {
    background-color: #fff;
}

#orchard-survey-form .answer input {
	margin-top: 0px;
    margin-bottom: 0px;
	width: 16px;
    height: 16px;
}

#orchard-survey-form .answer label {
    margin-bottom: 0px;
}



