/* ===================================
     Repair
==================================== */
.product-category-item-custom {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.2s;
}

.product-category-item-custom:hover {
    transform: translateY(-5px);
}

.category-item-body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.category__name {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.menu--product-categories {
    align-items: center;
    background-color: #28a745;
    border-radius: 5px;
    cursor: pointer;
    display: flex
;
    line-height: 1.5;
    margin: 0;
    padding: 13px 24px 13px 21px;
    position: relative;
    transition: .5s;
}


/* ===================================
     Repair
==================================== */


.storage-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
    margin-top: 15px;
    max-width: 200px; /* adjust as needed */
    margin-left: auto;
    margin-right: auto;
}

.storage-options a {
    display: block;
    padding: 10px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.storage-options a:hover {
    background: #28a745;
    color: #fff;
}


.storage-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between buttons */
    justify-content: center;
}

.storage-options a {
    flex: 0 0 calc(50% - 10px); /* Ensure two buttons per row */
    text-align: center;
    margin: 5px 0;
}

/* ===================================
     Order Confirmation Page
==================================== */

/* Instructions Container */
.ui-block-13.quote.comment-section.instructions-container {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 30px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.05);
}

.ui-block-13.quote.comment-section .instructions-header {
    font-size: 20px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 20px;
    text-align: center;
}

.ui-block-13.quote.comment-section .instructions-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.ui-block-13.quote.comment-section .instructions-item {
    counter-increment: step-counter;
    position: relative;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 18px;
    color: #696969;
    line-height: 1.6;
}

.ui-block-13.quote.comment-section .instructions-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: #202020;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ui-block-13.quote.comment-section .instructions-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #202020;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ui-block-13.quote.comment-section .instructions-link:hover {
    background: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.checkout-logo {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center;    /* Centers vertically if necessary */
    margin: 20px 0;         /* Add spacing around the logo */
    text-align: center;     /* Fallback for inline content */
}

.checkout-logo img {
    max-width: 100%;        /* Ensures responsiveness */
    height: auto;           /* Maintains aspect ratio */
}


/* ===================================
     Order Confirmation Page
==================================== */

/* ===================================
     Whatsapp Button
==================================== */


    #whatsapp-button {
        position: fixed !important;
        bottom: 90px;
        right: 10px;
        background-color: #25D366;
        color: white;
        padding: 10px 15px;
        border-radius: 30px;
        display: flex !important;
        align-items: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        z-index: 1000;
    }

    #whatsapp-button img {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }

    #whatsapp-button span {
        font-size: 14px;
        font-weight: bold;
    }

    /* Hide text on smaller screens for compact display */
    @media (max-width: 768px) {
        #whatsapp-button span {
            display: flex;
        }

        #whatsapp-button {
            padding: 10px;
            justify-content: center;
        }
    }




/* ===================================
     Whatsapp Button
==================================== */

/* ===================================
     Product Price
==================================== */

.pricing-title {
    font-size: 20px; /* Adjust title font size */
    font-weight: bold; /* Makes the title bold */
    color: #000000; 
    margin-bottom: 10px; /* Spacing between title and price */
}

.condition-title {
    font-size: 20px; /* Adjust title font size */
    font-weight: bold; /* Makes the title bold */
    color: #000000; 
    margin-bottom: 10px; /* Spacing between title and price */
}

.product-price {
    align-items: center;
    color: #28a745;
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* ===================================
     Product Price
==================================== */

/* ===================================
     Unique Selling Points
==================================== */

/* Container for the cards */
.usp-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

/* Individual cards */
.usp-card {
  display: block;
  color: #000000; /* Default text color */
  text-decoration: none;
  background-color: #ffffff; /* Button background color */
  padding: 15px 20px;
  border-radius: 8px;
  flex: 1 1 calc(100% - 30px);
  max-width: 300px;
  box-shadow: 0 4px 6px rgba(30, 144, 255, 0.3); /* Blue shadow matching #28a745 */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.usp-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #000000; /* Default h3 color is black */
}

.usp-card p {
  margin: 10px 0 0;
  font-size: 12px;
  color: #000000; /* Default p color is black */
}

/* Hover effect */
.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(30, 144, 255, 0.6); /* Darker blue shadow on hover */
  background-color: #28a745; /* Hover background color */
}

.usp-card:hover h3 {
  color: #ffffff; /* Change h3 color to white on hover */
}

.usp-card:hover p {
  color: #ffffff; /* Change p color to white on hover */
}

/* Responsive Design */
@media (min-width: 768px) {
  .usp-container {
    flex-wrap: nowrap;
  }
  .usp-card {
    flex: 1;
  }
}


/* ===================================
     Unique Selling Points
==================================== */

/* ===================================
     04/12/2024
==================================== */

.feature-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #007bff;
}

.feature-icon img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease-in-out;
}

.feature-icon img:hover {
    transform: rotate(10deg);
}

.feature-card h4 {
    color: #212529;
    margin-bottom: 10px;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.gy-4 {
    gap: 20px 0;
}




/* ===================================
     Category Product Homepage
==================================== */
/* General Layout */
.product-category-item-custom {
    padding: 2px;
    box-sizing: border-box;
    height: 100%;
}

.product-category-item-custom .category-item-body {
    background-color: #f7f7f6;
    border-radius: 15px; /* More rounded corners for modern look */
    padding: 2px;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-category-item-custom .category-item-body:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
    transition: 0.5s;
}

/* Category Name */
.product-category-item-custom .category__name {
    font-size: 18px; /* Increased font size for better readability */
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #333333; /* Darker color for better contrast */
    text-transform: capitalize;
}

/* Product Image */
.product-category-item-custom img {
    max-width: 200px; /* Increased image size */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px; /* Add rounded edges for a smoother design */
    transition: transform 0.3s ease; /* Smooth zoom effect on hover */
}

.product-category-item-custom img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Storage Buttons Grid */
.storage-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns for desktop view */
    gap: 2px; /* Reduced gap for tighter alignment */
    margin-top: 15px;
    width: 100%;
}

.storage-options a {
    background-color: #ffffff; /* White background for a clean look */
    border: 2px solid #28a745; /* Bright blue border for better visibility */
    border-radius: 12px; /* Softer rounded corners */
    padding: 10px 12px; /* Balanced padding for better appearance */
    font-size: 14px; /* Smaller but legible text */
    font-weight: 600;
    color: #28a745; /* Blue text for consistency */
    text-decoration: none;
    text-align: center;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s; /* Smooth hover effects */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.storage-options a:hover {
    background-color: #28a745; /* Blue background on hover */
    color: #fff; /* White text on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow on hover */
    transform: translateY(-2px); /* Hover lift effect */
}

.storage-options a:active {
    transform: translateY(0); /* Button presses feel natural */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow returns to normal */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .storage-options {
        grid-template-columns: repeat(1, 1fr); /* One column for smaller screens */
    }

    .product-category-item-custom img {
        max-width: 100px; /* Slightly smaller for tablets */
    }

    .product-category-item-custom .category__name {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .storage-options {
        grid-template-columns: repeat(2, 1fr); /* Stack buttons vertically on mobile */
        gap: 1px; /* Slightly closer spacing for smaller screens */
    }

    .storage-options a {
        font-size: 13px; /* Smaller text for mobile buttons */
        padding: 8px 10px; /* Compact padding for mobile */
    }

    .product-category-item-custom img {
        max-width: 100px; /* Smaller image size for mobile */
    }
}


/* ===================================
     UI-Block-13
==================================== */
.ui-block-13.quote.comment-section {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.ui-block-13.quote .feature {
    text-align: center;
}

.ui-block-13.quote h2 {
    font-size: 48px;
    color: #202020;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.ui-block-13.quote p {
    font-size: 18px;
    color: #696969;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.ui-block-13.quote .padding-top {
    padding-top: 70px;
}

.ui-block-13.quote.comment-section .card {
    border: none;
    border-radius: 10px;
    transition: .6s ease;
    box-shadow: 1px 1px 31px #e6e6e6;
}

.ui-block-13.quote.comment-section .card .feature-icon {
    top: -39px;
    left: 50%;
    display: inline-block;
    position: absolute;
    transform: translateX(-50%);
}

.ui-block-13.quote.comment-section .card .feature-icon i {
    display: block;
    font-size: 100px;
    color: #202020;
    transition: .6s ease;
}

.ui-block-13.quote.comment-section .card:hover p {
    color: #fff;
}

.ui-block-13.quote.comment-section .card:hover {
    transition: all .5s ease;
    cursor: pointer;
    background-color: #202020;
}

.ui-block-13.quote.comment-section .card:hover .feature-icon i {
    transform: translateY(60px);
    font-size: 50px;
    color: #fff;
}

.ui-block-13.quote.comment-section .card-body {
    padding: 85px 49px;
    padding-bottom: 50px;
}

.ui-block-13.quote.comment-section .card-body p {
    font-size: 24px;
    color: #202020;
}

@media (max-width: 1200px){
    .ui-block-13.quote.comment-section .card-body p {
        font-size: 19px;
    }
}

@media (max-width: 767px){
    .ui-block-13.quote h2 {
        font-size: 33px;
    }
}

@media (max-width: 360px) {
    .ui-block-13.quote h2 {
        font-size: 25px;
    }
}

/* ===================================
     UI-Block-19
==================================== */
.ui-block-19.quote {
    overflow: hidden;
    padding-top: 75px;
}

.ui-block-19.quote .about-text{
    text-align: center;
}

.ui-block-19.quote .text-red {
    color: #ff5722;
}

.ui-block-19.quote .small-text {
    font-family: 'OpenSans', sans-serif;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: bold;
}

.ui-block-19.quote .heading {
    font-family: 'Raleway' , sans-serif;
    color: #000;
}

.ui-block-19.quote .sub-heading {
    font-family: 'Open Sans' , sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.ui-block-19.quote .btn-red{
    font-family: 'Open Sans' , sans-serif;
    font-size: 14px;
    padding: 12px 25px;
    background-color: #ff5722;
    color: #fff;
    border: 1px solid #ff5722;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.ui-block-19.quote .btn-red:hover{
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

@media screen and (max-width: 767px){
    .ui-block-19.quote .small-text {
        font-size: 14px;
    }
    .ui-block-19.quote .heading {
        font-size: 26px;
    }
    .ui-block-19.quote .sub-heading {
        font-size: 12px;
    }
}

/* ===================================
     UI-Block-02
==================================== */
.ui-block-02.button{
    text-align: center;
}

.ui-block-02.button .btn {-webkit-appearance: initial; overflow: hidden;position: -webkit-sticky;position: sticky; z-index: 2; display:inline-block; font-size: 16px; border:2px solid transparent; letter-spacing: .5px; line-height: inherit; border-radius: 0; text-transform:capitalize; width: auto;font-family: 'Roboto', sans-serif; font-weight: bold; -webkit-transition: all .5s ease;-o-transition: all .5s ease !important;transition: all .5s ease !important;}

.ui-block-02.button .btn.btn-trans {background: transparent; border-color: #464646; color: #464646}

.ui-block-02.button .btn.btn-trans:hover {background: #ed2d34 !important; border-color: #ed2d34; color: #ffffff !important}

.ui-block-02.button .btn.btn-medium {font-size:16px; padding: 10px 48px; line-height: 1.8em}

.ui-block-02.button .btn.btn-rounded {border-radius: 50px;}

/* ===================================
     Custom New
==================================== */

.panel__header {
    align-items: center;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    padding: 23px 20px;
    position: relative;
    text-align: center;
  	color: #ffffff;
}

@media (max-width: 767px) {
.cart--mini .mini-cart-content .control-buttons {
    border-top: 1px solid #e1e1e1;
    padding: 0 25px 100px;
}
}

.footer-mobile .menu--footer li a i {
    display: inline-block;
    font-size: 40px;
}

@media (max-width: 767px) {
    .section-content.section-content__slider {
        padding: 5px 5px;
    }
}


.widget-product-categories .product-categories-body .product-category-item .category-item-body {
    background-color: #f7f7f7;
    border-radius: 10px;
    height: 100%;
}

/* Normal state */
.widget-product-categories .product-categories-body .product-category-item .category-item-body .category__name {
    font-size: 17px;
    font-weight: 700;
    color: #000000; /* White color */
}

/* Hover state for category-item-body affecting category__name */
.widget-product-categories .product-categories-body .product-category-item .category-item-body:hover {
    background-color: #28a745; /* Background color for the body */
    box-shadow: 0 1.5rem 2rem 0 hsla(225, 2%, 52%, .15);
    transition: .5s;
}


/* Hover state */
.widget-product-categories .product-categories-body .product-category-item .category-item-body .category__name:hover {
    color: #ffffff; /* Hover color, change to desired color */
}

/* Ensure text color changes when hovering over the body */
.widget-product-categories .product-categories-body .product-category-item .category-item-body:hover .category__name {
    color: #ffffff !important; /* Black text color */
}

.product-category-item-custom {
    .category-item-body {
        background-color: #f7f7f7;
        border-radius: 10px;
        height: 100%;
    }
}

#footer {
    background-color: #f7f7f7;
}

.container-xxxl {
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
}

#footer .border-top {
    border-top: 0.25px solid #000 !important;
}

.footer__links {
    border-top: 0.25px solid #000;
    padding: 30px 0;
}

/* 22/10/2024 */