/*..........Phsar..........*/


/*Custom property*/

:root {
    /** typography */
    --fs-1: 1.563rem;
    --fs-2: 1.375rem;
    --fs-3: 1.25rem;
    --fs-4: 1.125rem;
    --fs-5: 1rem;
    --fs-6: 0.938rem;
    --fs-7: 0.875rem;
    --fs-8: 0.813rem;
    --fs-9: 0.75rem;
    --fs-10: 0.688rem;
    --fs-11: 0.625rem;
}


/*Reset*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

button {
    background: none;
    font: inherit;
    border: none;
    cursor: pointer;
}

ion-icon,
button {
    display: block;
}

span {
    display: inline-block;
}

html {
    overscroll-behavior: contain;
}


/* scrollbar style */

body::-webkit-scrollbar {
    width: 15px;
}

body::-webkit-scrollbar-track {
    background: #fff;
    border-left: 1px solid hsl(0, 0%, 93%);
}

body::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 80%);
    border: 3px solid #fff;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: hsl(0, 0%, 70%);
}


/*Reused style*/

.has-scrollbar {
    padding-bottom: 5px;
}

.has-scrollbar::-webkit-scrollbar {
    width: 12px;
    /* for vertical scroll */
    height: 12px;
    /* for horizontal scroll */
}

.has-scrollbar::-webkit-scrollbar-thumb {
    background: transparent;
    border: 3px solid #fff;
    border-radius: 20px;
}

.has-scrollbar:hover::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 90%);
}

.has-scrollbar::-webkit-scrollbar-thumb:hover {
    background: hsl(0, 0%, 80%);
}

.title {
    color: #4cb0d4;
    font-size: 17px;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    padding-bottom: 10px;
    border-bottom: 1px solid hsl(0, 0%, 93%);
    margin-bottom: 30px;
}


/*..........Main..........*/


/** overlay */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, 0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    transition: 0.5s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}


/*** MODAL */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10000;
    animation: popup 1s ease-in-out 5s forwards;
}

@keyframes popup {
    0% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    100% {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
}

.modal.closed {
    display: none;
}

.modal-close-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.newsletter-img {
    display: none;
}

.modal-content {
    position: relative;
    max-width: 350px;
    margin: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    z-index: 2;
    animation: scaleUp 0.5s ease-in-out 5s forwards;
}

@keyframes scaleUp {
    0% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4cb0d4;
    color: #fff;
    font-size: 16px;
    padding: 5px;
    border-radius: 4px;
    transition: all .3s ease;
}

.modal-close-btn:hover {
    background-color: #d73041;
}

.modal-close-btn ion-icon {
    --ionicon-stroke-width: 70px;
}

.newsletter {
    padding: 50px 30px;
    text-align: center;
}

.newsletter input {
    display: block;
    width: 100%;
    font: inherit;
}

.newsletter input::placeholder {
    font: inherit;
}

.newsletter-header {
    margin-bottom: 20px;
}

.newsletter-title {
    color: hsl(0, 0%, 27%);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.newsletter-desc {
    color: hsl(0, 0%, 47%);
    font-size: 14px;
    line-height: 1.6;
}

.email-field {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid hsl(0, 0%, 93%);
    margin-bottom: 15px;
}

.btn-newsletter {
    background: #4cb0d4;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 8px;
    margin: auto;
    transition: all .3s ease;
}

.btn-newsletter:hover {
    background: #d73041;
}


/*** End MODAL */


/*** NOTIFICATION TOAST */

.notification-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px hsla(0, 0%, 0%, 0.15);
    transform: translateX(calc(-100% - 40px));
    transition: 0.5s ease-in-out;
    z-index: 5;
    animation: slideInOut 10s ease-in-out infinite;
}

@keyframes slideInOut {
    0%,
    45%,
    100% {
        transform: translateX(calc(-100% - 40px));
        opacity: 0;
        visibility: hidden;
    }
    50%,
    95% {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}

.notification-toast.closed {
    display: none;
}

.toast-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: hsl(0, 0%, 47%);
    ;
}

.toast-close-btn ion-icon {
    --ionicon-stroke-width: 50px;
    font-size: 15px;
}

.toast-banner {
    width: 70px;
    height: 70px;
    border-radius: 4px;
}

.toast-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
}

.toast-detail {
    width: calc(100% - 85px);
    padding-right: 10px;
}

.toast-message {
    font-size: 11px;
    color: hsl(0, 0%, 47%);
    margin-bottom: 8px;
}

.toast-title {
    font-size: 14px;
    font-weight: 500;
    color: hsl(0, 0%, 27%);
}

.toast-meta {
    font-size: 11px;
    color: hsl(0, 0%, 47%);
}


/*** End NOTIFICATION TOAST */


/*..........Header Phsar..........*/

.header-user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .header-user-actions {
        margin-top: 20px;
    }
}

.header-user-actions .action-btn {
    position: relative;
    font-size: 30px;
    color: #4cb0d4;
    padding-left: 5px;
}

.header-user-actions .count {
    position: absolute;
    top: -2px;
    right: -3px;
    background: #d73041;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 20px;
}

.header-main {
    padding: 20px 0;
}

.header-search-container {
    position: relative;
}

.container-phsar .header-search-container input {
    display: block;
    width: 100%;
    font: inherit;
}

.container-phsar .header-search-container input::placeholder {
    font: inherit;
}

.header-search-container .search-field {
    font-size: 16px;
    color: hsl(0, 0%, 27%);
    padding: 10px 15px;
    padding-right: 50px;
    border: 1px solid #4cb0d4;
    border-radius: 8px;
}

.search-field::-webkit-search-cancel-button {
    display: none;
}

.search-btn {
    background: #fff;
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    color: hsl(0, 0%, 27%);
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-btn:hover {
    color: #d73041;
}

.mobile-bottom-navigation .action-btn {
    position: relative;
    font-size: 26px;
    color: #4cb0d4;
}

.menu-close-btn {
    color: hsl(0, 0%, 13%);
    font-size: 22px;
}

.menu-close-btn ion-icon {
    --ionicon-stroke-width: 50px;
}

.accordion-menu>div {
    font-size: 14px;
}

.accordion-menu ion-icon {
    color: hsl(0, 0%, 27%);
    --ionicon-stroke-width: 90px;
}

.accordion-menu.active .add-icon,
.accordion-menu .remove-icon {
    display: none;
}

.accordion-menu .add-icon,
.accordion-menu.active .remove-icon {
    display: block;
}

.menu-category .submenu-category-list {
    margin-left: 10px;
}

.submenu-title {
    padding: 6px 0;
    font-size: var(--fs-6);
    color: hsl(0, 0%, 47%);
    ;
    font-weight: 300;
}

.submenu-title:hover {
    color: hsl(0, 0%, 33%);
}

.submenu-category-list {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}

.submenu-category-list.active {
    max-height: 148px;
    visibility: visible;
}

.menu-bottom .menu-category-list {
    margin-bottom: 20px;
}

.menu-bottom .menu-category {
    border-bottom: none;
}

.menu-bottom .menu-title {
    font-size: var(--fs-6);
    font-weight: 500;
    color: hsl(0, 0%, 13%);
    padding: 12px 0;
}

.accordion-menu.active .caret-back {
    transform: rotate(-0.25turn);
}

.menu-bottom .submenu-category-list {
    border: 1px solid hsl(0, 0%, 93%);
    border-radius: 8px;
    padding: 0 15px;
    margin-left: 0;
    box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.05);
}

.menu-bottom .submenu-category:not(:last-child) {
    border-bottom: 1px solid hsl(0, 0%, 93%);
}

.menu-social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


/*..........End Header Phsar..........*/


/*..........Sidebar..........*/

.sidebar {
    background: #fff;
    position: fixed;
    top: 100px;
    left: -100%;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    padding: 30px;
    overflow-y: scroll;
    overscroll-behavior: contain;
    visibility: hidden;
    transition: 0.5s ease;
    z-index: 20;
    border-radius: 8px;
}

.sidebar.active {
    left: 0;
    visibility: visible;
}

.sidebar-category {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid hsl(0, 0%, 93%);
}

.sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sidebar-title {
    color: hsl(0, 0%, 27%);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.sidebar-close-btn {
    color: hsl(0, 0%, 13%);
    font-size: 22px;
    font-weight: 600;
}

.sidebar-close-btn ion-icon {
    --ionicon-stroke-width: 50px;
}

.sidebar-accordion-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

.sidebar .menu-title-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar .menu-title {
    font-size: 15px;
    color: hsl(0, 0%, 47%);
    font-weight: 500;
}

.sidebar-accordion-menu ion-icon {
    color: hsl(0, 0%, 47%);
    font-size: 14px;
    --ionicon-stroke-width: 70px;
}

.sidebar-submenu-category-list {
    border-top: 1px solid hsl(0, 0%, 93%);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}

.sidebar-submenu-category-list.active {
    padding: 13px 0 8px;
    max-height: 122px;
    visibility: visible;
}

.sidebar-submenu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: hsl(0, 0%, 47%);
    font-size: var(--fs-7);
    padding: 2px 0;
}

.sidebar-submenu-title:hover {
    color: hsl(0, 0%, 13%);
}

.sidebar .product-name {
    text-transform: capitalize;
}

.sidebar-accordion-menu.active .add-icon,
.sidebar-accordion-menu .remove-icon {
    display: none;
}

.sidebar-accordion-menu .add-icon,
.sidebar-accordion-menu.active .remove-icon {
    display: block;
}

.sidebar .showcase-heading {
    font-size: 16px;
    font-weight: 600;
    color: hsl(0, 0%, 27%);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.sidebar .showcase {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar .showcase:not(:last-child) {
    margin-bottom: 15px;
}

.sidebar .showcase-img {
    border-radius: 4px;
}

.sidebar .showcase-content {
    width: calc(100% - 90px);
}

.sidebar .showcase-title {
    color: hsl(0, 0%, 27%);
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    letter-spacing: 0.5px;
}

.sidebar .showcase-rating {
    display: flex;
    align-items: center;
    color: #4cb0d4;
    font-size: 13px;
    padding: 4px 0;
}

.sidebar .price-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar .price-box del {
    color: hsl(0, 0%, 47%);
    font-size: 13px;
    text-decoration: line-through;
}

.sidebar .price-box .price {
    font-size: 16px;
    font-weight: 600;
    color: hsl(0, 0%, 33%);
}


/*..........End Sidebar..........*/


/*..........Product Minimal..........*/

.product-minimal {
    margin-bottom: 30px;
}

.product-minimal .product-showcase {
    margin-bottom: 10px;
}

.product-minimal .showcase-wrapper {
    display: flex;
    align-items: center;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
}

.product-minimal .showcase-container {
    min-width: 100%;
    scroll-snap-align: start;
}

.product-minimal .showcase {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    border: 1px solid hsl(0, 0%, 93%);
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
}

.product-minimal .showcase:not(:last-child) {
    margin-bottom: 15px;
}

.product-minimal .showcase-content {
    width: calc(100% - 85px);
}

.product-minimal .showcase-title {
    color: hsl(0, 0%, 13%);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.product-minimal .showcase-category {
    width: max-content;
    color: hsl(0, 0%, 33%);
    font-size: 15px;
    text-transform: capitalize;
    margin-bottom: 3px;
}

.product-minimal .showcase-category:hover {
    color: #d73041;
}

.product-minimal .price-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-minimal .price {
    font-size: 16px;
    font-weight: 700;
    color: #d73041;
}

.product-minimal .price-box del {
    font-size: 14px;
    color: hsl(0, 0%, 47%);
    text-decoration: line-through;
}


/*..........End Product Minimal..........*/


/*..........Product Featured..........*/

.product-featured {
    margin-bottom: 30px;
}

.product-featured .showcase-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
}

.product-featured .showcase-container {
    min-width: 100%;
    padding: 30px;
    border: 1px solid hsl(0, 0%, 93%);
    border-radius: 8px;
    scroll-snap-align: start;
    background-color: #fff;
}

.product-featured .showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-featured .showcase-content {
    margin-top: 30px;
}

.product-featured .showcase-rating {
    color: #4cb0d4;
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.product-featured .showcase-title {
    font-size: 16px;
    color: hsl(0, 0%, 13%);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.product-featured .showcase-desc {
    color: hsl(0, 0%, 47%);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}

.product-featured .price-box {
    font-size: var(--fs-3);
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.product-featured .price {
    font-size: 18px;
    color: #d73041;
    font-weight: 700;
}

.product-featured del {
    color: hsl(0, 0%, 47%);
    font-weight: 300;
    font-size: 16px;
    text-decoration: line-through;
}

.product-featured .add-cart-btn {
    background: #d73041;
    padding: 8px 15px;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all .3s ease;
}

.product-featured .add-cart-btn:hover {
    background: #4cb0d4;
}

.product-featured .showcase-status {
    margin-bottom: 15px;
}

.product-featured .showcase-status .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: hsl(0, 0%, 13%);
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-featured .showcase-status-bar {
    background: hsl(0, 0%, 93%);
    position: relative;
    height: 10px;
    border-radius: 5px;
}

.product-featured .showcase-status-bar::before {
    position: absolute;
    content: '';
    top: 3px;
    left: 3px;
    height: 4px;
    width: 40%;
    background: #4cb0d4;
    border-radius: 4px;
}

.product-featured .countdown-desc {
    color: hsl(0, 0%, 13%);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-featured .countdown {
    display: flex;
    gap: 5px;
}

.product-featured .countdown-content {
    padding: 5px;
    background: hsl(0, 0%, 93%);
    border-radius: 8px;
    text-align: center;
}

.product-featured .display-number {
    color: hsl(0, 0%, 13%);
    font-size: 16px;
    font-weight: 500;
    min-width: 40px;
}

.product-featured .display-text {
    color: hsl(0, 0%, 33%);
    font-size: 12px;
}


/*..........End Product Featured..........*/


/*..........Product Grid..........*/

.product-main {
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.product-grid .showcase {
    border: 1px solid hsl(0, 0%, 93%);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    transition: all .3s ease;
}

.product-grid .showcase:hover {
    box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
}

.product-grid .showcase-banner {
    position: relative;
}

.product-grid .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease;
}

.product-grid .showcase:hover .product-img {
    transform: scale(1.1);
}

.product-grid .showcase-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4cb0d4;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 0 8px;
    border-radius: 4px;
    z-index: 3;
}

.product-grid .showcase-badge.angle {
    top: 8px;
    left: -29px;
    transform: rotate(-45deg);
    text-transform: uppercase;
    font-size: 11px;
    padding: 5px 40px;
}

.product-grid .showcase-badge.black {
    background: #4cb0d4;
    font-size: 12px;
    color: #fff;
}

.product-grid .showcase-badge.pink {
    background: #d73041;
    font-size: 12px;
    color: #fff;
}

.product-grid .showcase-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    transform: translateX(50px);
    transition: all .3s ease;
    z-index: 3;
}

.product-grid .showcase:hover .showcase-actions {
    transform: translateX(0);
}

.product-grid .btn-action {
    background: #fff;
    color: #4cb0d4;
    margin-bottom: 5px;
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 4px;
    transition: all .3s ease;
}

.product-grid .btn-action a {
    text-decoration: none;
    color: #4cb0d4;
}

.product-grid .btn-action:hover {
    background: #4cb0d4;
    color: #fff;
    border-color: #4cb0d4;
}

.product-grid .btn-action a:hover {
    color: #fff;
}

.product-grid .showcase-content {
    padding: 15px 20px 0;
}

.product-grid .showcase-category {
    color: #d73041;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-grid .showcase-title {
    color: hsl(0, 0%, 47%);
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 10px;
    transition: all .3s ease;
}

.product-grid .showcase-title:hover {
    color: hsl(0, 0%, 13%);
}

.product-grid .showcase-rating {
    font-size: 15px;
    display: flex;
    color: #4cb0d4;
    margin-bottom: 10px;
}

.product-grid .price-box {
    display: flex;
    gap: 10px;
    font-size: var(--fs-7);
    color: hsl(0, 0%, 13%);
    margin-bottom: 10px;
}

.product-grid .price {
    font-size: 16px;
    font-weight: 700;
    color: #d73041;
}

.product-grid del {
    color: hsl(0, 0%, 47%);
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
}


/*..........End Product Grid..........*/


/*..........Testimonial,TA,Service..........*/


/* Testimonial */

.testimonials-box {
    margin-bottom: 50px;
}

.testimonial-card {
    padding: 30px 20px;
    border: 1px solid hsl(0, 0%, 93%);
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
    background-color: #fff;
}

.testimonial-banner {
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
}

.testimonial-name {
    font-weight: 700;
    text-transform: uppercase;
    color: hsl(0, 0%, 47%);
    font-size: 17px;
    margin-bottom: 5px;
}

.testimonial-title {
    color: hsl(0, 0%, 27%);
    font-size: 16px;
    margin-bottom: 15px;
}

.quotation-img {
    margin: auto;
    margin-bottom: 10px;
}

.testimonial-desc {
    max-width: 70%;
    margin: auto;
    color: hsl(0, 0%, 47%);
    font-size: 15px;
}


/*CTA*/

.cta-container {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.cta-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    background: hsla(0, 0%, 100%, 0.7);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    padding: 15px 20px;
    text-align: center;
    border-radius: 4px;
}

.cta-content .discount {
    background: hsl(0, 0%, 13%);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    width: max-content;
    margin: auto;
    padding: 0 5px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.cta-title {
    color: hsl(0, 0%, 27%);
    font-size: var(--fs-5);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.cta-text {
    color: hsl(0, 0%, 47%);
    font-size: var(--fs-7);
    margin-bottom: 5px;
}

.cta-btn {
    font-size: var(--fs-9);
    color: hsl(0, 0%, 47%);
    text-transform: uppercase;
    font-weight: var(--weight-700);
    margin: auto;
}


/*Service*/

.service-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 15px;
    border: 1px solid hsl(0, 0%, 93%);
    border-radius: 8px;
    background-color: #fff;
}

.service-item {
    min-width: 190px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon {
    font-size: 30px;
    color: #4cb0d4;
    transition: all .3s ease;
}

.service-icon ion-icon {
    --ionicon-stroke-width: 25px;
}

.service-item:hover .service-icon {
    color: #d73041;
}

.service-title {
    color: hsl(0, 0%, 47%);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.service-desc {
    color: hsl(0, 0%, 47%);
    font-size: 13px;
}


/*..........End Testimonial,TA,Service..........*/


/*..........Responsive..........*/


/** responsive larger than 480px screen */

@media (min-width: 480px) {
    /** #CUSTOM PROPERTY */
     :root {
        /** typography */
        --fs-1: 1.875rem;
    }
    /** #HEADER */
    .header-main {
        padding: 25px 0;
    }
    /** #PRODUCT */
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    /** #CTA */
    .cta-content {
        padding: 40px;
    }
    .cta-content .discount {
        --fs-11: 0.875rem;
        padding: 5px 10px;
    }
    .cta-title {
        --fs-5: 1.5rem;
    }
    .cta-text {
        --fs-7: 1rem;
    }
    .cta-btn {
        --fs-9: 1rem;
    }
}


/** responsive larger than 992px screen */

@media (min-width: 992px) {
    /** #HEADER */
    .container-phsar,
    .header-main .container-phsar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-logo {
        margin-bottom: 0;
    }
    .header-search-container {
        min-width: 300px;
    }
    /** #CATEGORY */
    .category-item-container {
        gap: 30px;
    }
    .category-item {
        min-width: calc(50% - 15px);
    }
    /** #PRODUCT */
    .product-minimal .showcase-container {
        min-width: 50%;
    }
    .product-featured .showcase-img {
        max-width: 450px;
        margin: auto;
    }
    .product-featured .countdown {
        gap: 20px;
    }
    /** #CTA */
    .cta-container {
        aspect-ratio: 6 / 5;
    }
}


/** responsive larger than 768px screen */

@media (min-width: 768px) {
    /** #CUSTOM PROPERTY */
     :root {
        /** typography */
        --fs-1: 2.375rem;
    }
    /** #BASE */
    /** #MODAL */
    .modal-content {
        display: flex;
        align-items: center;
        max-width: 750px;
        width: fit-content;
    }
    .newsletter-img {
        align-items: center;
        display: flex;
    }
    .newsletter {
        text-align: left;
    }
    /** #HEADER */
    .header-main .container-phsar {
        gap: 80px;
    }
    /** #CATEGORY */
    .category-img-box {
        padding: 20px;
    }
    /** #PRODUCT */
    .product-minimal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .product-minimal .product-showcase {
        min-width: calc(50% - 10px);
        width: calc(50% - 10px);
    }
    .product-minimal .showcase-container {
        min-width: 100%;
    }
    .product-featured .showcase {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .product-featured .showcase-img {
        max-width: fit-content;
    }
    .product-featured .showcase-content {
        margin-top: 0;
        min-width: calc(100% - 345px);
    }
}


/** responsive larger than 1024px screen */

@media (min-width: 1024px) {
    /** #CUSTOM PROPERTY */
     :root {
        /** typography */
        --fs-1: 2.625rem;
        --fs-2: 1.125rem;
    }
    /** #NOTIFICATION TOAST */
    .notification-toast {
        bottom: 30px;
    }
    .mobile-bottom-navigation {
        display: none;
    }
    /** #CATEGORY */
    .category-item {
        min-width: calc(33.33% - 20px);
    }
    .category-img-box {
        padding: 10px;
    }
    /** #PRODUCT */
    .product-container .container-phsar {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 30px;
    }
    .sidebar {
        --fs-5: 0.941rem;
        position: sticky;
        top: 30px;
        left: 0;
        padding: 20px;
        min-width: calc(25% - 15px);
        margin-bottom: 30px;
        visibility: visible;
        overflow-y: auto;
        overscroll-behavior: auto;
        z-index: 0;
    }
    .sidebar-category {
        margin-bottom: 30px;
    }
    .sidebar-close-btn {
        display: none;
    }
    .product-box {
        min-width: calc(75% - 15px);
    }
    .product-minimal {
        margin-bottom: 20px;
    }
    .product-minimal .product-showcase {
        min-width: calc(33.33% - 14px);
        width: calc(33.33% - 14px);
        flex-grow: 1;
    }
    .product-minimal .showcase-wrapper {
        gap: 10px;
    }
    .product-minimal .showcase-container {
        padding: 2px;
    }
    .product-featured .countdown-content {
        padding: 5px 10px;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /** #TESTIMONIALS, CTA & SERVICE */
    .testimonials-box {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        gap: 30px;
    }
    .testimonial-card {
        margin-bottom: 0;
    }
    .testimonial,
    .cta-container {
        min-width: calc(50% - 15px);
        width: calc(50% - 15px);
        margin-bottom: 0;
    }
    .service {
        width: 100%;
    }
    .service-container {
        gap: 0;
    }
    .service-item {
        flex-direction: column;
        text-align: center;
        min-width: 20%;
    }
}


/** responsive larger than 1200px screen */

@media (min-width: 1200px) {
    /** #CATEGORY */
    .category-item {
        min-width: calc(25% - 22.5px);
    }
    .category-item-title {
        --fs-9: 0.824rem;
    }
    /** #PRODUCT */
    .product-featured .showcase>div {
        min-width: calc(50% - 10px);
    }
    .product-featured .display-number {
        --fs-5: 1.125rem;
    }
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    /** #TESTIMONIALS, CTA, SERVICE */
    .testimonial,
    .service {
        min-width: calc(25% - 20px);
        width: calc(25% - 20px);
    }
    .cta-container {
        min-width: calc(50% - 20px);
        width: calc(50% - 20px);
        aspect-ratio: unset;
    }
    .service-container {
        justify-content: flex-start;
        gap: 16px;
        padding: 30px;
    }
    .service-item {
        flex-direction: row;
        text-align: left;
    }
}


/*..........End Responsive..........*/


/*..........End Phsar..........*/