/* Container */
.daily-deal-section {
    margin-bottom: 25px;
    border: 1px solid #ddd;
    background: #fff;
    width: 100%;
}

/* Main Row */
.daily-deal-row {
    display: flex;
    flex-wrap: wrap;
}

/* Left Blue Box */
.daily-deal-left {
    background: #208eccc2;
    text-align: center;
    min-height: 120px;
    width: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.daily-deal-left h2 {
    color: #fff;
    font-weight: 400;
    font-size: 30px;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.daily-deal-left p {
    color: #fff;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

/* Right Section */
.daily-deal-right {
    width: 66.66%;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    
}
.daily-deal {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

  .deal-info {
       display: flex;
       margin-left: 10px;
    }

/* Image */
.deal-image img {
    max-height: 85px;
   
}

/* Hurry Text */
.deal-hurry {
    flex: 1;
    font-size: 20px;
    color: #000;
    line-height: 1.2;
    margin: 0 20px;
   
}

.deal-hurry span {
    color: #3498db;
    font-weight: bold;
}

/* Price */
.deal-price {
    margin-right: 40px;
    padding-left: 20px;
}

.current-price {
    font-size: 20px;
    color: #777;
    font-weight: bold;
}

.current-price span {
    color: #428bca;
}

.old-price {
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
}

/* Button */
.deal-action {
    width: 140px;
    text-align: center;
}

.deal-action button {
    background: #428bca;
    border: 1px solid #357ebd;
    width: 100%;
    border-radius: 2px;
    font-weight: bold;
    font-size: 13px;
    padding: 10px 0;
    color: #fff;
    cursor: pointer;
}

.disabled-btn {
    background: #ccc;
    border: 1px solid #ccc;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.conditions-link {
    display: block;
    margin-top: 5px;
    color: #888;
    text-decoration: underline;
    font-size: 12px;
}

/* ============Review item============= */
.reviews-section {
    margin-bottom: 30px;
    background: white;
    padding: 0;
}

.reviews-row {
    display: flex;
    align-items: center;
    margin: 0;
}

/* Left Summary */
.reviews-left {
    text-align: left;
    padding: 15px;
}

.reviews-title {
    margin: 0;
    font-size: 28px;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

/* Stars */
.star-box-green {
    background-color: #00b67a;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    border-radius: 2px;
}

.star-box-green i {
    color: white;
    font-size: 18px;
}

.star-box-green-sm {
    background-color: #00b67a;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2px;
    border-radius: 2px;
}

.star-box-green-sm i {
    color: white;
    font-size: 11px;
}

.stars-main {
    display: flex;
    margin-bottom: 8px;
}

.stars-small {
    display: flex;
    margin-right: 10px;
}

/* Reviews text */
.reviews-count {
    font-size: 13px;
    color: #333;
    margin: 0;
}

.reviews-count u {
    font-weight: bold;
    color: #000;
    text-decoration: underline;
}

/* Right Section */
.reviews-right {
    display: flex;
    align-items: center;
    padding-right: 15px;
    padding-left: 0;
}

/* Arrow */
.review-arrow {
    width: 25px;
    height: 25px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.review-arrow:hover {
    background: #ccc;
}

/* Wrappers */
.arrow-wrapper-left {
    flex: 0 0 auto;
    margin-right: 20px;
}

.arrow-wrapper-right {
    flex: 0 0 auto;
    margin-left: 20px;
}

/* Items Container */
.reviews-items {
    flex: 1;
    display: flex;
    overflow: hidden;
    align-items: flex-start;
    justify-content: space-between;
}

/* Review Items */
.item-one {
    flex: 0 0 45%;
    padding-right: 15px;
}

.item-two {
    flex: 0 0 40%;
    padding-right: 10px;
}

.review-text {
    font-size: 12px;
    color: #777;
    margin-bottom: 3px;
    line-height: 1.3;
}

.review-user {
    font-size: 12px;
    color: #999;
}

.review-date {
    flex: 0 0 auto;
    font-size: 12px;
    color: #bbb;
}

.date-one {
    margin-right: 20px;
}

/* =========product card================ */

/* Wrapper */
.product-wrapper {
    margin-bottom: 20px;
}

/* Card */
.product-card-bestseller {
    background: #fff;
    height: 100%;
}

.product-card-inner {
    background: #fff;
    position: relative;
    padding: 0;
}

/* Top row */
.product-top-row {
    margin: 0;
    padding-bottom: 10px;
}

/* Image column */
.product-image-col {
    padding: 0 0 0 5px;
    position: relative;
}

/* Discount pill */
.discount-pill {
    position: absolute;
    top: 0;
    left: 15px;
    background: #ff9900;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding: 1px 8px;
    border-radius: 12px;
    z-index: 10;
}

/* Image */
.productimage {
    margin: 25px auto 0;
    max-height: 80px;
}

/* Info column */
.product-info-col {
    padding: 0 5px;
}

.product-title {
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 5px;
    color: #000;
    line-height: 1.2;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
}

/* Price */
.product-price {
    margin-bottom: 2px;
}

.price-label {
    font-size: 13px;
    color: #333;
}

.price-value {
    font-size: 18px;
    color: #e67e22;
    font-weight: bold;
}

/* Offer */
.offer-text {
    font-size: 13px;
    color: #e67e22;
    font-weight: bold;
    line-height: 1.2;
}

/* Bottom row */
.product-bottom-row {
    margin: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 5px;
}

/* More info */
.product-more-info {
    padding: 0 0 0 5px;
    text-align: left;
}

.product-more-info a {
    font-size: 13px;
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.2;
    display: block;
}

.product-more-info span {
    font-size: 13px;
    color: #999;
    font-weight: bold;
    line-height: 1.2;
    display: block;
}

/* Cart button */
.product-cart {
    padding: 0 5px 0 0;
    text-align: right;
}

.add-to-product-cart {
    width: 100%;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 0;
    border-radius: 4px;
    background: linear-gradient(to bottom, #3fa9f5 0%, #1f85c1 100%);
    border: 1px solid #1c7db5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    text-shadow: 0 -1px 0 rgba(0,0,0,0.2);
}

.btn-loading {
    display: none;
}

.unavailable {
    background: #ccc !important;
    border: none !important;
}

/* ==========another product card============= */

/* Container */
.product-col {
    padding: 0;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.product-card-multipack {
    background: #fff;
    padding: 15px 10px;
    height: 100%;
}

.product-row {
    margin: 0;
}

/* Image */
.product-image-col {
    padding: 0;
}

.product-image-wrapper {
    position: relative;
    text-align: center;
}

.productimage2 {
    margin: 0 auto;
    max-height: 100px;
}

.product-discount {
    position: absolute;
    top: 0;
    left: 0;
    background: #ff9900;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 10px;
}

/* Details */
.product-details {
    padding-left: 10px;
    padding-right: 0;
    text-align: left;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
}

.product-title {
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 5px;
    color: #000;
    min-height: 20px;
}

/* Price box */
.price-box {
    margin-bottom: 8px;
}

.price-regular {
    background: #ffcc00;
    padding: 2px 5px;
    font-size: 11px;
    color: #333;
}

.price-regular span {
    text-decoration: line-through;
}

.price-offer {
    background: #ff6600;
    padding: 2px 5px;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
}

/* Links */
.product-more {
    font-size: 11px;
    color: #3498db;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    text-decoration: none;
}

.product-more.disabled {
    color: #999;
    cursor: default;
}

/* Button */
.add-to-product-cart {
    background: #3498db;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    font-size: 12px;
    padding: 5px 0;
}

.btn-loading {
    display: none;
}

/* ==============footer=========== */
/* Footer main */
.footer-new {
    background: #eaf8ff;
    border-top: 1px solid #ddd;
    padding: 30px 0;
    margin-top: 20px;
}

/* Row layout */
.footer-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.footer-logo {
    text-align: left;
    padding-bottom: 20px;
}

.footer-logo img {
    max-height: 40px;
}

/* Menu */
.footer-menu {
    text-align: center;
    color: #071D35;
}

.footer-links-row {
    margin-bottom: 5px;
}

.footer-links-row a {
    font-size: 13px;
    color: #071D35;
    text-decoration: none;
}

.footer-links-row span {
    margin: 0 5px;
   color: #071D35;
}

/* Copyright */
.footer-copy {
    background: #f8f8f8;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footer-copy p {
    margin: 0;
    font-size: 12px;
    color: #999;
}


/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

    .daily-deal-left,.daily-deal-right {
        width: 100%;
    }

      .daily-deal {
        display: flex;
        flex-wrap: wrap;        /* NO wrapping */
        justify-content: flex-start; /* REMOVE space-between */
        align-items: center;
    }

    /* IMAGE - LEFT */
     .deal-image {
        width: 40%;
        padding: 0;
        display: flex;
        justify-content: center;
    }


    .deal-image img {
        max-height: 80px;
    }
   .deal-info {
        width: 60%;
        display: flex;
        flex-direction: column;
       padding-left: 30px;
        margin: 0;
    }

    /* HURRY TEXT - RIGHT (TOP) */
  .deal-hurry {
        font-size: 15px;
        margin: 0;
        padding: 0;
    }

    .deal-price {
        margin: 5px 0 0 0;
        padding: 0;
    }
    .current-price,
    .old-price {
        margin: 0;
        font-size: 14px;
    }


    /* BUTTON - FULL WIDTH AT BOTTOM */
  .deal-action {
        width: 100%;
        margin-top: 10px;
    }

    .deal-action button {
        width: 100%;
        padding: 8px 0;
    }

    .conditions-link {
        text-align: center;
    }

    /* ============Review item============= */

 /* Hide right reviews section */
    .reviews-right {
        display: none;
    }
.reviews-left{
     align-items: center;
        text-align: center;
        margin-left: 50px;
}
    /* Keep stars visible and centered */
    .stars-main {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ===============product card=========== */

     .product-wrapper {
        width: 50%;
        float: left;
    }

    /* Stack image & info vertically */
    .product-top-row {
        display: block;
        text-align: center;
    }

    /* Image full width on top */
    .product-image-col,
    .product-info-col {
        width: 100%;
        float: none;
        text-align: center;
        padding: 0;
    }

    .productimage {
        margin: 15px auto 10px;
        max-height: 90px;
    }

    /* Center text info */
    .product-title,
    .product-price,
    .offer-text {
        text-align: center;
    }

    /* Bottom row stacked */
    .product-bottom-row {
        display: block;
        text-align: center;
    }

    .product-more-info,
    .product-cart {
        width: 100%;
        float: none;
        padding: 5px 0;
        text-align: center;
    }

    .add-to-product-cart,
    .unavailable {
        width: 90%;
        margin: 0 auto;
    }

    /* Discount badge adjustment */
    .discount-pill {
        left: 10px;
        top: 5px;
        font-size: 12px;
    }

    /* ===========producat card2========= */

   
      /* 2 products per row */
    .col-sm-6 {
        width: 50%;
        float: left;
        box-sizing: border-box;
    }

    /* Product card sizing */
    .product-card-multipack {
        padding: 10px 6px !important;
        min-height: 230px;
    }

    /* Image column */
    .col-xs-4 img {
        max-height: 80px !important;
    }

    /* Details column */
    .col-xs-8 {
        padding-left: 6px !important;
    }

    /* Product title */
    .col-xs-8 h4 {
        font-size: 12px !important;
        line-height: 1.3;
        min-height: 32px;
    }

    /* Price box text */
    .price-box div {
        font-size: 10px !important;
    }

    /* Button size */
    .add-to-product-cart {
        font-size: 11px !important;
        padding: 6px 0 !important;
    }

/* ============footer================ */

    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .footer-menu {
        width: 100%;
        text-align: center;
        color: #071D35;
    }

    .footer-links-row {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 12px;
    }

    .footer-links-row span {
        display: none; /* hide | separators */
    }

    .footer-links-row a {
        display: block;
        font-size: 14px;
    }
}

