/* ==================================================
   Etsy-inspired OpenCart 4 Custom Styles
   Brand colour: #049927
================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Source+Sans+Pro:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

/* ---------- Body & Headings ---------- */
body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    color: #2C2F2D;
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', serif;
    font-weight: 500;
    color: #049927;
}

/* ---------- Logo ---------- */
.navbar-brand img {
    max-height: 60px;
    width: auto;
    height: auto;
}

/* ---------- Menu Bar ---------- */
#menu.navbar,
#menu.bg-primary {
    background-image: none !important;
    background-color: #FFFFFF !important;
	border-bottom: 1px solid #e5e5e5; 
	border-top: none;
	border-left: none;
	border-right: none;
}
#menu .nav-link { color: #2f2f2f; font-weight: 600; transition: color 0.2s ease; }
#menu .nav-link:hover,
#menu .nav-link:focus,
#menu .nav-item.show .nav-link { color: #000000; }
#menu .dropdown-menu { background-color: #FFFFFF; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
#menu .dropdown-item:hover { background-color: #FFFFFF; color: #000000; }
/* Force top-level menu links to dark grey */
#menu .navbar-nav > .nav-item > .nav-link,
#menu .navbar-nav > .nav-item > .nav-link.dropdown-toggle {
    color: #2f2f2f !important;
}

/* Hover + open state */
#menu .navbar-nav > .nav-item > .nav-link:hover,
#menu .navbar-nav > .nav-item > .nav-link:focus,
#menu .navbar-nav > .nav-item.show > .nav-link {
    color: #000000 !important;
}

/* If Bootstrap navbar-dark is still applying white */
#menu.navbar-dark .nav-link {
    color: #2f2f2f !important;
}


/* ---------- Breadcrumbs ---------- */
.breadcrumb { color: #2C2F2D; }
.breadcrumb a { color: #2C2F2D; text-decoration: none; }
.breadcrumb a:hover { color: #049927; }

/* ---------- Product Grid ---------- */
#product-list { display: flex; flex-wrap: wrap; margin-left: -0.5rem; margin-right: -0.5rem; }
#product-list > .col { padding-left: 0.5rem; padding-right: 0.5rem; flex: 0 0 25%; max-width: 25%; }

@media (max-width: 991.98px) { #product-list > .col { flex: 0 0 33.3333%; max-width: 33.3333%; } }
@media (max-width: 767.98px) { #product-list > .col { flex: 0 0 50%; max-width: 50%; } }
@media (max-width: 575.98px) { #product-list > .col { flex: 0 0 100%; max-width: 100%; } }

/* ---------- Product Thumb / Cards ---------- */
.product-thumb, .card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}
.product-thumb:hover, .card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* ---------- Product Image ---------- */
.product-thumb .image { 
    width: 100%; 
    padding-top: 100%; /* square */
    position: relative; 
    border-radius: 12px; 
    overflow: hidden; 
}

/* Wishlist overlay (top-right) */
.product-thumb .image {
    position: relative; /* positioning context for wishlist */
}
.product-thumb .btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #222;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: all .2s ease;
    z-index: 5;
}
.product-thumb .btn-wishlist:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Remove spacing from old buttons inside .content */
.product-thumb .content form { margin: 0; }
.product-thumb .button { display: contents; }
.product-thumb .button button { width: auto !important; }

/* Product Image */
/*.product-thumb .image img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; }*/
.product-thumb .image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.product-thumb .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* KEY CHANGE */
}

/* Caption & Title */
.product-thumb .caption { display:flex; flex-direction:column; justify-content:flex-start; height:auto; padding:8px 8px 10px 8px; }
.product-thumb .caption h4 {
    font-size: 15.5px; font-weight:400; line-height:1.35; letter-spacing:0.1px; margin:6px 0 4px 0;
    color:#222; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.product-thumb .caption h4 a { color:#222; text-decoration:none; }
.product-thumb .caption h4 a:hover { text-decoration:underline; }

/* Hide product description paragraph */
.product-thumb .description p { display:none !important; }

/* Price styling */
.product-thumb .price { font-size:16px; font-weight:600; color:#222; margin-top:2px; }

/* Product page title */
.product-title {
    font-size: 1.25rem;   /* slightly larger than normal text */
    font-weight: 500;
}

/* Product price */
.price {
    font-size: 2.25rem;   /* make it clearly dominant */
    font-weight: 700;
    color: #000;          /* or your brand colour */
}

/* Hide Ex Tax Price */
.price-tax { display:none !important; visibility:hidden !important; height:0 !important; }

/* Rating & Stock Row */
.rating-row { display:flex; align-items:center; gap:8px; }
.rating-row .stock { margin-left:auto; }

/* Stock Badges */
.stock.badge.bg-danger { background-color:#049927 !important; color:#fff !important; font-weight:600; text-transform:uppercase; font-size:0.95rem; padding:0.35em 0.7em; }
.stock.badge.bg-warning { background-color:#F0A500 !important; color:#fff !important; }
.stock.badge.bg-secondary { background-color:#A0A0A0 !important; color:#fff !important; }

/* Optional Responsive */
@media (max-width: 768px) { .product-thumb, .card { margin-bottom:20px; } }

/* =========================================
   Etsy-style Product Titles
========================================= */

.product-thumb .caption h4 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.13px;
    color: #222;
    margin: 6px 0 4px 0;
    text-align: left;

    /* 2-line clamp like Etsy */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Link styling */
.product-thumb .caption h4 a {
    color: #222 !important;
    text-decoration: none !important;
}

#product-list .product-thumb .description h4 a,
#product-list .product-thumb .description h4 a:link,
#product-list .product-thumb .description h4 a:visited {
    color: #222 !important;
    text-decoration: none !important;
}

#product-list .product-thumb .description h4 a:hover {
    color: #222 !important;
    text-decoration: underline !important;
}

/* Typography */
#product-list .product-thumb .description h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.13px;
    margin: 6px 0 4px 0;
}

/* LIST MODE */
.product-list .product-thumb {
    flex: 0 0 100%;
    max-width: 100%;
}

/* GRID MODE */
.product-grid .product-thumb {
    flex: 0 0 auto;
}

/* Pagination container */
.text-end .pagination {
    justify-content: flex-end; /* keeps right-aligned */
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 4px; /* space between buttons */
}

/* All page links */
.text-end .pagination .page-item .page-link {
    background-color: #ffffff; /* white background */
    color: #2f2f2f;           /* dark grey text */
    border: 1px solid #ddd;   /* light border */
    border-radius: 6px;       /* slightly rounded corners */
    padding: 6px 12px;
    transition: all 0.2s ease;
}

/* Hover state */
.text-end .pagination .page-item .page-link:hover {
    background-color: #E6F5EC; /* subtle green highlight */
    color: #049927;            /* brand green text */
    text-decoration: none;
}

/* Active page */
.text-end .pagination .page-item.active .page-link {
    background-color: #049927; /* brand green */
    border-color: #049927;
    color: #ffffff;            /* white text */
}

/* Disabled links */
.text-end .pagination .page-item.disabled .page-link {
    background-color: #f8f8f8;
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
}
/* =========================================
   Product Compare Button (Top Bar)
========================================= */

#compare-total {
    background-color: #222 !important;
    border-color: #222 !important;
    color: #fff !important;
}

/* Hover */
#compare-total:hover {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/* Remove Bootstrap focus glow */
#compare-total:focus {
    box-shadow: none !important;
}

/* =========================================
   Etsy Minimal Add To Cart
========================================= */

/* Container spacing cleanup */
#button-cart {
    background-color: #222 !important;
    border: 1px solid #222 !important;
    color: #fff !important;

    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;

    padding: 10px 18px;
    border-radius: 24px;   /* Etsy rounded pill style */
    box-shadow: none !important;
    transition: all 0.2s ease;
}

/* Hover */
#button-cart:hover {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/* Remove Bootstrap focus glow */
#button-cart:focus,
#button-cart:active {
    box-shadow: none !important;
}

/* =========================================
   Etsy Minimal Add To Cart
========================================= */

/* Container spacing cleanup */
#button-cart {
    background-color: #222 !important;
    border: 1px solid #222 !important;
    color: #fff !important;

    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;

    padding: 10px 18px;
    border-radius: 24px;   /* Etsy rounded pill style */
    box-shadow: none !important;
    transition: all 0.2s ease;
}

/* Hover */
#button-cart:hover {
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

/* Remove Bootstrap focus glow */
#button-cart:focus,
#button-cart:active {
    box-shadow: none !important;
}

/* =========================================
   Product Description Typography Upgrade
========================================= */

/* Main tab description */
#tab-description,
#tab-description p {
    font-size: 16px !important;
    line-height: 1.7;
    color: #2F2F2F;
}

/* Short description on product page */
.product-short-description,
.product-short-description p {
    font-size: 16px !important;
    line-height: 1.7;
    color: #2F2F2F;
}

/* Safety: any rich content inside */
#tab-description li,
#tab-description span,
#tab-description div {
    font-size: 16px !important;
}

/* =========================================
   Product Options – Larger Readable Text
========================================= */

/* Scope ONLY to product page form */
#form-product {
    font-size: 16px;
}

/* Labels */
#form-product .form-label {
    font-size: 16px !important;
    font-weight: 500;
    color: #222;
    margin-bottom: 6px;
}

/* Dropdowns */
#form-product .form-select {
    font-size: 16px !important;
    padding: 10px 12px;
    border-radius: 8px;
}

/* Text input */
#form-product .form-control {
    font-size: 16px !important;
    padding: 10px 12px;
    border-radius: 8px;
}

/* Radio labels */
#form-product .form-check-label {
    font-size: 16px !important;
    color: #222;
}

/* Slightly larger radio buttons */
#form-product .form-check-input {
    transform: scale(1.15);
    margin-top: 0.25em;
}
 
 a {
	 color:#2F2F2F; }
	 
	 /* =========================================
   Etsy-style buttons for OpenCart 4
========================================= */

/* General reset for all buttons */
.btn,
button,
input[type="submit"] {
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* Primary buttons (Add to Cart, Checkout) */
.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary {
    background-color: #333 !important; /* dark grey background */
    color: #fff !important;            /* white text */
    border: 1px solid #333 !important;
}

.btn-primary:hover,
button.btn-primary:hover,
input[type="submit"].btn-primary:hover {
    background-color: #555 !important; /* slightly lighter on hover */
    border-color: #555 !important;
    color: #fff !important;
}

/* Light buttons (Continue shopping, secondary actions) */
.btn-light,
button.btn-light,
input[type="submit"].btn-light {
    background-color: #f8f8f8 !important; /* light grey background */
    color: #333 !important;
    border: 1px solid #ccc !important;
}

.btn-light:hover,
button.btn-light:hover,
input[type="submit"].btn-light:hover {
    background-color: #eaeaea !important;
    color: #333 !important;
    border-color: #bbb !important;
}

/* Danger buttons (remove product) */
.btn-danger,
button.btn-danger {
    background-color: #e74c3c !important; /* red */
    color: #fff !important;
    border: 1px solid #e74c3c !important;
}

.btn-danger:hover,
button.btn-danger:hover {
    background-color: #c0392b !important;
    border-color: #c0392b !important;
    color: #fff !important;
}

/* Wishlist & Compare icon buttons */
.btn-wishlist,
.btn-compare {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.95);
    color: #222;
    font-size: 15px;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 5;
}

.btn-wishlist:hover,
.btn-compare:hover {
    transform: scale(1.05);
    background: #fff;
}

/* ===== Etsy Style Search ===== */

.etsy-search {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #ddd;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.2s ease;
}

/* Input */
.etsy-search .form-control {
    border: none;
    box-shadow: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 40px 0 0 40px;
}

.etsy-search .form-control:focus {
    outline: none;
    box-shadow: none;
}

/* Button */
.etsy-search .search-btn {
    background-color: #049927;
    border: none;
    color: #fff;
    padding: 14px 22px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: 0 40px 40px 0;
}

/* Hover */
.etsy-search .search-btn:hover {
    background-color: #037F20;
}

/* Focus glow (Etsy-style) */
.etsy-search:focus-within {
    border-color: #049927;
    box-shadow: 0 0 0 3px rgba(4,153,39,0.15);
}

/* Remove input-group button blue overrides */
.input-group .btn-primary,
.input-group .btn-danger {
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 13px;
}

/* Small icons inside buttons (cart, remove, update) */
.input-group .btn i {
    font-size: 14px;
}

/* Optional: minimal button text-only version */
.btn-minimal {
    background: transparent !important;
    border: 1px solid #ccc !important;
    color: #333 !important;
}

.btn-minimal:hover {
    background: #f5f5f5 !important;
    color: #222 !important;
    border-color: #999 !important;
}

/* Disabled buttons */
.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Make sure links styled as buttons inherit same style */
a.btn,
a.btn-primary,
a.btn-light,
a.btn-danger {
    text-decoration: none;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .btn {
        font-size: 13px;
        padding: 5px 10px;
    }
}

/* =========================================
   Etsy-style cart quantity & action buttons
========================================= */

/* Input group container */
.input-group {
    display: flex;
    align-items: center;
}

/* Quantity input */
.input-group .form-control {
    width: 50px;
    text-align: center;
    border-radius: 4px 0 0 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 4px 6px;
}

/* Update & Remove buttons */
.input-group .btn {
    border-radius: 0 4px 4px 0;
    border: none;
    background: #f8f8f8;
    color: #333;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.input-group .btn i {
    font-size: 14px;
}

/* Update button hover */
.input-group .btn.btn-primary {
    background: #333 !important;
    color: #fff !important;
}

.input-group .btn.btn-primary:hover {
    background: #555 !important;
    color: #fff !important;
}

/* Remove button hover */
.input-group .btn.btn-danger {
    background: #e74c3c !important;
    color: #fff !important;
}

.input-group .btn.btn-danger:hover {
    background: #c0392b !important;
    color: #fff !important;
}

/* Optional: make the buttons small and Etsy-minimal */
.input-group .btn {
    padding: 4px 6px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
}

/* Icon-only style like Etsy wishlist hearts */
.input-group .btn i {
    margin: 0;
}

/* Product & section titles */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    background: transparent !important; /* Remove any background color */
    color: #222 !important;            /* Dark grey text */
    font-weight: 500;                  /* Etsy-style medium weight */
}

/* Optional: remove any Bootstrap padding/rounded effect */
h1, h2, h3, h4, h5, h6 {
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Product & section titles */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    background: transparent !important; /* Remove any background color */
    color: #222 !important;            /* Dark grey text */
    font-weight: 500;                  /* Etsy-style medium weight */
}

/* Optional: remove any Bootstrap padding/rounded effect */
h1, h2, h3, h4, h5, h6 {
    padding: 0 !important;
    border-radius: 0 !important;
}

/* Etsy-style radio buttons */
/* Remove Bootstrap styling entirely */
.form-check-input {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #555; /* dark grey border */
    border-radius: 50%;
    background-color: #fff;    /* unchecked background */
    position: relative;
    cursor: pointer;
    margin: 0 6px 0 0;
    transition: all 0.2s ease-in-out;
}

/* Checked state */
.form-check-input:checked {
    background-color: #333 !important; /* dark grey fill */
    border-color: #333 !important;     /* make border match */
}

/* Optional: inner dot for style */
.form-check-input:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #fff;             /* white dot inside dark circle */
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Remove blue focus outline/shadow */
.form-check-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Optional hover */
.form-check-input:hover {
    border-color: #777;
}

/* Label styling */
.form-check-label {
    color: #222;
    font-size: 14px;
}

/* Force product page tab link colour */
.nav-tabs .nav-link,
.nav-tabs .nav-link:link,
.nav-tabs .nav-link:visited {
    color: #2f2f2f;
    font-weight: 400;
}

/* Active tab */
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #2f2f2f;
    font-weight: 700;
}

/* Keep hover same colour */
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    color: #2f2f2f;
}

/* Product page Quantity and Add to Cart*/
/* Shrink quantity box and keep Add to Cart button inline */
#form-product .input-group {
    display: flex;
    gap: 10px;        /* space between input and button */
    max-width: 250px; /* optional, keeps group compact */
}

#form-product .input-group input[name="quantity"] {
    width: 60px;      /* roughly 1/4 size */
    flex: 0 0 auto;   /* prevents stretching */
    text-align: center;
}

#form-product .input-group #button-cart {
    flex: 1 1 auto;   /* button fills remaining space */
    min-width: 100px; /* prevents button from being too small */
}

/* Mobile stacking (<576px) */
@media (max-width: 576px) {
    #form-product .input-group {
        flex-direction: column;
        max-width: 100%;
    }

    #form-product .input-group input[name="quantity"],
    #form-product .input-group #button-cart {
        width: 100%;
    }
}

/*product image*/
/* Force main product image to have rounded corners */
img.img-thumbnail.mb-3 {
    border-radius: 15px !important;  /* Etsy-style rounding */
    overflow: hidden !important;     /* ensures edges clip */
}

/* Hide prices in the mini-cart / cart summary box */
.dropdown-cart .cart-total,
.dropdown-cart .cart-subtotal,
.dropdown-cart .price {
    display: none !important;
}

/* =======================
   Footer Styling Overrides
   ======================= */

/* Footer headings */
footer .col-sm-3 h5 {
    color: #ffffff !important;       /* White headings */
    font-weight: 600;                 /* Optional: make slightly bolder */
}

/* Footer links */
footer .col-sm-3 ul li a {
    color: #dddddd !important;       /* Light grey links */
    text-decoration: none;           /* Optional: remove underline */
}

/* Footer links hover */
footer .col-sm-3 ul li a:hover {
    color: #ffffff !important;       /* White on hover */
    text-decoration: underline;      /* Optional: underline on hover */
}

/* Footer paragraph / copyright text */
footer p {
    color: #cccccc !important;
}

/* Strongest possible footer heading override */
html body footer div.container div.row div.col-sm-3 h5 {
    color: #ffffff !important;
}

.product-specification-card {
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 15px;
  margin-top: 10px;
}

.spec-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.spec-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.spec-row strong {
  min-width: 130px;
  color: #555;
}

#tab-specification {
  margin-bottom: 20px;
    border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

/* Target only pagination inside #product-category */
/* Brand green pagination overrides - site-wide */
.pagination li.page-item .page-link {
    color: #049927 !important;
    border-color: #049927 !important;
    background-color: #fff !important;
}

.pagination li.page-item.active .page-link {
    background-color: #049927 !important;
    border-color: #049927 !important;
    color: #fff !important;
}

.pagination li.page-item .page-link:hover {
    background-color: #049927 !important;
    border-color: #049927 !important;
    color: #fff !important;
}

.pagination li.page-item.disabled .page-link {
    color: #ccc !important;
    border-color: #ddd !important;
    background-color: #f8f9fa !important;
}

.price-old {
    color: #dc3545 !important;
    text-decoration: line-through;
    margin-right: 8px;
	font-size: 1.5rem;
}

/* Mobile nav text and icon dark */
@media (max-width: 991.98px) {  /* Bootstrap lg breakpoint */
    #menu.navbar .nav-link {
        color: #333 !important;  /* dark grey/black */
    }

    #menu.navbar .navbar-toggler i.fa-bars {
        color: #333 !important;  /* hamburger icon */
    }

    #menu.navbar .navbar-toggler {
        border-color: #333;  /* optional: dark border */
    }

    /* Dropdown menu items dark text */
    #menu.navbar .dropdown-menu .dropdown-item {
        color: #333 !important;
    }
	
	#category {
        color: #333 !important; /* dark grey / black */
        text-shadow: none;       /* optional: remove white text shadow */
    }
}

.sale-category {
    color: red !important;
    font-weight: bold;
}

.read-more {
  font-weight: 600;
  color: #049927;
}
.read-more:hover {
  text-decoration: underline;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 52vh; /* 1/3 of viewport height */
    max-height: 52vh;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* prevents stretching */
}