 /* Step 1 */
 /* MIRJU HOMEPAGE */

 #mirju-home,
 #mirju-home * {
     box-sizing: border-box;
 }

 #mirju-home {
     width: 100%;
     margin: 0;
     padding: 0;
 }

 .mirju-home {
     overflow: hidden;
 }


 /* Homepage Sections */

 .mirju-home>section {
     width: 100%;
     margin: 0;
     padding: 0;
 }


 /* Homepage Container */

 .mirju-home-container {
     width: 100%;
     max-width: 1320px;
     margin: 0 auto;
     padding-left: 30px;
     padding-right: 30px;
 }

 /* Step 2 */
 /* MIRJU HOMEPAGE — HERO */

 /* =========================================================
   HERO SLIDER
   ========================================================= */

 .mirju-hero-prev svg,
 .mirju-hero-next svg {
     display: block;
     width: 19px;
     height: 19px;
 }

 @media (max-width: 767px) {

     #page,
     .site,
     .site-content,
     .site-main,
     .content-area,
     .entry-content,
     .site-container,
     .content-container,
     .container {
         width: 100% !important;
         max-width: 100% !important;
         min-width: 0 !important;
         margin-left: 0 !important;
         margin-right: 0 !important;
         box-sizing: border-box !important;
     }

     .mirju-hero-prev svg,
     .mirju-hero-next svg {
         width: 16px;
         height: 16px;
     }

 }

 .mirju-home-hero-slider {
     position: relative;

     width: 100%;
     min-height: 230px;

     overflow: hidden;

     background: #f5f3e9;
 }


 /* =========================================================
   INDIVIDUAL SLIDE
   ========================================================= */

 .mirju-hero-slide {
     position: absolute;

     inset: 0;

     width: 100%;
     min-height: 430px;

     opacity: 0;
     visibility: hidden;

     pointer-events: none;

     transition:
         opacity 0.6s ease,
         visibility 0.6s ease;
 }


 /* ACTIVE SLIDE */

 .mirju-hero-slide.is-active {
     position: relative;

     opacity: 1;
     visibility: visible;

     pointer-events: auto;
 }


 /* =========================================================
   HERO CONTAINER
   ========================================================= */

 .mirju-hero-container {
     position: relative;

     display: flex;
     align-items: stretch;

     width: 100%;
     max-width: 1440px;

     min-height: 430px;

     margin: 0 auto;

     padding: 0;
 }


 /* =========================================================
   HERO CONTENT
   ========================================================= */

 .mirju-hero-content {
     position: relative;
     z-index: 3;

     display: flex;
     flex-direction: column;
     justify-content: center;

     width: 45%;

     padding: 30px 50px 30px 80px;

     box-sizing: border-box;
 }


 /* =========================================================
   HERO TITLE
   ========================================================= */

 .mirju-hero-title {
     max-width: 540px;

     margin: 0 0 18px;

     color: #064b2d;

     font-family: var(--mirju-ui-font) !important;

     font-size: clamp(40px, 4vw, 58px);
     font-weight: 700;

     line-height: 1.08;
 }


 /* ACCENT */

 .mirju-hero-title span {
     color: #e86f25;
 }


 /* =========================================================
   DESCRIPTION
   ========================================================= */

 .mirju-hero-description {
     max-width: 500px;

     margin: 0 0 28px;

     color: #26372e;

     font-size: 16px;
     font-weight: 500;

     line-height: 1.6;
 }


 /* =========================================================
   ACTIONS
   ========================================================= */

 .mirju-hero-actions {
     display: flex;
     align-items: center;

     gap: 14px;

     flex-wrap: wrap;
 }


 /* =========================================================
   BUTTON
   ========================================================= */

 .mirju-hero-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     min-height: 44px;

     padding: 0 20px;

     border-radius: 4px;

     font-family: inherit;

     font-size: 14px;
     font-weight: 600;

     line-height: 1;

     text-decoration: none !important;

     transition:
         background 0.2s ease,
         border-color 0.2s ease,
         color 0.2s ease,
         transform 0.2s ease;
 }


 /* PRIMARY */

 .mirju-hero-btn-primary {
     gap: 11px;

     border: 1px solid #064b2d;

     background: #064b2d;

     color: #ffffff;
 }

 .mirju-hero-btn-primary:hover {
     border-color: #043b23;

     background: #043b23;

     color: #ffffff;

     transform: translateY(-1px);
 }


 .mirju-hero-btn-arrow {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     width: 18px;
     height: 18px;

     flex: 0 0 18px;
 }

 .mirju-hero-btn-arrow svg {
     display: block;

     width: 18px;
     height: 18px;
 }


 /* SECONDARY */

 .mirju-hero-btn-secondary {
     border: 1px solid #8b9d92;

     background: rgba(255, 255, 255, 0.5);

     color: #064b2d;
 }

 .mirju-hero-btn-secondary:hover {
     border-color: #064b2d;

     background: #ffffff;

     color: #064b2d;

     transform: translateY(-1px);
 }


 /* =========================================================
   HERO IMAGE
   ========================================================= */

 .mirju-hero-image {
     position: absolute;

     top: 0;
     right: 0;
     bottom: 0;

     width: 67%;

     overflow: hidden;
 }


 .mirju-hero-image img {
     display: block;

     width: 100%;
     height: 100%;

     max-width: none;

     object-fit: cover;

     object-position: center center;
 }


 /* =========================================================
   IMAGE FADE
   ========================================================= */

 .mirju-hero-image::before {
     position: absolute;

     z-index: 2;

     top: 0;
     left: 0;
     bottom: 0;

     width: 30%;

     background:
         linear-gradient(to right,
             #f5f3e9 0%,
             rgba(245, 243, 233, 0.94) 15%,
             rgba(245, 243, 233, 0.55) 45%,
             rgba(245, 243, 233, 0) 100%);

     content: "";
 }


 /* =========================================================
   SLIDER ARROWS
   ========================================================= */

 .mirju-hero-prev,
 .mirju-hero-next {
     position: absolute;

     z-index: 10;

     top: 50%;

     display: flex;
     align-items: center;
     justify-content: center;

     width: 42px;
     height: 42px;

     padding: 0;


     border: 1px solid #dce5df;
     border-radius: 50%;

     background: rgba(255, 255, 255, 0.92);

     color: #064b2d;

     cursor: pointer;

     transform: translateY(-50%);

     box-shadow: 0 5px 18px rgba(6, 75, 45, 0.12);

     transition:
         background 0.2s ease,
         color 0.2s ease,
         border-color 0.2s ease,
         transform 0.2s ease;
 }


 .mirju-hero-prev {
     left: 22px;
 }


 .mirju-hero-next {
     right: 22px;
 }





 .mirju-hero-prev:hover,
 .mirju-hero-next:hover {
     border-color: #064b2d;

     background: #064b2d;

     color: #ffffff;

     transform: translateY(-50%) scale(1.05);
 }


 /* =========================================================
   SLIDER DOTS
   ========================================================= */

 .mirju-hero-dots {
     position: absolute;

     z-index: 10;

     left: 50%;
     bottom: 18px;

     display: flex;
     align-items: center;

     gap: 7px;

     transform: translateX(-50%);
 }


 .mirju-hero-dot {
     width: 7px;
     height: 7px;

     padding: 0;

     border: 0;
     border-radius: 50%;

     background: rgba(6, 75, 45, 0.28);

     cursor: pointer;

     transition:
         width 0.25s ease,
         background 0.25s ease;
 }


 .mirju-hero-dot.is-active {
     width: 22px;

     border-radius: 10px;

     background: #064b2d;
 }

 /* step 3 */
 /* SHOP BY CATEGORIES */
 /* CATEGORY SECTION */

 .mirju-home-categories {
     width: 100%;
     padding: 28px 0 35px;
     background: #ffffff;
     overflow: hidden;
 }


 /* CONTAINER */




 /* CATEGORY SLIDER */

 .mirju-category-slider {
     position: relative;
     width: 100%;
     overflow: hidden;
 }


 /* CATEGORY TRACK */
 .mirju-category-track {
     display: flex;
     align-items: stretch;
     flex-direction: row;
     flex-wrap: nowrap;

     width: 100%;

     gap: 18px;

     padding: 10px 0 12px;

     overflow-x: auto;
     overflow-y: hidden;

     scroll-behavior: smooth;
     scrollbar-width: none;

     box-sizing: border-box;

     justify-content: space-evenly;
 }

 .mirju-category-track::-webkit-scrollbar {
     display: none;
 }


 /* WHEN CATEGORIES OVERFLOW */

 .mirju-category-track.is-scrollable {
     justify-content: flex-start;
 }

 /* CATEGORY HEADER */

 .mirju-category-header {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;

     gap: 30px;

     margin-bottom: 22px;
 }


 /* HEADING */

 .mirju-category-heading {
     min-width: 0;
 }


 .mirju-category-eyebrow {
     display: block;

     margin-bottom: 5px;

     color: #70a83b;

     font-size: 12px;
     font-weight: 700;

     letter-spacing: 1px;

     text-transform: uppercase;
 }


 .mirju-category-heading h2 {
     margin: 0;

     color: #064b2d;

     font-family: var(--mirju-ui-font) !important;


     font-size: 30px;
     font-weight: 700;

     line-height: 1.2;
 }


 /* VIEW ALL */

 .mirju-category-view-all {
     display: inline-flex;
     align-items: center;

     flex: 0 0 auto;

     gap: 8px;

     color: #064b2d;

     font-size: 13px;
     font-weight: 700;

     text-decoration: none !important;

     transition:
         color 0.2s ease,
         transform 0.2s ease;
 }


 .mirju-category-view-all span {
     font-size: 17px;
     line-height: 1;
 }


 .mirju-category-view-all:hover {
     color: #67a832;

     transform: translateX(3px);
 }

 /* CATEGORY CARD */
 .mirju-category-item {
     position: relative;

     display: flex;
     flex-direction: column;
     align-items: stretch;
     justify-content: flex-start;

     flex: 0 0 150px;

     width: 150px;
     min-width: 150px;
     min-height: 175px;

     padding: 0;

     margin: 0;

     overflow: hidden;

     box-sizing: border-box;

     border: 1px solid #e5ebe6;
     border-radius: 14px;

     background: #ffffff;

     color: #123d2c;

     text-align: center;

     text-decoration: none !important;

     box-shadow:
         0 3px 12px rgba(7, 59, 39, 0.05);

     transition:
         border-color 0.25s ease,
         box-shadow 0.25s ease,
         background 0.25s ease;
 }


 /* CARD HOVER */

 .mirju-category-item:hover {
     border-color: #cfded1;

     background: #fbfdf9;

     box-shadow:
         0 10px 24px rgba(7, 59, 39, 0.12);

 }


 /* =========================================================
   CATEGORY IMAGE AREA
   ========================================================= */

 .mirju-category-icon {
     display: flex;
     align-items: center;
     justify-content: center;

     width: 100%;
     height: 125px;

     flex: 0 0 125px;

     margin: 0;

     padding: 0;

     overflow: hidden;

     border: 0;

     border-radius: 0;

     background: #f1f6ed;

     box-sizing: border-box;

     transition:
         background 0.25s ease;
 }


 /* IMAGE */

 .mirju-category-icon img {
     display: block;

     width: 100% !important;
     height: 100% !important;

     max-width: none !important;

     object-fit: cover !important;
     object-position: center;

     transition:
         transform 0.35s ease;
 }


 /* IMAGE HOVER */

 .mirju-category-item:hover .mirju-category-icon {
     background: #eaf2e5;
 }

 .mirju-category-item:hover .mirju-category-icon img {
     transform: scale(1.06);
 }


 /* =========================================================
   CATEGORY NAME
   ========================================================= */

 .mirju-category-name {
     display: flex;
     align-items: center;
     justify-content: center;

     width: 100%;

     min-height: 50px;

     padding: 8px 10px;

     box-sizing: border-box;

     color: #123d2c;

     background: #ffffff;

     font-size: 13px;
     font-weight: 700;

     line-height: 1.3;

     text-align: center;

     overflow: hidden;
 }


 /* NAME HOVER */

 .mirju-category-item:hover .mirju-category-name {
     color: #67a832;
 }


 /* =========================================================
   REMOVE OLD BOTTOM LINE
   ========================================================= */

 .mirju-category-item::after {
     display: none;
 }


 /* DIVIDER HOVER */

 .mirju-category-item:hover::after {
     background: #67a832;
 }


 /* REMOVE SLIDER BUTTONS */

 .mirju-category-slider-btn {
     display: none !important;
 }

 /* Step 4 */
 /* TRENDING PRODUCTS */

 /* =========================================================
   MIRJU — TRENDING PRODUCTS
========================================================= */

 .mirju-home-trending {
     width: 100%;
     padding: 55px 0 60px;
     background: #ffffff;

     box-sizing: border-box;
 }


 /* =========================================================
   SECTION CONTAINER
========================================================= */




 /* =========================================================
   SECTION HEADER
========================================================= */

 .mirju-home-trending .mirju-section-header {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;

     width: 100%;

     gap: 30px;

     margin-bottom: 24px;
 }


 /* =========================================================
   SECTION HEADING
========================================================= */

 .mirju-home-trending .mirju-section-heading {
     min-width: 0;
 }


 /* EYEBROW */

 .mirju-home-trending .mirju-section-eyebrow {
     display: block;

     margin: 0 0 5px;

     color: #70a83b;

     font-size: 11px;
     font-weight: 700;

     line-height: 1.2;

     letter-spacing: 1.2px;

     text-transform: uppercase;
 }


 /* MAIN TITLE */

 .mirju-home-trending .mirju-section-heading h2 {
     margin: 0 0 6px;

     color: #073b27;

     font-family: var(--mirju-ui-font) !important;


     font-size: 32px;
     font-weight: 700;

     line-height: 1.15;
 }


 /* DESCRIPTION */

 .mirju-home-trending .mirju-section-heading p {
     max-width: 560px;

     margin: 0;

     color: #68756f;

     font-size: 13px;
     font-weight: 400;

     line-height: 1.5;
 }


 /* =========================================================
   VIEW ALL
========================================================= */

 .mirju-home-trending .mirju-section-view-all {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     flex: 0 0 auto;

     gap: 7px;

     margin-bottom: 3px;

     color: #073b27;

     font-size: 12px;
     font-weight: 700;

     line-height: 1;

     text-decoration: none !important;

     white-space: nowrap;

     transition:
         color 0.2s ease,
         gap 0.2s ease;
 }


 /* VIEW ALL SVG WRAPPER */

 .mirju-home-trending .mirju-section-view-all .mirju-hero-btn-arrow {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     width: 17px;
     height: 17px;

     flex: 0 0 17px;
 }


 /* VIEW ALL SVG */

 .mirju-home-trending .mirju-section-view-all .mirju-hero-btn-arrow svg {
     display: block;

     width: 16px;
     height: 16px;

     max-width: none;
 }


 /* VIEW ALL HOVER */

 .mirju-home-trending .mirju-section-view-all:hover {
     gap: 10px;

     color: #67a832;
 }


 /* =========================================================
   PRODUCT GRID
========================================================= */

 .mirju-product-grid {
     display: grid;

     grid-template-columns:
         repeat(4, minmax(0, 1fr));

     gap: 16px;

     width: 100%;

     box-sizing: border-box;
 }


 /* =========================================================
   PRODUCT CARD
========================================================= */

 .mirju-product-card {
     position: relative;

     display: flex;
     flex-direction: column;

     min-width: 0;
     width: 100%;
     height: 100%;

     overflow: hidden;

     border: 1px solid #e6ebe7;
     border-radius: 8px;

     background: #ffffff;

     box-sizing: border-box;

     transition:
         border-color 0.2s ease,
         box-shadow 0.2s ease;
 }


 /* CARD HOVER */

 .mirju-product-card:hover {
     border-color: #d2ddd5;

     box-shadow:
         0 8px 20px rgba(7, 59, 39, 0.09);

 }


 /* =========================================================
   PRODUCT IMAGE
========================================================= */

 .mirju-product-image {
     position: relative;

     display: block;

     width: 100%;
     height: 185px;

     overflow: hidden;

     background: #f7f5ed;

     text-decoration: none !important;

     box-sizing: border-box;
 }


 /* IMAGE */

 .mirju-product-image img {
     display: block;

     width: 100% !important;
     height: 100% !important;

     max-width: none !important;

     object-fit: cover !important;
     object-position: center;

     transition: transform 0.35s ease;
 }


 /* IMAGE HOVER */

 .mirju-product-card:hover .mirju-product-image img {
     transform: scale(1.035);
 }


 /* =========================================================
   TRENDING BADGE
========================================================= */

 .mirju-product-badge {
     position: absolute;

     z-index: 3;

     top: 10px;
     left: 10px;

     display: inline-flex;
     align-items: center;
     justify-content: center;

     min-height: 25px;

     padding: 0 9px;

     border-radius: 4px;

     background: #e86f25;

     color: #ffffff;

     font-size: 9px;
     font-weight: 700;

     line-height: 1;

     letter-spacing: 0.4px;

     text-transform: uppercase;

     box-sizing: border-box;
 }


 /* =========================================================
   PRODUCT CONTENT
========================================================= */

 .mirju-product-content {
     display: flex;
     flex-direction: column;

     flex: 1 1 auto;

     min-width: 0;

     padding: 11px 12px 11px;

     background: #ffffff;

     box-sizing: border-box;
 }


 /* =========================================================
   PRODUCT CATEGORY
========================================================= */

 .mirju-product-category {
     display: block;

     width: 100%;

     min-width: 0;

     margin: 0 0 4px;

     overflow: hidden;

     color: #70a83b;

     font-size: 9px;
     font-weight: 700;

     line-height: 1.2;

     letter-spacing: 0.6px;

     text-transform: uppercase;

     white-space: nowrap;

     text-overflow: ellipsis;
 }


 /* =========================================================
   PRODUCT TITLE
========================================================= */

 .mirju-product-title {
     display: -webkit-box;

     width: 100%;

     min-height: 34px;
     max-height: 34px;

     margin: 0 0 5px;

     overflow: hidden;

     color: #123d2c;

     font-size: 13px;
     font-weight: 700;

     line-height: 1.3;

     text-overflow: ellipsis;

     line-clamp: 2;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;

     box-sizing: border-box;
 }


 /* TITLE LINK */

 .mirju-product-title a {
     color: inherit;

     text-decoration: none !important;
 }


 /* TITLE HOVER */

 .mirju-product-title a:hover {
     color: #67a832;
 }


 /* =========================================================
   PRODUCT RATING
========================================================= */

 .mirju-product-rating {
     display: flex;
     align-items: center;

     gap: 5px;

     min-height: 13px;

     margin: 0 0 6px;
 }


 /* STARS */

 .mirju-stars {
     color: #e4a82c;

     font-size: 10px;
     font-weight: 700;

     line-height: 1;

     letter-spacing: 0.5px;

     white-space: nowrap;
 }


 /* REVIEW COUNT */

 .mirju-rating-count {
     color: #8b958f;

     font-size: 9px;
     font-weight: 500;

     line-height: 1;

     white-space: nowrap;
 }


 /* =========================================================
   PRICE + ACTION AREA
========================================================= */

 .mirju-product-bottom {
     display: flex;
     align-items: center;
     justify-content: space-between;

     gap: 10px;

     margin-top: auto;
     padding-top: 12px;

     border-top: 1px solid #edf1ed;
 }


 /* PRICE */

 .mirju-product-price {
     display: flex;
     align-items: center;
     flex-direction: column;

     flex: 0 0 auto;

     min-width: 0;

     color: #073b27;

     font-size: 18px;
     font-weight: 800;

     line-height: 1;
 }

 .mirju-product-price del {
     margin-right: 5px;

     color: #9aa49e;

     font-size: 11px;
     font-weight: 500;
 }

 .mirju-product-price ins {
     color: #073b27;

     text-decoration: none;
 }



 /* =========================================================
   ACTION BUTTON ROW
========================================================= */

 .mirju-product-actions {
     display: flex;
     align-items: center;

     flex: 0 0 auto;

     gap: 6px;
 }


 /* =========================================================
   ADD / BUY BUTTON BASE
========================================================= */

 .mirju-product-cart {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     flex: 0 0 auto;

     min-width: 58px;
     height: 34px;

     padding: 0 8px;

     border: 1px solid #073b27;
     border-radius: 4px;

     background: #073b27;

     color: #ffffff !important;

     font-family: inherit;

     font-size: 12px;
     font-weight: 700;

     line-height: 1;

     text-align: center;
     text-decoration: none !important;

     cursor: pointer;

     transition:
         background 0.2s ease,
         border-color 0.2s ease,
         color 0.2s ease;
 }


 /* =========================================================
   ADD BUTTON HOVER
========================================================= */

 .mirju-product-cart:hover {
     border-color: #67a832;

     background: #67a832;

     color: #ffffff !important;
 }

 /* ADD BUTTON */

 .mirju-product-add {
     border-color: #073b27;

     background: #073b27;

     color: #ffffff !important;
 }

 .mirju-product-add:hover {
     border-color: #67a832;

     background: #67a832;

     color: #ffffff !important;
 }


 /* =========================================================
   BUY BUTTON
========================================================= */

 .mirju-product-buy {
     border-color: #e86f25;

     background: #e86f25;

     color: #ffffff !important;
 }

 .mirju-product-buy:hover {
     border-color: #d85f18;

     background: #d85f18;

     color: #ffffff !important;
 }

 /* =========================================================
   NO PRODUCTS
========================================================= */

 .mirju-no-products {
     grid-column: 1 / -1;

     margin: 0;

     padding: 35px 20px;

     color: #68756f;

     font-size: 14px;

     text-align: center;
 }

 /* =========================================================
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

 .mirju-home-trending,
 .mirju-home-trending *,
 .mirju-home-trending *::before,
 .mirju-home-trending *::after {
     box-sizing: border-box;
 }

 .mirju-home-trending img {
     max-width: 100%;
 }

 /* Step 6 */
 /* WHY CHOOSE MIRJU */

 .mirju-why-choose {
     width: 100%;

     padding: 18px 0 22px;

     background: #f7f8ed;
 }


 /* CONTAINER */




 /* HEADER */

 .mirju-why-header {
     margin-bottom: 18px;

     text-align: center;
 }


 .mirju-why-header .mirju-section-eyebrow {
     display: none;
 }


 .mirju-why-header h2 {
     margin: 0 0 6px;

     color: #173c29;

     font-family: var(--mirju-ui-font) !important;


     font-size: 24px;
     font-weight: 700;

     line-height: 1.2;
 }


 .mirju-why-header p {
     max-width: 700px;

     margin: 0 auto;

     color: #68756f;

     font-size: 13px;
     font-weight: 400;

     line-height: 1.5;
 }


 /* FEATURES */

 .mirju-why-features {
     display: grid;

     grid-template-columns:
         repeat(5, minmax(0, 1fr));

     width: 100%;

     padding: 18px 20px;

     border-radius: 4px;

     background: #ffffff;

     box-sizing: border-box;
 }


 /* FEATURE ITEM */

 .mirju-why-item {
     display: flex;
     align-items: center;

     min-width: 0;

     padding: 8px 22px;

     box-sizing: border-box;
 }


 /* SEPARATOR */

 .mirju-why-item+.mirju-why-item {
     border-left: 1px solid #edf0e8;
 }


 /* ICON */

 .mirju-why-icon {
     display: flex;
     align-items: center;
     justify-content: center;

     flex: 0 0 52px;

     width: 52px;
     height: 52px;

     margin-right: 13px;

     color: #5d9140;
 }


 .mirju-why-icon svg {
     display: block;

     width: 46px;
     height: 46px;
 }


 /* CONTENT */

 .mirju-why-content {
     min-width: 0;
 }


 .mirju-why-content h3 {
     margin: 0 0 4px;

     color: #183d2b;

     font-size: 13px;
     font-weight: 700;

     line-height: 1.3;
 }


 .mirju-why-content p {
     margin: 0;

     color: #69746d;

     font-size: 10px;
     font-weight: 400;

     line-height: 1.45;
 }


 /* HOVER */
 .mirju-why-item:hover .mirju-why-icon {
     color: #67a832;
 }

 /* step 5 */
 .mirju-home-best-sellers {
     width: 100%;
     padding: 75px 0 80px;
     background: #ffffff;
 }


 /* SECTION HEADER */

 .mirju-home-best-sellers .mirju-section-header {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;

     gap: 30px;
     margin-bottom: 38px;
 }

 .mirju-home-best-sellers .mirju-section-heading {
     min-width: 0;
 }

 .mirju-home-best-sellers .mirju-section-eyebrow {
     display: block;
     margin-bottom: 9px;

     color: #70a83b;

     font-size: 12px;
     font-weight: 700;
     letter-spacing: 1.4px;

     text-transform: uppercase;
 }

 .mirju-home-best-sellers .mirju-section-heading h2 {
     margin: 0 0 9px;

     color: #073b27;

     font-family: var(--mirju-ui-font) !important;


     font-size: 36px;
     font-weight: 700;
     line-height: 1.15;
 }

 .mirju-home-best-sellers .mirju-section-heading p {
     max-width: 600px;

     margin: 0;

     color: #68756f;

     font-size: 15px;
     line-height: 1.6;
 }


 /* VIEW ALL */

 .mirju-home-best-sellers .mirju-section-view-all {
     display: inline-flex;
     align-items: center;

     flex: 0 0 auto;

     gap: 8px;

     padding-bottom: 4px;

     color: #073b27;

     font-size: 14px;
     font-weight: 700;

     text-decoration: none !important;

     transition:
         color 0.2s ease,
         gap 0.2s ease;
 }

 .mirju-home-best-sellers .mirju-section-view-all:hover {
     gap: 12px;
     color: #67a832;
 }

 .mirju-home-best-sellers .mirju-hero-btn-arrow {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     width: 18px;
     height: 18px;
 }

 .mirju-home-best-sellers .mirju-hero-btn-arrow svg {
     display: block;

     width: 18px;
     height: 18px;
 }


 /* =========================================================
   BEST-SELLER PRODUCT OVERRIDES
   Shared product styles come from the base product components above.
   Only values that differ for this section are defined here.
========================================================= */

 .mirju-home-best-sellers .mirju-product-grid {
     gap: 22px;
 }

 .mirju-home-best-sellers .mirju-product-card {
     border: 1px solid #e5ebe6;
     border-radius: 12px;
     transition:
         border-color 0.25s ease,
         box-shadow 0.25s ease;
 }

 .mirju-home-best-sellers .mirju-product-card:hover {
     border-color: #d4e1d7;
     box-shadow: 0 14px 32px rgba(7, 59, 39, 0.10);
 }

 .mirju-home-best-sellers .mirju-product-image {
     height: 285px;
     background: #f5f7f3;
 }

 .mirju-home-best-sellers .mirju-product-image img {
     transition: transform 0.45s ease;
 }

 .mirju-home-best-sellers .mirju-product-card:hover .mirju-product-image img {
     transform: scale(1.045);
 }

 .mirju-home-best-sellers .mirju-product-badge {
     top: 14px;
     left: 14px;
     min-height: 28px;
     padding: 0 11px;
     border-radius: 5px;
     background: #073b27;
     font-size: 10px;
     letter-spacing: 0.7px;
 }

 .mirju-home-best-sellers .mirju-product-content {
     flex: 1;
     padding: 18px 18px 17px;
 }

 .mirju-home-best-sellers .mirju-product-category {
     margin-bottom: 6px;
     color: #72a63e;
     font-size: 10px;
     letter-spacing: 0.9px;
     line-height: 1.3;
 }

 .mirju-home-best-sellers .mirju-product-title {
     min-height: 45px;
     margin-bottom: 10px;
     font-size: 16px;
     line-height: 1.4;
 }

 .mirju-home-best-sellers .mirju-product-rating {
     gap: 7px;
     min-height: 17px;
     margin-bottom: 15px;
 }

 .mirju-home-best-sellers .mirju-stars {
     font-size: 12px;
     letter-spacing: 1px;
 }

 .mirju-home-best-sellers .mirju-rating-count {
     color: #8a958e;
     font-size: 11px;
 }

 .mirju-home-best-sellers .mirju-product-bottom {
     gap: 12px;
     padding-top: 14px;
 }

 .mirju-home-best-sellers .mirju-product-price {
     font-size: 19px;
 }

 .mirju-home-best-sellers .mirju-product-price del {
     margin-right: 6px;
     font-size: 12px;
 }

 .mirju-home-best-sellers .mirju-product-actions {
     flex-direction: row;
     flex-wrap: nowrap;
     gap: 6px;
 }

 .mirju-home-best-sellers .mirju-product-cart {
     white-space: nowrap;
     transition:
         background 0.2s ease,
         border-color 0.2s ease;
 }

 /* =========================================================
   MEET OUR SELLERS
========================================================= */

 .mirju-home-sellers {
     width: 100%;
     padding: 55px 0 65px;
     background: #ffffff;
 }


 /* =========================================================
   SECTION HEADER
========================================================= */

 .mirju-home-sellers .mirju-section-header {
     display: flex;
     align-items: flex-end;
     justify-content: space-between;
     gap: 25px;
     margin-bottom: 25px;
 }

 .mirju-home-sellers .mirju-section-heading {
     min-width: 0;
 }

 .mirju-home-sellers .mirju-section-eyebrow {
     display: block;
     margin-bottom: 6px;

     color: #70a83b;

     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1.2px;
     line-height: 1.2;

     text-transform: uppercase;
 }

 .mirju-home-sellers .mirju-section-heading h2 {
     margin: 0 0 6px;

     color: #073b27;

     font-family: var(--mirju-ui-font) !important;

     font-size: 32px;
     font-weight: 700;

     line-height: 1.15;
 }

 .mirju-home-sellers .mirju-section-heading p {
     max-width: 580px;

     margin: 0;

     color: #68756f;

     font-size: 14px;
     line-height: 1.5;
 }


 /* =========================================================
   VIEW ALL
========================================================= */

 .mirju-home-sellers .mirju-section-view-all {
     display: inline-flex;
     align-items: center;

     gap: 7px;

     flex: 0 0 auto;

     color: #073b27;

     font-size: 13px;
     font-weight: 700;

     text-decoration: none !important;

     transition:
         color 0.2s ease,
         gap 0.2s ease;
 }

 .mirju-home-sellers .mirju-section-view-all:hover {
     gap: 10px;
     color: #67a832;
 }

 .mirju-home-sellers .mirju-hero-btn-arrow {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     width: 17px;
     height: 17px;
 }

 .mirju-home-sellers .mirju-hero-btn-arrow svg {
     display: block;

     width: 17px;
     height: 17px;
 }


 /* =========================================================
   SELLER GRID
========================================================= */

 .mirju-seller-grid {
     display: grid;

     grid-template-columns:
         repeat(4, minmax(0, 1fr));

     gap: 16px;

     width: 100%;
 }


 /* =========================================================
   SELLER CARD
========================================================= */

 .mirju-seller-card {
     display: flex;
     align-items: center;

     min-width: 0;
     height: 155px;

     padding: 14px;

     box-sizing: border-box;

     overflow: hidden;

     border: 1px solid #edf0eb;
     border-radius: 9px;

     background: #f7f8f5;

     transition:
         border-color 0.2s ease,
         box-shadow 0.2s ease;
 }

 .mirju-seller-card:hover {
     border-color: #d8e2d8;

     box-shadow:
         0 8px 20px rgba(7, 59, 39, 0.08);

 }


 /* =========================================================
   SELLER IMAGE
========================================================= */

 .mirju-seller-image {
     display: flex;
     align-items: center;
     justify-content: center;

     flex: 0 0 82px;

     width: 82px;
     height: 82px;

     margin-right: 13px;

     overflow: hidden;

     border-radius: 50%;

     background: #e8eee5;

     text-decoration: none !important;
 }

 .mirju-seller-image img {
     display: block;

     width: 100% !important;
     height: 100% !important;

     max-width: none !important;

     object-fit: cover !important;
     object-position: center;

     transition: transform 0.3s ease;
 }

 .mirju-seller-card:hover .mirju-seller-image img {
     transform: scale(1.05);
 }


 /* =========================================================
   SELLER CONTENT
========================================================= */

 .mirju-seller-content {
     display: flex;
     flex-direction: column;

     min-width: 0;
     flex: 1;

     padding: 0;
 }


 /* =========================================================
   SELLER NAME
========================================================= */

 .mirju-seller-name {
     display: block;

     margin: 0 0 3px;

     color: #123d2c;

     font-size: 13px;
     font-weight: 700;

     line-height: 1.25;
 }

 .mirju-seller-name a {
     color: inherit;

     text-decoration: none !important;
 }

 .mirju-seller-name a:hover {
     color: #67a832;
 }


 /* =========================================================
   SELLER LOCATION
========================================================= */

 .mirju-seller-location {
     display: block;

     margin-bottom: 5px;

     color: #7d8780;

     font-size: 10px;
     font-weight: 500;

     line-height: 1.25;

     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }


 /* =========================================================
   RATING
========================================================= */

 .mirju-seller-rating {
     display: flex;
     align-items: center;

     gap: 5px;

     margin-bottom: 6px;

     min-height: 13px;
 }

 .mirju-seller-stars {
     color: #e5a82d;

     font-size: 10px;
     font-weight: 700;

     letter-spacing: 0.5px;

     line-height: 1;
 }

 .mirju-seller-rating-value {
     color: #4d5a52;

     font-size: 10px;
     font-weight: 600;

     line-height: 1;
 }


 /* =========================================================
   SELLER DESCRIPTION
========================================================= */

 .mirju-seller-description {
     display: -webkit-box;

     margin: 0;

     color: #59655e;

     font-size: 10px;
     font-weight: 400;

     line-height: 1.45;

     overflow: hidden;

     text-overflow: ellipsis;
     line-clamp: 2;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
 }


 /* =========================================================
   SELLER PRODUCT COUNT
========================================================= */

 .mirju-seller-products {
     margin: 4px 0 0;

     color: #7d8780;

     font-size: 9px;

     line-height: 1.3;
 }


 /* =========================================================
   SELLER BUTTON
========================================================= */

 .mirju-seller-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     align-self: flex-start;

     gap: 5px;

     width: fit-content;

     min-height: 27px;

     margin-top: 7px;
     padding: 0 10px;

     box-sizing: border-box;

     border: 1px solid #073b27;
     border-radius: 4px;

     background: transparent;

     color: #073b27 !important;

     font-size: 9px;
     font-weight: 700;

     line-height: 1;

     text-decoration: none !important;

     transition:
         background 0.2s ease,
         color 0.2s ease,
         border-color 0.2s ease;
 }

 /* ARROW */

 .mirju-seller-btn span {
     display: inline-flex;
     align-items: center;
     justify-content: center;

     width: 12px;
     height: 12px;
 }

 .mirju-seller-btn svg {
     display: block;

     width: 12px;
     height: 12px;
 }


 /* HOVER */

 .mirju-seller-btn:hover {
     border-color: #073b27;

     background: #073b27;

     color: #ffffff !important;
 }

 .mirju-seller-btn:hover svg {
     color: #ffffff;
 }

 /* =========================================================
   MIRJU HOMEPAGE — RESPONSIVE CSS
   ========================================================= */


 /* =========================================================
   TABLET — 1024px and below
   ========================================================= */

 @media (max-width: 1024px) {

     /* -----------------------------------------------------
       GLOBAL CONTAINER
    ----------------------------------------------------- */

     .mirju-home-container {
         max-width: 100% !important;
         padding-left: 24px !important;
         padding-right: 24px !important;
     }


     /* -----------------------------------------------------
       HERO
    ----------------------------------------------------- */

     .mirju-home-hero-slider,
     .mirju-hero-slide,
     .mirju-hero-container {
         min-height: 400px !important;
     }

     .mirju-hero-content {
         width: 52% !important;
         padding: 30px 35px 30px 50px !important;
     }

     .mirju-hero-title {
         font-size: clamp(36px, 4.5vw, 50px) !important;
     }

     .mirju-hero-description {
         max-width: 430px !important;
         font-size: 15px !important;
     }

     .mirju-hero-image {
         width: 65% !important;
     }

     .mirju-hero-prev {
         left: 16px !important;
     }

     .mirju-hero-next {
         right: 16px !important;
     }


     /* -----------------------------------------------------
       CATEGORIES
    ----------------------------------------------------- */

     .mirju-home-categories {
         padding: 25px 0 30px !important;
     }

     .mirju-category-track {
         justify-content: flex-start !important;
         gap: 16px !important;
     }

     .mirju-category-item {
         flex-basis: 145px !important;
         width: 145px !important;
         min-width: 145px !important;
     }

     .mirju-category-icon {
         height: 120px !important;
         flex-basis: 120px !important;
     }


     /* -----------------------------------------------------
       TRENDING
    ----------------------------------------------------- */

     .mirju-home-trending {
         padding: 50px 0 55px !important;
     }

     .mirju-home-trending .mirju-section-heading h2 {
         font-size: 30px !important;
     }

     .mirju-product-grid {
         grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
         gap: 14px !important;
     }

     .mirju-product-image {
         height: 180px !important;
     }


     /* -----------------------------------------------------
       BEST SELLERS
    ----------------------------------------------------- */

     .mirju-home-best-sellers {
         padding: 60px 0 65px !important;
     }

     .mirju-home-best-sellers .mirju-section-heading h2 {
         font-size: 32px !important;
     }

     .mirju-home-best-sellers .mirju-product-grid {
         grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
         gap: 18px !important;
     }

     .mirju-home-best-sellers .mirju-product-image {
         height: 245px !important;
     }


     /* -----------------------------------------------------
       WHY CHOOSE MIRJU
    ----------------------------------------------------- */

     .mirju-why-features {
         grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
         padding: 16px !important;
     }

     .mirju-why-item {
         padding: 12px 16px !important;
     }

     .mirju-why-item:nth-child(4) {
         border-left: 0 !important;
     }


     /* -----------------------------------------------------
       SELLERS
    ----------------------------------------------------- */

     .mirju-home-sellers {
         padding: 50px 0 55px !important;
     }

     .mirju-seller-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
         gap: 14px !important;
     }

     .mirju-seller-card {
         height: 145px !important;
     }

 }


 /* =========================================================
   MOBILE — 767px and below
   ========================================================= */

 @media (max-width: 767px) {

     /* -----------------------------------------------------
       GLOBAL
    ----------------------------------------------------- */

     .mirju-home {
         overflow-x: hidden !important;
         width: 100% !important;
     }

     .mirju-home-container {
         width: 100% !important;
         padding-left: 16px !important;
         padding-right: 16px !important;
         box-sizing: border-box !important;
     }


     /* =====================================================
       HERO — IMAGE + CONTENT OVERLAY
       ===================================================== */

     .mirju-home-hero-slider,
     .mirju-hero-slide,
     .mirju-hero-container {
         min-height: 280px !important;
     }

     .mirju-home-hero-slider {
         position: relative !important;
         background: #f5f3e9 !important;
         overflow: hidden !important;
     }

     .mirju-hero-slide {
         position: absolute !important;
         inset: 0 !important;
         width: 100% !important;
         height: 100% !important;
     }

     .mirju-hero-slide.is-active {
         position: relative !important;
     }

     .mirju-hero-container {
         position: relative !important;
         display: flex !important;
         flex-direction: column !important;
         justify-content: flex-end !important;
         width: 100% !important;
         height: 100% !important;
         min-height: 350px !important;
         padding: 0 !important;
         box-sizing: border-box !important;
         overflow: hidden !important;
     }


     /* -----------------------------------------------------
       HERO IMAGE
       FULL HERO BACKGROUND
    ----------------------------------------------------- */

     .mirju-hero-image {
         position: absolute !important;

         top: 0 !important;
         right: 0 !important;
         bottom: 0 !important;
         left: 0 !important;

         width: 100% !important;
         height: 100% !important;

         overflow: hidden !important;

         z-index: 1 !important;
     }

     .mirju-hero-image img {
         width: 100% !important;
         height: 100% !important;

         object-fit: cover !important;
         object-position: center center !important;

         display: block !important;
     }


     /* -----------------------------------------------------
       HERO IMAGE OVERLAY
       DARKER AT BOTTOM SO TEXT IS READABLE
    ----------------------------------------------------- */

     .mirju-hero-image::before {
         content: "" !important;

         position: absolute !important;

         top: 0 !important;
         right: 0 !important;
         bottom: 0 !important;
         left: 0 !important;

         width: 100% !important;
         height: 100% !important;

         z-index: 2 !important;

         background:
             linear-gradient(to bottom,
                 rgba(245, 243, 233, 0.00) 0%,
                 rgba(245, 243, 233, 0.00) 38%,
                 rgba(245, 243, 233, 0.18) 50%,
                 rgba(245, 243, 233, 0.58) 68%,
                 rgba(245, 243, 233, 0.94) 84%,
                 #f5f3e9 100%) !important;

         pointer-events: none !important;
     }


     /* -----------------------------------------------------
       HERO CONTENT
       NOW OVER IMAGE
    ----------------------------------------------------- */

     .mirju-hero-content {
         position: absolute !important;

         top: auto !important;
         right: 0 !important;
         bottom: 0 !important;
         left: 0 !important;

         z-index: 5 !important;

         display: flex !important;
         flex-direction: column !important;

         width: 100% !important;
         max-width: 100% !important;

         margin: 0 !important;

         padding: 30px 24px 48px !important;

         justify-content: flex-end !important;
         box-sizing: border-box !important;
     }


     /* -----------------------------------------------------
       HERO TITLE
    ----------------------------------------------------- */

     .mirju-hero-title {
         max-width: 100% !important;

         margin-bottom: 14px !important;

         font-size: clamp(34px, 9vw, 46px) !important;

         line-height: 1.08 !important;
     }


     /* -----------------------------------------------------
       HERO DESCRIPTION
    ----------------------------------------------------- */

     .mirju-hero-description {
         max-width: 100% !important;

         margin-bottom: 22px !important;

         font-size: 14px !important;

         line-height: 1.55 !important;
     }


     /* -----------------------------------------------------
       HERO BUTTONS
    ----------------------------------------------------- */

     .mirju-hero-actions {
         display: flex !important;
         flex-wrap: wrap !important;

         gap: 10px !important;

         width: 100% !important;
     }

     .mirju-hero-btn {
         min-height: 42px !important;

         padding: 0 16px !important;

         font-size: 13px !important;
     }


     /* -----------------------------------------------------
       HERO ARROWS
    ----------------------------------------------------- */

     .mirju-hero-prev,
     .mirju-hero-next {
         top: 43% !important;

         width: 36px !important;
         height: 36px !important;

         z-index: 10 !important;
     }

     .mirju-hero-prev {
         left: 10px !important;
     }

     .mirju-hero-next {
         right: 10px !important;
     }


     /* -----------------------------------------------------
       DOTS
    ----------------------------------------------------- */

     .mirju-hero-dots {
         bottom: 14px !important;

         gap: 6px !important;

         z-index: 10 !important;
     }

     .mirju-hero-dot {
         width: 6px !important;
         height: 6px !important;
     }

     .mirju-hero-dot.is-active {
         width: 18px !important;
     }


     /* =====================================================
       CATEGORIES
    ===================================================== */

     .mirju-home-categories {
         padding: 24px 0 28px !important;
     }

     .mirju-category-header {
         align-items: center !important;
         gap: 15px !important;
         margin-bottom: 16px !important;
     }

     .mirju-category-eyebrow {
         margin-bottom: 4px !important;
         font-size: 10px !important;
     }

     .mirju-category-heading h2 {
         font-size: 24px !important;
     }

     .mirju-category-view-all {
         gap: 5px !important;
         font-size: 11px !important;
     }

     .mirju-category-view-all span {
         font-size: 15px !important;
     }


     /* -----------------------------------------------------
       CATEGORY TRACK
    ----------------------------------------------------- */

     .mirju-category-track {
         justify-content: flex-start !important;

         gap: 12px !important;

         padding: 5px 2px 10px !important;

         overflow-x: auto !important;

         scroll-snap-type: x mandatory !important;

         -webkit-overflow-scrolling: touch !important;
     }

     .mirju-category-item {
         flex: 0 0 130px !important;

         width: 130px !important;
         min-width: 130px !important;
         min-height: 160px !important;

         border-radius: 12px !important;

         scroll-snap-align: start !important;
     }

     .mirju-category-icon {
         height: 110px !important;
         flex: 0 0 110px !important;
     }

     .mirju-category-name {
         min-height: 50px !important;

         padding: 7px 8px !important;

         font-size: 12px !important;
     }


     /* =====================================================
       SECTION HEADERS
    ===================================================== */

     .mirju-home-trending .mirju-section-header,
     .mirju-home-best-sellers .mirju-section-header,
     .mirju-home-sellers .mirju-section-header {
         align-items: flex-end !important;

         gap: 15px !important;

         margin-bottom: 20px !important;
     }


     /* =====================================================
       TRENDING
    ===================================================== */

     .mirju-home-trending {
         padding: 40px 0 45px !important;
     }

     .mirju-home-trending .mirju-section-eyebrow {
         font-size: 10px !important;
     }

     .mirju-home-trending .mirju-section-heading h2 {
         font-size: 26px !important;
     }

     .mirju-home-trending .mirju-section-heading p {
         max-width: 100% !important;
         font-size: 12px !important;
     }

     .mirju-home-trending .mirju-section-view-all {
         font-size: 11px !important;
     }


     /* -----------------------------------------------------
       PRODUCT GRID
    ----------------------------------------------------- */

     .mirju-product-grid {
         display: flex !important;
         flex-wrap: wrap !important;

         gap: 12px !important;

         width: 100% !important;
         max-width: 100% !important;

         box-sizing: border-box !important;
     }


     /* -----------------------------------------------------
       PRODUCT CARD
    ----------------------------------------------------- */

     .mirju-product-card {
         flex: 1 1 calc(50% - 6px) !important;

         width: calc(50% - 6px) !important;
         max-width: calc(50% - 6px) !important;

         min-width: 0 !important;

         border-radius: 7px !important;

         box-sizing: border-box !important;
     }


     /* -----------------------------------------------------
       PRODUCT IMAGE
    ----------------------------------------------------- */

     .mirju-product-image {
         height: 165px !important;
     }


     /* -----------------------------------------------------
       PRODUCT CONTENT
    ----------------------------------------------------- */

     .mirju-product-content {
         padding: 10px !important;
     }

     .mirju-product-category {
         margin-bottom: 4px !important;
         font-size: 8px !important;
     }

     .mirju-product-title {
         min-height: 32px !important;
         max-height: 32px !important;

         margin-bottom: 5px !important;

         font-size: 12px !important;
     }

     .mirju-product-rating {
         gap: 4px !important;

         min-height: 12px !important;

         margin-bottom: 5px !important;
     }

     .mirju-stars {
         font-size: 9px !important;
     }

     .mirju-rating-count {
         font-size: 8px !important;
     }


     /* -----------------------------------------------------
       PRICE + BUTTON
    ----------------------------------------------------- */

     .mirju-product-bottom {
         gap: 6px !important;

         padding-top: 9px !important;
     }

     .mirju-product-price {
         font-size: 15px !important;
     }

     .mirju-product-price del {
         margin-right: 3px !important;
         font-size: 9px !important;
     }

     .mirju-product-actions {
         gap: 4px !important;
     }

     .mirju-product-cart {
         min-width: 48px !important;
         height: 30px !important;

         padding: 0 6px !important;

         font-size: 10px !important;
     }


     /* -----------------------------------------------------
       BADGE
    ----------------------------------------------------- */

     .mirju-product-badge {
         top: 8px !important;
         left: 8px !important;

         min-height: 22px !important;

         padding: 0 7px !important;

         font-size: 8px !important;
     }


     /* =====================================================
       BEST SELLERS
    ===================================================== */

     .mirju-home-best-sellers {
         padding: 48px 0 50px !important;
     }

     .mirju-home-best-sellers .mirju-section-header {
         margin-bottom: 22px !important;
     }

     .mirju-home-best-sellers .mirju-section-eyebrow {
         margin-bottom: 6px !important;
         font-size: 10px !important;
     }

     .mirju-home-best-sellers .mirju-section-heading h2 {
         margin-bottom: 6px !important;
         font-size: 28px !important;
     }

     .mirju-home-best-sellers .mirju-section-heading p {
         font-size: 12px !important;
     }

     .mirju-home-best-sellers .mirju-section-view-all {
         font-size: 11px !important;
     }


     /* -----------------------------------------------------
       BEST SELLER GRID
    ----------------------------------------------------- */

     .mirju-home-best-sellers .mirju-product-grid {
         display: flex !important;
         flex-wrap: wrap !important;

         gap: 12px !important;
     }

     .mirju-home-best-sellers .mirju-product-card {
         flex: 1 1 calc(50% - 6px) !important;

         width: calc(50% - 6px) !important;
         max-width: calc(50% - 6px) !important;

         min-width: 0 !important;
     }

     .mirju-home-best-sellers .mirju-product-image {
         height: 205px !important;
     }

     .mirju-home-best-sellers .mirju-product-content {
         padding: 12px 11px 11px !important;
     }

     .mirju-home-best-sellers .mirju-product-category {
         font-size: 8px !important;
     }

     .mirju-home-best-sellers .mirju-product-title {
         min-height: 36px !important;

         margin-bottom: 7px !important;

         font-size: 12px !important;
     }

     .mirju-home-best-sellers .mirju-product-rating {
         margin-bottom: 8px !important;
     }

     .mirju-home-best-sellers .mirju-stars {
         font-size: 10px !important;
     }

     .mirju-home-best-sellers .mirju-rating-count {
         font-size: 8px !important;
     }

     .mirju-home-best-sellers .mirju-product-bottom {
         padding-top: 9px !important;
     }

     .mirju-home-best-sellers .mirju-product-price {
         font-size: 16px !important;
     }

     .mirju-home-best-sellers .mirju-product-cart {
         min-width: 50px !important;

         height: 31px !important;

         padding: 0 7px !important;

         font-size: 10px !important;
     }


     /* =====================================================
       WHY CHOOSE MIRJU
    ===================================================== */

     .mirju-why-choose {
         padding: 30px 0 34px !important;
     }

     .mirju-why-header {
         margin-bottom: 18px !important;
     }

     .mirju-why-header h2 {
         font-size: 25px !important;
     }

     .mirju-why-header p {
         padding: 0 10px !important;
         font-size: 12px !important;
     }


     /* -----------------------------------------------------
       FEATURES
    ----------------------------------------------------- */

     .mirju-why-features {
         display: grid !important;

         grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

         padding: 8px !important;
     }

     .mirju-why-item {
         min-height: 75px !important;

         padding: 10px !important;

         min-width: 0 !important;
     }

     .mirju-why-item:nth-child(odd) {
         border-left: 0 !important;
     }

     .mirju-why-item:nth-child(even) {
         border-left: 1px solid #edf0e8 !important;
     }

     .mirju-why-item:nth-child(n + 3) {
         border-top: 1px solid #edf0e8 !important;
     }

     .mirju-why-icon {
         flex: 0 0 40px !important;

         width: 40px !important;
         height: 40px !important;

         margin-right: 9px !important;
     }

     .mirju-why-icon svg {
         width: 34px !important;
         height: 34px !important;
     }

     .mirju-why-content h3 {
         margin-bottom: 3px !important;

         font-size: 11px !important;
     }

     .mirju-why-content p {
         font-size: 9px !important;
     }


     /* =====================================================
       SELLERS
    ===================================================== */

     .mirju-home-sellers {
         padding: 40px 0 45px !important;
     }

     .mirju-home-sellers .mirju-section-eyebrow {
         font-size: 10px !important;
     }

     .mirju-home-sellers .mirju-section-heading h2 {
         font-size: 26px !important;
     }

     .mirju-home-sellers .mirju-section-heading p {
         font-size: 12px !important;
     }

     .mirju-home-sellers .mirju-section-view-all {
         font-size: 11px !important;
     }


     /* -----------------------------------------------------
       SELLER GRID
    ----------------------------------------------------- */

     .mirju-seller-grid {
         display: grid !important;

         grid-template-columns: 1fr !important;

         gap: 10px !important;
     }


     /* -----------------------------------------------------
       SELLER CARD
    ----------------------------------------------------- */

     .mirju-seller-card {
         height: auto !important;

         min-height: 125px !important;

         padding: 12px !important;

         box-sizing: border-box !important;
     }

     .mirju-seller-image {
         flex: 0 0 72px !important;

         width: 72px !important;
         height: 72px !important;

         margin-right: 11px !important;
     }

     .mirju-seller-name {
         font-size: 12px !important;
     }

     .mirju-seller-location {
         font-size: 9px !important;
     }

     .mirju-seller-rating {
         margin-bottom: 5px !important;
     }

     .mirju-seller-stars,
     .mirju-seller-rating-value {
         font-size: 9px !important;
     }

     .mirju-seller-description {
         font-size: 9px !important;
     }

     .mirju-seller-products {
         font-size: 8px !important;
     }

     .mirju-seller-btn {
         min-height: 25px !important;

         margin-top: 6px !important;

         padding: 0 9px !important;

         font-size: 8px !important;
     }

 }


 /* =========================================================
   SMALL MOBILE — 480px and below
   ========================================================= */

 @media (max-width: 480px) {

     /* -----------------------------------------------------
       CONTAINER
    ----------------------------------------------------- */

     .mirju-home-container {
         padding-left: 12px !important;
         padding-right: 12px !important;
     }


     /* =====================================================
       HERO
    ===================================================== */

     .mirju-home-hero-slider,
     .mirju-hero-slide,
     .mirju-hero-container {
         min-height: 280px !important;
     }

     /*
     * IMAGE STILL FILLS THE WHOLE HERO.
     * We only reduce the hero height here.
     */

     .mirju-hero-image {
         height: 100% !important;
     }

     .mirju-hero-content {
         padding: 25px 18px 42px !important;
     }

     .mirju-hero-title {
         font-size: 32px !important;

         margin-bottom: 12px !important;
     }

     .mirju-hero-description {
         font-size: 13px !important;

         line-height: 1.5 !important;

         margin-bottom: 18px !important;
     }

     .mirju-hero-actions {
         gap: 8px !important;
     }

     .mirju-hero-btn {
         min-height: 40px !important;

         padding: 0 13px !important;

         font-size: 12px !important;
     }

     .mirju-hero-prev,
     .mirju-hero-next {
         width: 32px !important;
         height: 32px !important;
     }

     .mirju-hero-prev svg,
     .mirju-hero-next svg {
         width: 14px !important;
         height: 14px !important;
     }


     /* =====================================================
       CATEGORIES
    ===================================================== */

     .mirju-home-categories {
         padding: 20px 0 24px !important;
     }

     .mirju-category-header {
         margin-bottom: 13px !important;
     }

     .mirju-category-heading h2 {
         font-size: 22px !important;
     }

     .mirju-category-eyebrow {
         font-size: 9px !important;
     }

     .mirju-category-item {
         flex-basis: 115px !important;

         width: 115px !important;
         min-width: 115px !important;
         min-height: 145px !important;

         border-radius: 10px !important;
     }

     .mirju-category-icon {
         height: 98px !important;

         flex-basis: 98px !important;
     }

     .mirju-category-name {
         min-height: 47px !important;

         padding: 6px !important;

         font-size: 11px !important;
     }


     /* =====================================================
       TRENDING / BEST SELLERS HEADINGS
    ===================================================== */

     .mirju-home-trending .mirju-section-heading h2,
     .mirju-home-sellers .mirju-section-heading h2 {
         font-size: 23px !important;
     }

     .mirju-home-best-sellers .mirju-section-heading h2 {
         font-size: 24px !important;
     }


     /* =====================================================
       PRODUCT CARDS
    ===================================================== */

     .mirju-product-grid,
     .mirju-home-best-sellers .mirju-product-grid {
         gap: 9px !important;
     }

     .mirju-product-image {
         height: 145px !important;
     }

     .mirju-home-best-sellers .mirju-product-image {
         height: 175px !important;
     }

     .mirju-product-content {
         padding: 9px 8px !important;
     }

     .mirju-product-category {
         font-size: 7px !important;
     }

     .mirju-product-title {
         min-height: 31px !important;
         max-height: 31px !important;

         font-size: 11px !important;
     }

     .mirju-product-rating {
         gap: 3px !important;
     }

     .mirju-stars {
         font-size: 8px !important;
     }

     .mirju-rating-count {
         font-size: 7px !important;
     }

     .mirju-product-bottom {
         gap: 4px !important;
         padding-top: 8px !important;
     }

     .mirju-product-price {
         font-size: 14px !important;
     }

     .mirju-product-price del {
         font-size: 8px !important;
     }

     .mirju-product-cart {
         min-width: 43px !important;

         height: 28px !important;

         padding: 0 5px !important;

         font-size: 9px !important;
     }

     .mirju-product-badge {
         top: 6px !important;
         left: 6px !important;

         min-height: 20px !important;

         padding: 0 6px !important;

         font-size: 7px !important;
     }


     /* -----------------------------------------------------
       BEST SELLERS
    ----------------------------------------------------- */

     .mirju-home-best-sellers .mirju-product-content {
         padding: 10px 8px !important;
     }

     .mirju-home-best-sellers .mirju-product-title {
         min-height: 32px !important;

         font-size: 11px !important;
     }

     .mirju-home-best-sellers .mirju-product-price {
         font-size: 14px !important;
     }

     .mirju-home-best-sellers .mirju-product-cart {
         min-width: 44px !important;

         height: 28px !important;

         padding: 0 5px !important;

         font-size: 9px !important;
     }


     /* =====================================================
       WHY CHOOSE
    ===================================================== */

     .mirju-why-choose {
         padding: 26px 0 30px !important;
     }

     .mirju-why-header h2 {
         font-size: 22px !important;
     }

     .mirju-why-header p {
         font-size: 11px !important;
     }

     .mirju-why-features {
         padding: 5px !important;
     }

     .mirju-why-item {
         min-height: 70px !important;

         padding: 8px !important;
     }

     .mirju-why-icon {
         flex-basis: 34px !important;

         width: 34px !important;
         height: 34px !important;

         margin-right: 7px !important;
     }

     .mirju-why-icon svg {
         width: 29px !important;
         height: 29px !important;
     }

     .mirju-why-content h3 {
         font-size: 10px !important;
     }

     .mirju-why-content p {
         font-size: 8px !important;
     }


     /* =====================================================
       SELLERS
    ===================================================== */

     .mirju-home-sellers {
         padding: 34px 0 38px !important;
     }

     .mirju-seller-card {
         min-height: 115px !important;

         padding: 10px !important;
     }

     .mirju-seller-image {
         flex-basis: 62px !important;

         width: 62px !important;
         height: 62px !important;

         margin-right: 9px !important;
     }

     .mirju-seller-name {
         font-size: 11px !important;
     }

     .mirju-seller-location {
         font-size: 8px !important;
     }

     .mirju-seller-description {
         font-size: 8px !important;
     }

     .mirju-seller-products {
         font-size: 7px !important;
     }

     .mirju-seller-btn {
         min-height: 23px !important;

         margin-top: 5px !important;

         padding: 0 8px !important;

         font-size: 7px !important;
     }

     .mirju-seller-btn span,
     .mirju-seller-btn svg {
         width: 10px !important;
         height: 10px !important;
     }

 }


 /* =========================================================
   EXTRA SMALL — 360px and below
   ========================================================= */

 @media (max-width: 360px) {

     .mirju-home-container {
         padding-left: 10px !important;
         padding-right: 10px !important;
     }


     /* =====================================================
       HERO
    ===================================================== */

     .mirju-home-hero-slider,
     .mirju-hero-slide,
     .mirju-hero-container {
         min-height: 280px !important;
     }

     .mirju-hero-image {
         height: 100% !important;
     }

     .mirju-hero-content {
         padding: 20px 15px 38px !important;
     }

     .mirju-hero-title {
         font-size: 29px !important;
     }

     .mirju-hero-description {
         font-size: 12px !important;
     }

     .mirju-hero-btn {
         min-height: 38px !important;

         padding: 0 11px !important;

         font-size: 11px !important;
     }


     /* =====================================================
       CATEGORY
    ===================================================== */

     .mirju-category-item {
         flex-basis: 105px !important;

         width: 105px !important;
         min-width: 105px !important;
     }

     .mirju-category-icon {
         height: 90px !important;

         flex-basis: 90px !important;
     }

     .mirju-category-name {
         font-size: 10px !important;
     }


     /* =====================================================
       PRODUCT
    ===================================================== */

     .mirju-product-image {
         height: 130px !important;
     }

     .mirju-home-best-sellers .mirju-product-image {
         height: 155px !important;
     }

     .mirju-product-price {
         font-size: 13px !important;
     }

     .mirju-product-cart {
         min-width: 40px !important;

         padding: 0 4px !important;

         font-size: 8px !important;
     }


     /* =====================================================
       WHY CHOOSE
    ===================================================== */

     .mirju-why-item {
         padding: 7px !important;
     }

     .mirju-why-icon {
         flex-basis: 30px !important;

         width: 30px !important;
         height: 30px !important;
     }

     .mirju-why-icon svg {
         width: 25px !important;
         height: 25px !important;
     }


     /* =====================================================
       SELLER
    ===================================================== */

     .mirju-seller-image {
         flex-basis: 56px !important;

         width: 56px !important;
         height: 56px !important;
     }

 }

 /* =========================================================
   MIRJU — NEW ARRIVALS
========================================================= */

.mirju-home-new-arrivals {
    width: 100% !important;

    padding: 55px 0 60px !important;

    background: #f7f8ed !important;

    box-sizing: border-box !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.mirju-home-new-arrivals .mirju-home-container {
    width: 100% !important;

    max-width: 1320px !important;

    margin: 0 auto !important;

    padding-left: 30px !important;
    padding-right: 30px !important;

    box-sizing: border-box !important;
}


/* =========================================================
   HEADER
========================================================= */

.mirju-home-new-arrivals .mirju-section-header {
    display: flex !important;

    align-items: flex-end !important;

    justify-content: space-between !important;

    width: 100% !important;

    gap: 30px !important;

    margin-bottom: 24px !important;
}


/* =========================================================
   HEADING
========================================================= */

.mirju-home-new-arrivals .mirju-section-heading {
    min-width: 0 !important;
}


.mirju-home-new-arrivals .mirju-section-eyebrow {
    display: block !important;

    margin: 0 0 5px !important;

    color: #70a83b !important;

    font-size: 11px !important;

    font-weight: 700 !important;

    line-height: 1.2 !important;

    letter-spacing: 1.2px !important;

    text-transform: uppercase !important;
}


.mirju-home-new-arrivals .mirju-section-heading h2 {
    margin: 0 0 6px !important;

    color: #073b27 !important;

    font-family: var(--mirju-ui-font) !important;

    font-size: 32px !important;

    font-weight: 700 !important;

    line-height: 1.15 !important;
}


.mirju-home-new-arrivals .mirju-section-heading p {
    max-width: 560px !important;

    margin: 0 !important;

    color: #68756f !important;

    font-size: 13px !important;

    font-weight: 400 !important;

    line-height: 1.5 !important;
}


/* =========================================================
   VIEW ALL
========================================================= */

.mirju-home-new-arrivals .mirju-section-view-all {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex: 0 0 auto !important;

    gap: 7px !important;

    margin-bottom: 3px !important;

    color: #073b27 !important;

    font-size: 12px !important;

    font-weight: 700 !important;

    line-height: 1 !important;

    text-decoration: none !important;

    white-space: nowrap !important;

    transition:
        color 0.2s ease,
        gap 0.2s ease !important;
}


.mirju-home-new-arrivals .mirju-section-view-all:hover {
    gap: 10px !important;

    color: #67a832 !important;
}


.mirju-home-new-arrivals .mirju-section-view-all
.mirju-hero-btn-arrow {
    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 17px !important;

    height: 17px !important;

    flex: 0 0 17px !important;
}


.mirju-home-new-arrivals .mirju-section-view-all
.mirju-hero-btn-arrow svg {
    display: block !important;

    width: 16px !important;

    height: 16px !important;

    max-width: none !important;
}


/* =========================================================
   PRODUCT SLIDER
========================================================= */

.mirju-home-new-arrivals .mirju-product-slider {
    position: relative !important;

    width: 100% !important;

    box-sizing: border-box !important;
}


/* =========================================================
   PRODUCT TRACK
========================================================= */

.mirju-home-new-arrivals .mirju-product-track {
    display: flex !important;

    align-items: stretch !important;

    gap: 16px !important;

    width: 100% !important;

    overflow-x: auto !important;

    overflow-y: hidden !important;

    scroll-behavior: smooth !important;

    scrollbar-width: none !important;

    -ms-overflow-style: none !important;

    box-sizing: border-box !important;
}


.mirju-home-new-arrivals .mirju-product-track::-webkit-scrollbar {
    display: none !important;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.mirju-home-new-arrivals .mirju-product-card {
    flex: 0 0 calc(
        (100% - 48px) / 4
    ) !important;

    min-width: 0 !important;

    width: calc(
        (100% - 48px) / 4
    ) !important;

    height: auto !important;
}


/* =========================================================
   SLIDER ARROWS
========================================================= */

.mirju-home-new-arrivals
.mirju-product-prev,

.mirju-home-new-arrivals
.mirju-product-next {
    position: absolute !important;

    top: 50% !important;

    z-index: 10 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 38px !important;

    height: 38px !important;

    padding: 0 !important;

    border: 1px solid #d9e1dc !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    color: #073b27 !important;

    cursor: pointer !important;

    transform: translateY(-50%) !important;

    box-shadow:
        0 5px 15px rgba(
            7,
            59,
            39,
            0.10
        ) !important;

    transition:
        background 0.2s ease,
        color 0.2s ease ,
        border-color 0.2s ease ,
        transform 0.2s ease !important;
}


.mirju-home-new-arrivals
.mirju-product-prev {
    left: -19px !important;
}


.mirju-home-new-arrivals
.mirju-product-next {
    right: -19px !important;
}


.mirju-home-new-arrivals
.mirju-product-prev svg,

.mirju-home-new-arrivals
.mirju-product-next svg {
    width: 19px !important;

    height: 19px !important;

    max-width: none !important;
}


.mirju-home-new-arrivals
.mirju-product-prev:hover,

.mirju-home-new-arrivals
.mirju-product-next:hover {
    border-color: #073b27 !important;

    background: #073b27 !important;

    color: #ffffff !important;

    transform:
        translateY(-50%)
        scale(1.05) !important;
}


/* =========================================================
   NEW BADGE
========================================================= */

.mirju-home-new-arrivals .mirju-product-badge {
    background: #70a83b !important;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1500px) {

    .mirju-home-new-arrivals {
        padding-top: 65px !important;

        padding-bottom: 70px !important;
    }


    .mirju-home-new-arrivals
    .mirju-home-container {
        max-width: 1400px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-track {
        gap: 18px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-card {
        flex-basis: calc(
            (100% - 54px) / 4
        ) !important;

        width: calc(
            (100% - 54px) / 4
        ) !important;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .mirju-home-new-arrivals
    .mirju-home-container {
        padding-left: 25px !important;

        padding-right: 25px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-track {
        gap: 13px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-card {
        flex-basis: calc(
            (100% - 26px) / 3
        ) !important;

        width: calc(
            (100% - 26px) / 3
        ) !important;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .mirju-home-new-arrivals {
        padding-top: 50px !important;

        padding-bottom: 55px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-heading h2 {
        font-size: 29px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-heading p {
        font-size: 12px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-track {
        gap: 14px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-card {
        flex-basis: calc(
            (100% - 28px) / 3
        ) !important;

        width: calc(
            (100% - 28px) / 3
        ) !important;
    }

}


/* =========================================================
   MOBILE / 767px
========================================================= */

@media (max-width: 767px) {

    .mirju-home-new-arrivals {
        padding: 42px 0 48px !important;
    }


    .mirju-home-new-arrivals
    .mirju-home-container {
        padding-left: 18px !important;

        padding-right: 18px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-header {
        align-items: flex-start !important;

        gap: 10px !important;

        margin-bottom: 20px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-heading {
        flex: 1 1 auto !important;

        min-width: 0 !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-heading h2 {
        font-size: 27px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-heading p {
        max-width: 100% !important;

        font-size: 12px !important;

        line-height: 1.45 !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-view-all {
        margin-top: 5px !important;

        font-size: 11px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-view-all
    .mirju-hero-btn-arrow {
        width: 15px !important;

        height: 15px !important;

        flex-basis: 15px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-view-all
    .mirju-hero-btn-arrow svg {
        width: 14px !important;

        height: 14px !important;
    }


    /* MOBILE CARD */

    .mirju-home-new-arrivals
    .mirju-product-track {
        gap: 12px !important;

        padding-left: 1px !important;

        padding-right: 1px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-card {
        flex: 0 0 calc(
            (100% - 12px) / 2
        ) !important;

        width: calc(
            (100% - 12px) / 2
        ) !important;
    }


    /* ARROWS */

    .mirju-home-new-arrivals
    .mirju-product-prev,

    .mirju-home-new-arrivals
    .mirju-product-next {
        width: 32px !important;

        height: 32px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-prev {
        left: -8px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-next {
        right: -8px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-prev svg,

    .mirju-home-new-arrivals
    .mirju-product-next svg {
        width: 16px !important;

        height: 16px !important;
    }

}


/* =========================================================
   SMALL MOBILE — 540px
========================================================= */

@media (max-width: 540px) {

    .mirju-home-new-arrivals {
        padding: 38px 0 44px !important;
    }


    .mirju-home-new-arrivals
    .mirju-home-container {
        padding-left: 14px !important;

        padding-right: 14px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-heading h2 {
        font-size: 24px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-heading p {
        font-size: 11px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-eyebrow {
        font-size: 9px !important;

        letter-spacing: 1px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-view-all {
        font-size: 10px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-track {
        gap: 10px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-card {
        flex: 0 0 calc(
            (100% - 10px) / 2
        ) !important;

        width: calc(
            (100% - 10px) / 2
        ) !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-prev,

    .mirju-home-new-arrivals
    .mirju-product-next {
        width: 30px !important;

        height: 30px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-prev {
        left: -7px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-next {
        right: -7px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-prev svg,

    .mirju-home-new-arrivals
    .mirju-product-next svg {
        width: 15px !important;

        height: 15px !important;
    }

}


/* =========================================================
   VERY SMALL — 380px
========================================================= */

@media (max-width: 380px) {

    .mirju-home-new-arrivals
    .mirju-home-container {
        padding-left: 10px !important;

        padding-right: 10px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-heading h2 {
        font-size: 22px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-heading p {
        font-size: 10px !important;
    }


    .mirju-home-new-arrivals
    .mirju-section-view-all {
        font-size: 9px !important;

        gap: 4px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-track {
        gap: 8px !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-card {
        flex: 0 0 calc(
            (100% - 8px) / 2
        ) !important;

        width: calc(
            (100% - 8px) / 2
        ) !important;
    }


    .mirju-home-new-arrivals
    .mirju-product-prev,

    .mirju-home-new-arrivals
    .mirju-product-next {
        width: 28px !important;

        height: 28px !important;
    }

}
/* =========================================================
   MIRJU CUSTOMER REVIEWS
   ========================================================= */

.mirju-home-reviews {
    width: 100% !important;

    padding: 70px 0 75px !important;

    background: #ffffff !important;

    overflow: hidden !important;

    box-sizing: border-box !important;
}


/* =========================================================
   GLOBAL BOX SIZING
   ========================================================= */

.mirju-home-reviews *,
.mirju-home-reviews *::before,
.mirju-home-reviews *::after {
    box-sizing: border-box !important;
}


/* =========================================================
   REVIEWS GRID
   ========================================================= */

.mirju-reviews-grid {
    display: grid !important;

    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    gap: 18px !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* =========================================================
   REVIEW CARD
   ========================================================= */

.mirju-review-card {
    position: relative !important;

    display: flex !important;

    flex-direction: column !important;

    width: 100% !important;

    min-width: 0 !important;

    height: 100% !important;

    margin: 0 !important;

    padding: 22px !important;

    background: #ffffff !important;

    border: 1px solid #e8ece5 !important;

    border-radius: 14px !important;

    box-shadow: 0 5px 20px rgba(11, 93, 59, 0.05) !important;

    overflow: hidden !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease !important;
}


.mirju-review-card:hover {
    transform: translateY(-4px) !important;

    border-color: #d9e3d9 !important;

    box-shadow: 0 12px 30px rgba(11, 93, 59, 0.09) !important;
}


/* =========================================================
   REVIEW TOP
   ========================================================= */

.mirju-review-top {
    display: flex !important;

    align-items: flex-start !important;

    justify-content: space-between !important;

    width: 100% !important;

    min-width: 0 !important;

    gap: 12px !important;

    margin: 0 0 18px !important;

    padding: 0 !important;
}


/* =========================================================
   CUSTOMER
   ========================================================= */

.mirju-review-customer {
    display: flex !important;

    align-items: center !important;

    flex: 1 1 auto !important;

    min-width: 0 !important;

    gap: 10px !important;
}


/* =========================================================
   AVATAR
   ========================================================= */

.mirju-review-avatar {
    display: block !important;

    flex: 0 0 44px !important;

    width: 44px !important;

    height: 44px !important;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden !important;

    border-radius: 50% !important;

    background: #f3f5ef !important;
}


.mirju-review-avatar img,
.mirju-review-avatar-img {
    display: block !important;

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    margin: 0 !important;

    padding: 0 !important;

    object-fit: cover !important;

    border: 0 !important;
}


/* =========================================================
   CUSTOMER INFO
   ========================================================= */

.mirju-review-customer-info {
    flex: 1 1 auto !important;

    min-width: 0 !important;

    overflow: hidden !important;
}


/* =========================================================
   CUSTOMER NAME
   ========================================================= */

.mirju-review-name {
    display: block !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 0 3px !important;

    padding: 0 !important;

    overflow: hidden !important;

    color: #173d2b !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 13px !important;

    font-weight: 600 !important;

    line-height: 1.3 !important;

    white-space: nowrap !important;

    text-overflow: ellipsis !important;
}


/* =========================================================
   VERIFIED BUYER
   ========================================================= */

.mirju-review-verified {
    display: flex !important;

    align-items: center !important;

    width: max-content !important;

    max-width: 100% !important;

    min-width: 0 !important;

    gap: 4px !important;

    margin: 0 !important;

    padding: 0 !important;

    color: #6f806f !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 9px !important;

    font-weight: 400 !important;

    line-height: 1.2 !important;

    white-space: nowrap !important;
}


.mirju-review-verified svg {
    display: block !important;

    flex: 0 0 12px !important;

    width: 12px !important;

    height: 12px !important;

    margin: 0 !important;

    color: #0b5d3b !important;
}


/* =========================================================
   RATING
   ========================================================= */

.mirju-review-rating {
    display: flex !important;

    align-items: center !important;

    justify-content: flex-end !important;

    flex: 0 0 auto !important;

    margin: 0 !important;

    padding: 0 !important;
}


.mirju-review-stars {
    display: flex !important;

    align-items: center !important;

    flex-wrap: nowrap !important;

    gap: 2px !important;

    white-space: nowrap !important;
}


.mirju-review-stars svg {
    display: block !important;

    flex: 0 0 13px !important;

    width: 13px !important;

    height: 13px !important;

    margin: 0 !important;

    padding: 0 !important;

    fill: #d9ded8 !important;
}


.mirju-review-stars svg.is-filled {
    fill: #e67e22 !important;
}


/* =========================================================
   REVIEW CONTENT
   ========================================================= */

.mirju-review-content {
    flex: 1 1 auto !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 0 20px !important;

    padding: 0 !important;
}


.mirju-review-content p {
    display: -webkit-box !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden !important;

    color: #526157 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 12px !important;

    font-weight: 400 !important;

    line-height: 1.7 !important;

    -webkit-box-orient: vertical !important;

    -webkit-line-clamp: 4 !important;
}


/* =========================================================
   PRODUCT LINK
   ========================================================= */

.mirju-review-product {
    display: flex !important;

    align-items: center !important;

    width: 100% !important;

    min-width: 0 !important;

    gap: 10px !important;

    margin: 0 !important;

    padding: 13px 0 0 !important;

    border-top: 1px solid #edf0eb !important;

    text-decoration: none !important;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.mirju-review-product-image {
    display: block !important;

    flex: 0 0 46px !important;

    width: 46px !important;

    height: 46px !important;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden !important;

    border-radius: 8px !important;

    background: #f5f5ef !important;
}


.mirju-review-product-image img {
    display: block !important;

    width: 100% !important;

    height: 100% !important;

    max-width: none !important;

    margin: 0 !important;

    padding: 0 !important;

    object-fit: cover !important;
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.mirju-review-product-info {
    display: flex !important;

    flex-direction: column !important;

    flex: 1 1 auto !important;

    min-width: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden !important;
}


/* =========================================================
   PRODUCT LABEL
   ========================================================= */

.mirju-review-product-label {
    display: block !important;

    width: 100% !important;

    margin: 0 0 2px !important;

    padding: 0 !important;

    overflow: hidden !important;

    color: #8a958b !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 8px !important;

    font-weight: 500 !important;

    line-height: 1.3 !important;

    letter-spacing: 0.5px !important;

    text-transform: uppercase !important;

    white-space: nowrap !important;

    text-overflow: ellipsis !important;
}


/* =========================================================
   PRODUCT NAME
   ========================================================= */

.mirju-review-product-info strong {
    display: block !important;

    width: 100% !important;

    min-width: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

    overflow: hidden !important;

    color: #173d2b !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 10px !important;

    font-weight: 600 !important;

    line-height: 1.35 !important;

    white-space: nowrap !important;

    text-overflow: ellipsis !important;
}


/* =========================================================
   PRODUCT ARROW
   ========================================================= */

.mirju-review-product-arrow {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    flex: 0 0 24px !important;

    width: 24px !important;

    height: 24px !important;

    margin: 0 !important;

    padding: 0 !important;

    color: #0b5d3b !important;
}


.mirju-review-product-arrow svg {
    display: block !important;

    width: 15px !important;

    height: 15px !important;

    margin: 0 !important;
}


/* =========================================================
   NO REVIEWS
   ========================================================= */

.mirju-no-reviews {
    grid-column: 1 / -1 !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 35px !important;

    text-align: center !important;

    background: #f8f9f4 !important;

    border-radius: 12px !important;
}


.mirju-no-reviews p {
    margin: 0 !important;

    color: #667269 !important;

    font-family: "Poppins", sans-serif !important;

    font-size: 13px !important;

    line-height: 1.6 !important;
}


/* =========================================================
   TABLET
   1024px AND BELOW
   ========================================================= */

@media (max-width: 1024px) {

    .mirju-home-reviews {
        padding: 58px 0 62px !important;
    }


    .mirju-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 16px !important;
    }


    .mirju-review-card {
        padding: 19px !important;

        border-radius: 13px !important;
    }


    .mirju-review-top {
        margin-bottom: 16px !important;
    }


    .mirju-review-content {
        margin-bottom: 18px !important;
    }

}


/* =========================================================
   MOBILE
   767px AND BELOW
   ========================================================= */

@media (max-width: 767px) {

    .mirju-home-reviews {
        padding: 44px 0 50px !important;
    }


    /* -----------------------------------------------------
       GRID
    ----------------------------------------------------- */

    .mirju-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;

        width: 100% !important;
    }


    /* -----------------------------------------------------
       CARD
    ----------------------------------------------------- */

    .mirju-review-card {
        width: 100% !important;

        min-width: 0 !important;

        padding: 13px !important;

        border-radius: 10px !important;

        box-shadow: 0 3px 12px rgba(11, 93, 59, 0.045) !important;
    }


    .mirju-review-card:hover {
        transform: none !important;

        box-shadow: 0 3px 12px rgba(11, 93, 59, 0.045) !important;
    }


    /* -----------------------------------------------------
       TOP
    ----------------------------------------------------- */

    .mirju-review-top {
        align-items: flex-start !important;

        gap: 6px !important;

        margin-bottom: 12px !important;
    }


    /* -----------------------------------------------------
       CUSTOMER
    ----------------------------------------------------- */

    .mirju-review-customer {
        gap: 7px !important;
    }


    /* -----------------------------------------------------
       AVATAR
    ----------------------------------------------------- */

    .mirju-review-avatar {
        flex: 0 0 34px !important;

        width: 34px !important;

        height: 34px !important;
    }


    /* -----------------------------------------------------
       NAME
    ----------------------------------------------------- */

    .mirju-review-name {
        font-size: 10px !important;

        line-height: 1.3 !important;
    }


    /* -----------------------------------------------------
       VERIFIED
    ----------------------------------------------------- */

    .mirju-review-verified {
        gap: 3px !important;

        font-size: 7px !important;
    }


    .mirju-review-verified svg {
        flex-basis: 9px !important;

        width: 9px !important;

        height: 9px !important;
    }


    /* -----------------------------------------------------
       RATING
    ----------------------------------------------------- */

    .mirju-review-stars {
        gap: 1px !important;
    }


    .mirju-review-stars svg {
        flex-basis: 9px !important;

        width: 9px !important;

        height: 9px !important;
    }


    /* -----------------------------------------------------
       REVIEW TEXT
    ----------------------------------------------------- */

    .mirju-review-content {
        margin-bottom: 13px !important;
    }


    .mirju-review-content p {
        font-size: 9px !important;

        line-height: 1.55 !important;

        -webkit-line-clamp: 4 !important;
    }


    /* -----------------------------------------------------
       PRODUCT
    ----------------------------------------------------- */

    .mirju-review-product {
        gap: 6px !important;

        padding-top: 10px !important;
    }


    /* -----------------------------------------------------
       PRODUCT IMAGE
    ----------------------------------------------------- */

    .mirju-review-product-image {
        flex: 0 0 32px !important;

        width: 32px !important;

        height: 32px !important;

        border-radius: 6px !important;
    }


    /* -----------------------------------------------------
       PRODUCT INFO
    ----------------------------------------------------- */

    .mirju-review-product-label {
        margin-bottom: 2px !important;

        font-size: 6px !important;

        letter-spacing: 0.35px !important;
    }


    .mirju-review-product-info strong {
        font-size: 8px !important;

        line-height: 1.3 !important;
    }


    /* -----------------------------------------------------
       PRODUCT ARROW
    ----------------------------------------------------- */

    .mirju-review-product-arrow {
        flex: 0 0 18px !important;

        width: 18px !important;

        height: 18px !important;
    }


    .mirju-review-product-arrow svg {
        width: 11px !important;

        height: 11px !important;
    }

}


/* =========================================================
   SMALL MOBILE
   480px AND BELOW
   ========================================================= */

@media (max-width: 480px) {

    .mirju-home-reviews {
        padding: 38px 0 44px !important;
    }


    .mirju-reviews-grid {
        gap: 8px !important;
    }


    .mirju-review-card {
        padding: 11px !important;

        border-radius: 9px !important;
    }


    .mirju-review-top {
        gap: 5px !important;

        margin-bottom: 10px !important;
    }


    /* -----------------------------------------------------
       CUSTOMER
    ----------------------------------------------------- */

    .mirju-review-customer {
        gap: 6px !important;
    }


    .mirju-review-avatar {
        flex: 0 0 31px !important;

        width: 31px !important;

        height: 31px !important;
    }


    .mirju-review-name {
        font-size: 9px !important;
    }


    .mirju-review-verified {
        font-size: 6.5px !important;
    }


    .mirju-review-verified svg {
        flex-basis: 9px !important;

        width: 9px !important;

        height: 9px !important;
    }


    /* -----------------------------------------------------
       STARS
    ----------------------------------------------------- */

    .mirju-review-stars {
        gap: 1px !important;
    }


    .mirju-review-stars svg {
        flex-basis: 8px !important;

        width: 8px !important;

        height: 8px !important;
    }


    /* -----------------------------------------------------
       CONTENT
    ----------------------------------------------------- */

    .mirju-review-content {
        margin-bottom: 12px !important;
    }


    .mirju-review-content p {
        font-size: 8.5px !important;

        line-height: 1.55 !important;
    }


    /* -----------------------------------------------------
       PRODUCT
    ----------------------------------------------------- */

    .mirju-review-product {
        gap: 5px !important;

        padding-top: 9px !important;
    }


    .mirju-review-product-image {
        flex: 0 0 29px !important;

        width: 29px !important;

        height: 29px !important;

        border-radius: 5px !important;
    }


    .mirju-review-product-label {
        font-size: 5.5px !important;

        letter-spacing: 0.3px !important;
    }


    .mirju-review-product-info strong {
        font-size: 7.5px !important;
    }


    .mirju-review-product-arrow {
        flex: 0 0 17px !important;

        width: 17px !important;

        height: 17px !important;
    }


    .mirju-review-product-arrow svg {
        width: 10px !important;

        height: 10px !important;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   390px AND BELOW
   ========================================================= */

@media (max-width: 390px) {

    .mirju-reviews-grid {
        gap: 7px !important;
    }


    .mirju-review-card {
        padding: 10px !important;

        border-radius: 8px !important;
    }


    .mirju-review-top {
        gap: 4px !important;
    }


    .mirju-review-customer {
        gap: 5px !important;
    }


    .mirju-review-avatar {
        flex-basis: 29px !important;

        width: 29px !important;

        height: 29px !important;
    }


    .mirju-review-name {
        font-size: 8.5px !important;
    }


    .mirju-review-verified {
        font-size: 6px !important;
    }


    .mirju-review-verified svg {
        flex-basis: 8px !important;

        width: 8px !important;

        height: 8px !important;
    }


    .mirju-review-stars svg {
        flex-basis: 7px !important;

        width: 7px !important;

        height: 7px !important;
    }


    .mirju-review-content {
        margin-bottom: 11px !important;
    }


    .mirju-review-content p {
        font-size: 8px !important;

        line-height: 1.5 !important;
    }


    .mirju-review-product {
        gap: 4px !important;

        padding-top: 8px !important;
    }


    .mirju-review-product-image {
        flex-basis: 27px !important;

        width: 27px !important;

        height: 27px !important;
    }


    .mirju-review-product-label {
        font-size: 5px !important;
    }


    .mirju-review-product-info strong {
        font-size: 7px !important;
    }


    .mirju-review-product-arrow {
        flex-basis: 15px !important;

        width: 15px !important;

        height: 15px !important;
    }


    .mirju-review-product-arrow svg {
        width: 9px !important;

        height: 9px !important;
    }

}


/* =========================================================
   EXTRA SMALL
   360px AND BELOW
   ========================================================= */

@media (max-width: 360px) {

    .mirju-home-reviews {
        padding: 32px 0 38px !important;
    }


    .mirju-reviews-grid {
        gap: 6px !important;
    }


    .mirju-review-card {
        padding: 9px !important;

        border-radius: 7px !important;
    }


    .mirju-review-top {
        margin-bottom: 9px !important;
    }


    .mirju-review-avatar {
        flex-basis: 27px !important;

        width: 27px !important;

        height: 27px !important;
    }


    .mirju-review-name {
        font-size: 8px !important;
    }


    .mirju-review-verified {
        font-size: 5.5px !important;
    }


    .mirju-review-verified svg {
        flex-basis: 7px !important;

        width: 7px !important;

        height: 7px !important;
    }


    .mirju-review-stars svg {
        flex-basis: 6.5px !important;

        width: 6.5px !important;

        height: 6.5px !important;
    }


    .mirju-review-content {
        margin-bottom: 10px !important;
    }


    .mirju-review-content p {
        font-size: 7.5px !important;

        line-height: 1.5 !important;
    }


    .mirju-review-product {
        padding-top: 7px !important;

        gap: 4px !important;
    }


    .mirju-review-product-image {
        flex-basis: 25px !important;

        width: 25px !important;

        height: 25px !important;

        border-radius: 4px !important;
    }


    .mirju-review-product-label {
        font-size: 4.8px !important;
    }


    .mirju-review-product-info strong {
        font-size: 6.5px !important;
    }


    .mirju-review-product-arrow {
        flex-basis: 14px !important;

        width: 14px !important;

        height: 14px !important;
    }


    .mirju-review-product-arrow svg {
        width: 8px !important;

        height: 8px !important;
    }

}


/* =========================================================
   ULTRA NARROW
   320px AND BELOW
   ========================================================= */

@media (max-width: 320px) {

    .mirju-reviews-grid {
        grid-template-columns: 1fr !important;

        gap: 10px !important;
    }


    .mirju-review-card {
        padding: 14px !important;

        border-radius: 9px !important;
    }


    .mirju-review-avatar {
        flex-basis: 34px !important;

        width: 34px !important;

        height: 34px !important;
    }


    .mirju-review-name {
        font-size: 10px !important;
    }


    .mirju-review-verified {
        font-size: 7px !important;
    }


    .mirju-review-verified svg {
        flex-basis: 9px !important;

        width: 9px !important;

        height: 9px !important;
    }


    .mirju-review-stars svg {
        flex-basis: 9px !important;

        width: 9px !important;

        height: 9px !important;
    }


    .mirju-review-content p {
        font-size: 9px !important;

        line-height: 1.6 !important;
    }


    .mirju-review-product-image {
        flex-basis: 34px !important;

        width: 34px !important;

        height: 34px !important;
    }


    .mirju-review-product-label {
        font-size: 6px !important;
    }


    .mirju-review-product-info strong {
        font-size: 8px !important;
    }


    .mirju-review-product-arrow {
        flex-basis: 20px !important;

        width: 20px !important;

        height: 20px !important;
    }


    .mirju-review-product-arrow svg {
        width: 12px !important;

        height: 12px !important;
    }

}

/* =========================================================
   MIRJU NEWSLETTER
   ========================================================= */

.mirju-home-newsletter {
    width: 100%;
    padding: 75px 0 80px;
    background: #f5f3e9;
    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================================
   GLOBAL BOX SIZING
   ========================================================= */

.mirju-home-newsletter *,
.mirju-home-newsletter *::before,
.mirju-home-newsletter *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.mirju-home-newsletter .mirju-home-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding-left: 24px;
    padding-right: 24px;

    box-sizing: border-box;
}


/* =========================================================
   NEWSLETTER BOX
   ========================================================= */

.mirju-newsletter {
    position: relative;

    width: 100%;

    padding: 65px 70px;

    background: #0b5d3b;

    border-radius: 18px;

    overflow: hidden;

    isolation: isolate;
}


/* =========================================================
   DECORATIVE GLOW
   ========================================================= */

.mirju-newsletter::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    top: -180px;
    right: -120px;

    border-radius: 50%;

    background: rgba(230, 126, 34, 0.12);

    pointer-events: none;

    z-index: -1;
}


.mirju-newsletter::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    bottom: -160px;
    left: -100px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    pointer-events: none;

    z-index: -1;
}


/* =========================================================
   CONTENT
   ========================================================= */

.mirju-newsletter-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mirju-newsletter-eyebrow {
    display: block;

    margin: 0 0 10px;

    color: #e67e22;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
   ========================================================= */

.mirju-newsletter-title {
    display: block;

    margin: 0 0 14px !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-size: 38px;
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.5px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mirju-newsletter-description {
    display: block;

    width: 100%;
    max-width: 650px;

    margin: 0 auto 30px !important;

    padding: 0 !important;

    color: rgba(255, 255, 255, 0.82) !important;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   FORM
   ========================================================= */

.mirju-newsletter-form {
    display: flex;

    align-items: stretch;
    justify-content: center;

    width: 100%;
    max-width: 650px;

    margin: 0 auto;
    padding: 0;

    gap: 10px;

    box-sizing: border-box;
}


/* =========================================================
   INPUT WRAPPER
   ========================================================= */

.mirju-newsletter-input-wrap {
    position: relative;

    display: flex;
    align-items: center;

    flex: 1 1 auto;

    width: auto;
    min-width: 0;

    height: 54px;

    margin: 0;
    padding: 0;

    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 9px;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

    box-sizing: border-box;
}


.mirju-newsletter-input-wrap:focus-within {
    border-color: #e67e22;

    box-shadow:
        0 0 0 3px rgba(230, 126, 34, 0.18);
}


/* =========================================================
   EMAIL ICON
   ========================================================= */

.mirju-newsletter-email-icon {
    display: block;

    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    margin: 0 0 0 17px;
    padding: 0;

    color: #0b5d3b;

    pointer-events: none;

    box-sizing: border-box;
}


/* =========================================================
   EMAIL INPUT
   ========================================================= */

.mirju-newsletter-input {
    display: block;

    flex: 1 1 auto;

    width: 100% !important;
    min-width: 0 !important;

    height: 100% !important;

    margin: 0 !important;

    padding: 0 16px 0 12px !important;

    background: transparent !important;

    border: 0 !important;
    outline: 0 !important;

    box-shadow: none !important;

    color: #222222 !important;

    font-family: inherit;

    font-size: 14px;
    font-weight: 400;

    line-height: 1;

    text-align: left;

    appearance: none;
    -webkit-appearance: none;

    box-sizing: border-box;
}


/* =========================================================
   INPUT PLACEHOLDER
   ========================================================= */

.mirju-newsletter-input::placeholder {
    color: #8b918d;

    opacity: 1;
}


.mirju-newsletter-input::-webkit-input-placeholder {
    color: #8b918d;

    opacity: 1;
}


.mirju-newsletter-input::-moz-placeholder {
    color: #8b918d;

    opacity: 1;
}


/* =========================================================
   INPUT FOCUS
   ========================================================= */

.mirju-newsletter-input:focus,
.mirju-newsletter-input:active {
    outline: none !important;

    border: 0 !important;

    box-shadow: none !important;

    background: transparent !important;
}


/* =========================================================
   SUBSCRIBE BUTTON
   ========================================================= */

.mirju-newsletter-submit {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 145px;

    width: 145px;
    min-width: 145px;

    height: 54px;

    margin: 0 !important;

    padding: 0 20px !important;

    gap: 10px;

    border: 0 !important;

    border-radius: 9px;

    background: #e67e22 !important;

    color: #ffffff !important;

    font-family: inherit;

    font-size: 14px;
    font-weight: 600;

    line-height: 1;

    text-align: center;

    cursor: pointer;

    text-decoration: none;

    box-shadow: none !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;

    box-sizing: border-box;
}


.mirju-newsletter-submit:hover {
    background: #d96f16 !important;

    color: #ffffff !important;

    transform: translateY(-1px);

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.14) !important;
}


.mirju-newsletter-submit:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);

    outline-offset: 3px;
}


.mirju-newsletter-submit:active {
    transform: translateY(0);
}


/* =========================================================
   BUTTON TEXT
   ========================================================= */

.mirju-newsletter-submit-text {
    display: inline-block;

    white-space: nowrap;
}


/* =========================================================
   BUTTON ICON
   ========================================================= */

.mirju-newsletter-submit-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 18px;

    width: 18px;
    height: 18px;

    box-sizing: border-box;
}


.mirju-newsletter-submit-icon svg {
    display: block;

    width: 18px;
    height: 18px;
}


/* =========================================================
   PRIVACY / TRUST NOTE
   ========================================================= */

.mirju-newsletter-note {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    gap: 6px;

    margin: 16px 0 0 !important;

    padding: 0 !important;

    color: rgba(255, 255, 255, 0.62) !important;

    font-size: 11px;
    font-weight: 400;

    line-height: 1.5;

    text-align: center;
}


.mirju-newsletter-note-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 14px;

    width: 14px;
    height: 14px;
}


.mirju-newsletter-note-icon svg {
    display: block;

    width: 14px;
    height: 14px;
}


.mirju-newsletter-note-text {
    display: inline-block;

    min-width: 0;
}


/* =========================================================
   TABLET
   1024px AND BELOW
   ========================================================= */

@media (max-width: 1024px) {

    .mirju-home-newsletter {
        padding: 60px 0 65px;
    }


    .mirju-home-newsletter .mirju-home-container {
        padding-left: 22px;
        padding-right: 22px;
    }


    .mirju-newsletter {
        padding: 55px 45px;

        border-radius: 16px;
    }


    .mirju-newsletter-title {
        font-size: 34px;
    }


    .mirju-newsletter-description {
        max-width: 600px;

        font-size: 14px;
    }


    .mirju-newsletter-form {
        max-width: 620px;
    }

}


/* =========================================================
   MOBILE
   767px AND BELOW
   ========================================================= */

@media (max-width: 767px) {

    .mirju-home-newsletter {
        padding: 45px 0 50px;
    }


    .mirju-home-newsletter .mirju-home-container {
        width: 100%;

        padding-left: 16px;
        padding-right: 16px;
    }


    /* =====================================================
       NEWSLETTER BOX
       ===================================================== */

    .mirju-newsletter {
        width: 100%;

        padding: 42px 22px 38px;

        border-radius: 14px;
    }


    /* =====================================================
       CONTENT
       ===================================================== */

    .mirju-newsletter-content {
        width: 100%;
        max-width: 100%;
    }


    /* =====================================================
       EYEBROW
       ===================================================== */

    .mirju-newsletter-eyebrow {
        margin-bottom: 8px;

        font-size: 10px;

        letter-spacing: 1.5px;

        line-height: 1.4;
    }


    /* =====================================================
       TITLE
       ===================================================== */

    .mirju-newsletter-title {
        margin-bottom: 12px !important;

        font-size: 27px;

        line-height: 1.18;

        letter-spacing: -0.2px;
    }


    /* =====================================================
       DESCRIPTION
       ===================================================== */

    .mirju-newsletter-description {
        width: 100%;
        max-width: 100%;

        margin-bottom: 24px !important;

        font-size: 13px;

        line-height: 1.55;
    }


    /* =====================================================
       FORM
       ===================================================== */

    .mirju-newsletter-form {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        width: 100%;
        max-width: 100%;

        margin: 0;

        gap: 9px;
    }


    /* =====================================================
       INPUT WRAPPER
       ===================================================== */

    .mirju-newsletter-input-wrap {
        display: flex;

        flex: 0 0 auto;

        width: 100%;
        min-width: 0;

        height: 50px;

        margin: 0;
        padding: 0;

        border-radius: 8px;

        overflow: hidden;
    }


    /* =====================================================
       EMAIL ICON
       ===================================================== */

    .mirju-newsletter-email-icon {
        flex: 0 0 18px;

        width: 18px;
        height: 18px;

        margin-left: 14px;
        margin-right: 0;
    }


    /* =====================================================
       INPUT
       ===================================================== */

    .mirju-newsletter-input {
        display: block;

        flex: 1 1 auto;

        width: 100% !important;
        min-width: 0 !important;

        height: 100% !important;

        margin: 0 !important;

        padding: 0 12px 0 10px !important;

        font-size: 14px;

        line-height: normal;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    .mirju-newsletter-input::placeholder {
        font-size: 14px;
    }


    /* =====================================================
       BUTTON
       ===================================================== */

    .mirju-newsletter-submit {
        display: flex;

        flex: 0 0 auto;

        width: 100%;
        min-width: 0;

        height: 50px;

        margin: 0 !important;

        padding: 0 16px !important;

        border-radius: 8px;

        font-size: 14px;

        gap: 9px;
    }


    /* =====================================================
       BUTTON ICON
       ===================================================== */

    .mirju-newsletter-submit-icon {
        flex: 0 0 16px;

        width: 16px;
        height: 16px;
    }


    .mirju-newsletter-submit-icon svg {
        width: 16px;
        height: 16px;
    }


    /* =====================================================
       NOTE
       ===================================================== */

    .mirju-newsletter-note {
        margin-top: 13px !important;

        gap: 5px;

        font-size: 10px;

        line-height: 1.5;
    }


    .mirju-newsletter-note-icon {
        flex: 0 0 12px;

        width: 12px;
        height: 12px;
    }


    .mirju-newsletter-note-icon svg {
        width: 12px;
        height: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
   480px AND BELOW
   ========================================================= */

@media (max-width: 480px) {

    .mirju-home-newsletter {
        padding: 38px 0 42px;
    }


    .mirju-home-newsletter .mirju-home-container {
        padding-left: 12px;
        padding-right: 12px;
    }


    /* =====================================================
       NEWSLETTER BOX
       ===================================================== */

    .mirju-newsletter {
        width: 100%;

        padding: 35px 16px 32px;

        border-radius: 12px;
    }


    /* =====================================================
       EYEBROW
       ===================================================== */

    .mirju-newsletter-eyebrow {
        margin-bottom: 8px;

        font-size: 9px;

        letter-spacing: 1.3px;
    }


    /* =====================================================
       TITLE
       ===================================================== */

    .mirju-newsletter-title {
        font-size: 23px;

        line-height: 1.2;
    }


    /* =====================================================
       DESCRIPTION
       ===================================================== */

    .mirju-newsletter-description {
        margin-bottom: 22px !important;

        font-size: 12px;

        line-height: 1.55;
    }


    /* =====================================================
       FORM
       ===================================================== */

    .mirju-newsletter-form {
        width: 100%;

        gap: 8px;
    }


    /* =====================================================
       INPUT WRAPPER
       ===================================================== */

    .mirju-newsletter-input-wrap {
        width: 100%;

        height: 48px;

        border-radius: 8px;
    }


    /* =====================================================
       EMAIL ICON
       ===================================================== */

    .mirju-newsletter-email-icon {
        flex: 0 0 17px;

        width: 17px;
        height: 17px;

        margin-left: 12px;
    }


    /* =====================================================
       INPUT
       ===================================================== */

    .mirju-newsletter-input {
        width: 100% !important;
        min-width: 0 !important;

        height: 100% !important;

        padding: 0 10px 0 8px !important;

        font-size: 13px;
    }


    .mirju-newsletter-input::placeholder {
        font-size: 13px;
    }


    /* =====================================================
       BUTTON
       ===================================================== */

    .mirju-newsletter-submit {
        width: 100%;

        height: 48px;

        border-radius: 8px;

        font-size: 13px;
    }


    /* =====================================================
       NOTE
       ===================================================== */

    .mirju-newsletter-note {
        margin-top: 12px !important;

        font-size: 9px;

        gap: 5px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   390px AND BELOW
   ========================================================= */

@media (max-width: 390px) {

    .mirju-home-newsletter .mirju-home-container {
        padding-left: 10px;
        padding-right: 10px;
    }


    .mirju-newsletter {
        padding: 32px 14px 30px;
    }


    .mirju-newsletter-title {
        font-size: 22px;
    }


    .mirju-newsletter-description {
        font-size: 11.5px;

        line-height: 1.55;
    }


    .mirju-newsletter-input-wrap {
        height: 47px;
    }


    .mirju-newsletter-input {
        font-size: 12.5px;

        padding-left: 8px !important;
        padding-right: 8px !important;
    }


    .mirju-newsletter-input::placeholder {
        font-size: 12.5px;
    }


    .mirju-newsletter-submit {
        height: 47px;

        font-size: 12.5px;
    }


    .mirju-newsletter-note {
        font-size: 8.5px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   360px AND BELOW
   ========================================================= */

@media (max-width: 360px) {

    .mirju-home-newsletter {
        padding: 32px 0 36px;
    }


    .mirju-home-newsletter .mirju-home-container {
        padding-left: 8px;
        padding-right: 8px;
    }


    .mirju-newsletter {
        padding: 29px 12px 27px;

        border-radius: 11px;
    }


    .mirju-newsletter-eyebrow {
        font-size: 8px;

        letter-spacing: 1.2px;
    }


    .mirju-newsletter-title {
        font-size: 20px;

        line-height: 1.2;
    }


    .mirju-newsletter-description {
        font-size: 10.5px;

        line-height: 1.5;
    }


    .mirju-newsletter-form {
        gap: 7px;
    }


    /* =====================================================
       INPUT
       ===================================================== */

    .mirju-newsletter-input-wrap {
        width: 100%;

        height: 45px;

        border-radius: 7px;
    }


    .mirju-newsletter-email-icon {
        flex: 0 0 16px;

        width: 16px;
        height: 16px;

        margin-left: 11px;
    }


    .mirju-newsletter-input {
        flex: 1 1 auto;

        width: 100% !important;
        min-width: 0 !important;

        padding: 0 8px 0 7px !important;

        font-size: 12px;
    }


    .mirju-newsletter-input::placeholder {
        font-size: 12px;
    }


    /* =====================================================
       BUTTON
       ===================================================== */

    .mirju-newsletter-submit {
        width: 100%;

        height: 45px;

        border-radius: 7px;

        padding: 0 14px !important;

        font-size: 12px;
    }


    /* =====================================================
       NOTE
       ===================================================== */

    .mirju-newsletter-note {
        font-size: 8px;

        gap: 4px;
    }


    .mirju-newsletter-note-icon {
        flex: 0 0 11px;

        width: 11px;
        height: 11px;
    }


    .mirju-newsletter-note-icon svg {
        width: 11px;
        height: 11px;
    }

}


/* =========================================================
   ULTRA NARROW DEVICES
   320px AND BELOW
   ========================================================= */

@media (max-width: 320px) {

    .mirju-home-newsletter .mirju-home-container {
        padding-left: 6px;
        padding-right: 6px;
    }


    .mirju-newsletter {
        padding-left: 10px;
        padding-right: 10px;
    }


    .mirju-newsletter-title {
        font-size: 19px;
    }


    .mirju-newsletter-description {
        font-size: 10px;
    }


    .mirju-newsletter-input-wrap {
        height: 44px;
    }


    .mirju-newsletter-email-icon {
        flex-basis: 15px;

        width: 15px;
        height: 15px;

        margin-left: 9px;
    }


    .mirju-newsletter-input {
        font-size: 11.5px;

        padding-left: 6px !important;
        padding-right: 6px !important;
    }


    .mirju-newsletter-input::placeholder {
        font-size: 11.5px;
    }


    .mirju-newsletter-submit {
        height: 44px;

        font-size: 11.5px;
    }


    .mirju-newsletter-note {
        font-size: 7.5px;
    }

}