
section[lang="en"] { 
  font-family:  "Book Antiqua", "Palatino Linotype", Palatino, serif; 
} 
section[lang="vi"] { 
  font-family: "Times New Roman", Times, serif; 
}

section[lang="vi"] a,
section[lang="vi"] p,
section[lang="vi"] button { 
  font-family: "Times New Roman", Times, serif; 
}
section[lang="en"] a,
section[lang="en"] p,
section[lang="en"] button { 
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, serif; 
}


/* Style for product title links */
.topPromotion_left_item_name a {
    color: inherit;          /* use parent text color */
    text-decoration: none;   /* remove underline */
    cursor: pointer;         /* keep pointer on hover */
}

/* Prevent color change on hover/visited */
.topPromotion_left_item_name a:visited,
.topPromotion_left_item_name a:hover,
.topPromotion_left_item_name a:active {
    color: inherit;          /* same color as normal text */
    text-decoration: none;   /* no underline */
}

/* READ MORE BUTTON */
.read-more {
    Width: 60%;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0078D7, #005fa3);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;

    display: inline-flex;        /* flex for text + icon */
    align-items: center;
    
    justify-content: center;
    gap: 8px;                    /* spacing between text and icon */

    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.read-more i {
    font-size: 1em;              /* icon size */
}
.read-more:hover {
    background: linear-gradient(135deg, #005fa3, #004080);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.announcement, .news {
    padding-bottom: 5px;
}

/* Individual cards */
.announcement, .news {
    /* border: 1px solid #ccc; */
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    flex: 1;                  /* equal growth */
    min-height: 120px;        /* consistent minimum height */
    margin: 10px 0 10px 0;
}

/* Image sizing */
.announcement img, .news img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0;
}

@media (max-width: 355px) {

.topPromotion {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 10px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 100%;
    border: none;
    padding: 0 10px 0 10px;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 100%;
    padding: 0;
    border: none;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}



/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}






}

/* Extra small phones */
@media (min-width: 356px) and (max-width:370px) {

.topPromotion {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 30px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 100%;
    border: none;
    padding: 0 10px 0 10px;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 100%;
    padding: 0;
    border: none;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}



/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}






}

/* Small phones - updated 1.25.2026*/ 
@media (min-width: 371px) and (max-width: 479px){

.topPromotion {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 10px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 100%;
    border: none;
    padding: 0 10px 0 10px;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 100%;
    padding: 0;
    border: none;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}



/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}






}

/* Larger phones 1 (480px–580px) updated 1.25.2026 */
@media (min-width: 480px) and (max-width: 580px) {

.topPromotion {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 100%;
    border: none;
    padding: 0 10px 0 10px;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 100%;
    padding: 0 15px;
    border: none;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}



/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}

/* Larger phones 2 (581px–767px) updated 1.25.2026 */
@media (min-width: 581px) and (max-width: 767px) {

.topPromotion {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 100%;
    border: none;
    padding: 0 10px 0 10px;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 100%;
    padding: 0 15px;
    border: none;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}



/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}

/* Small tablets (portrait) updated 1.25.2026 */ 
@media (min-width: 768px) and (max-width: 899px) {

.topPromotion {
    display: flex;
    flex-direction: row;
    width: 97%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 50%;
    border: none;
    padding: 0 10px 0 10px;
    border-right: 1px solid orange;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 50%;
    padding: 0 10px;
    border: none;
    min-height: 556.3px;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    

}



/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}

/* Large tablets (landscape) */ 
@media (min-width: 900px) and (max-width: 1023px) {

.topPromotion {
    display: flex;
    flex-direction: row;
    width: 95%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 50%;
    border: none;
    padding: 0 10px 0 10px;
    border-right: 1px solid orange;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 50%;
    padding: 0 10px;
    border: none;
    min-height: 570.66px;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}



/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}

/* copied and working */
@media (min-width: 1024px) and (max-width: 1127px) {

.topPromotion {
    display: flex;
    flex-direction: row;
    width: 95%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 50%;
    border: none;
    padding: 0 10px 0 10px;
    border-right: 1px solid orange;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 50%;
    padding: 0 10px;
    border: none;
    min-height: 570.66px;
}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-top: 15px;
    display: flex;
    flex-direction: column;

}



/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}


@media (min-width: 1128px) and (max-width: 1279px){

.topPromotion {
    display: flex;
    flex-direction: row;
    width: 90%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 50%;
    border: none;
    padding: 0 10px 0 10px;
    border-right: 1px solid orange;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 50%;
    padding: 0 10px;
    border: none;
    min-height: 570.66px;


}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;

}


/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}

@media (min-width: 1280px) and (max-width: 1365px) {

.topPromotion {
    display: flex;
    flex-direction: row;
    width: 95%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 50%;
    border: none;
    padding: 0 10px 0 10px;
    border-right: 2px solid orange;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 50%;
    padding: 0 10px;
    border: none;
    min-height: 570.66px;

}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;

}



/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}

@media (min-width: 1366px) and (max-width: 1599px) {

.topPromotion {
    display: flex;
    flex-direction: row;
    width: 95%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 50%;
    border: none;
    padding: 0 10px 0 10px;
    border-right: 2px solid orange;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 50%;
    padding: 0 10px;
    border: none;
    min-height: 570.66px;

}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    padding: 0 10px;
    border: none;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;

}


/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}


@media (min-width: 1600px) and (max-width: 1679px) {

.topPromotion {
    display: flex;
    flex-direction: row;
    width: 99%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 50%;
    border: none;
    padding: 0 10px 0 10px;
    border-right: 2px solid orange;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 50%;
    padding: 0 10px;
    border: none;
    min-height: 521.33px;
    display: flex;
    flex-direction: column;


}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border: none;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;


}


/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}


@media (min-width: 1680px) {

.topPromotion {
    display: flex;
    flex-direction: row;
    width: 99%;
    height: auto;
    margin: 40px auto 0 auto;   /* spacing above */
    /* border-radius: 15px; */
    align-items: center;

}
/* LEFT PROMOTION BOX */
.topPromotion_left {
    width: 50%;
    border: none;
    padding: 0 10px 0 10px;
    border-right: 2px solid orange;
}
.topPromotion_left_item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding:0 auto;
    align-items: center;
}
.topPromotion_left_item_img {
    width: 90%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 355px;
    max-height: 355px;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    justify-content: center;
    padding: 5px;
}
.topPromotion_left_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover */
    border-radius: 10px;
}
/* Product description block */
.topPromotion_left_item_mainDesc {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertically centered */
    align-items: center;      /* horizontally centered */
    padding: 10px;
}

/* Title */
.topPromotion_left_item_name {
    font-size: 1.33rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:center;
}

/* Price */
.topPromotion_left_item_price {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 5px;
    align-items: baseline;
}
.promo_price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b8300;
    /* text-align: center; */
}
.old_price {
    font-size: 1.1rem;
    color: #ac0000;
    text-decoration: line-through;
    /* text-align: center; */
}
.promo_price,
.old_price {
    padding: 5px 10px;
}
/* Description */
.topPromotion_left_item_desc {
    line-height: 1.3;
    font-size: 1.17rem;
    padding: 0 10px 0 10px;
    color: #444;
    text-align: justify;
    margin-bottom: 5px;
    /* Limit to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Button */
.topPromotion_left_item_mainDesc button {
    margin:5px 0 0 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}


/* ===== RIGHT PROMOTION BOX ===== */
.topPromotion_right {
    width: 50%;
    padding: 0 10px;
    border: none;
    min-height: 521.33px;
    display: flex;
    flex-direction: column;
    align-items:flex-start;

}
.topPromotion_right_item {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 100%;
    border: none;

}

/* Announcement + News sections */
.topPromotion_right_announcement,
.topPromotion_right_news {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    border: none;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;


}


/* Text block */
.announ_desc, .news_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 0 5px;
}

/* Title link */
.announcement a, .news a {
    font-weight: bold;
    text-decoration: none;
    color: #0078D7;
    /* margin-bottom: 5px; */
    padding: 5px 0;
}

/* Description text */
.announcement p, .news p {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;    /* max 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Divider line between announcement and news */
.topPromotion_right_announcement, button{
    align-self: center;
}
.topPromotion_right_news button{
    align-self: center;
}



}

