@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{

    --spanish-gray: hsl(0, 0%, 60%);
    --sonic-silver: hsl(0, 0%, 47%);
    --eerie-black: hsl(0, 0%, 13%);
    --salmon-pink: hsl(353, 100%, 78%);
    --sandy-brown: hsl(29, 90%, 65%);
    --bittersweet: hsl(0, 100%, 70%);
    --ocean-green: hsl(152, 51%, 52%);
    --davys-gray: hsl(0, 0%, 33%);
    --cultured: hsl(0, 0%, 93%);
    --white: hsl(0, 100%, 100%);
    --onyx: hsl(0, 0%, 27%);

    --fs-1: 1.563rem;
    --fs-2: 1.375rem;
    --fs-3: 1.25rem;
    --fs-4: 1.125rem;
    --fs-5: 1rem;
    --fs-6: .938rem;
    --fs-7: .875rem;
    --fs-8: .813rem;
    --fs-9: .75rem;
    --fs-10: .688rem;
    --fs-11: .625rem;

    --weight-300: 300;
    --weight-400: 400;
    --weight-500: 500;
    --weight-600: 600;
    --weight-700: 700;

    --border-radius-medium: 10px;
    --border-radius-small: 5px;

    --transition-timing: .2s ease;
}

*, ::before, ::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* text-decoration: none; */
    list-style: none;
}

button{
    background: none;
    font: inherit;
    border: none;
    cursor: pointer;
}

a { text-decoration: none; }

img, ion-icon, button, a { display: block; }

span { display: inline-block; }

html {
    font-family: "Poppins", sans-serif;
    overscroll-behavior: contain;
}

input{
    display: block;
    width: 100%;
    font: inherit;
}

input::placeholder { font: inherit; }

body { 
    background: var(--white);
    /* padding-bottom: 60px; */
}


    body::-webkit-scrollbar { width: 15px; }

    body::-webkit-scrollbar-track {
        background: var(--white);
        border-left: 1px solid var(--cultured);
    }

    body::-webkit-scrollbar-thumb {
        background: hsl(0, 0%, 80%);
        border: 3px solid var(--white);
        border-radius: 10px;
    }

        body::-webkit-scrollbar-thumb:hover { background: hsl(0, 0%, 70%); }

.container { padding: 0 15px; }

.has-scrollbar { padding-bottom: 5px; }

    .has-scrollbar::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    .has-scrollbar::-webkit-scrollbar-thumb {
        background: transparent;
        border: 3px solid var(--white);
        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: var(--eerie-black);
    font-size: var(--fs-5);
    font-weight: var(--weight-600);
    letter-spacing: .4px;
    text-transform: capitalize;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cultured);
    margin-bottom: 30px;
}

/*MAIN*/

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, .5);
    opacity: 0;
    pointer-events: none;
    z-index: 15;
    transition: .5s ease;
}

    .overlay.active{
        opacity: 1;
        pointer-events: all;
    }

.modal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: hsla(0, 0%, 0%, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10;
    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: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    z-index: 2;
    animation: scaleUp .5s ease-in-out 5s forwards;
}

    @keyframes scaleUp {
        0% { transform: scale(.9); }
        100% { transform: scale(1); }
    }

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--salmon-pink);
    color: var(--white);
    font-size: 16px;
    padding: 5px;
    border-radius: var(--border-radius-small);
}

    .modal-close-btn:hover { opacity: .9; }
    .modal-close-btn ion-icon { --ionicon-stroke-width: 70px; }

.newsletter {
    padding: 50px 30px;
    text-align: center;
}

.newsletter-header { margin-bottom: 20px; }

.newsletter-title {
    color: var(--onyx);
    font-size: var(--fs-3);
    font-weight: var(--weight-600);
    margin-bottom: 10px;
}

.newsletter-desc {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    line-height: 1.6;
}

.email-field {
    font-size: var(--fs-7);
    padding: 8px 16px;
    border-radius: var(--border-radius-small);
    border: 1px solid var(--cultured);
    margin-bottom: 16px;
}

.btn-newsletter {
    background: var(--eerie-black);
    color: var(--white);
    font-size: var(--fs-7);
    font-weight: var(--weight-600);
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: var(--border-radius-small);
    margin: auto;
    transition: var(--transition-timing);
}

   .btn-newsletter:hover { background: var(--salmon-pink); } 

.notification-toast {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    background: var(--white);
    max-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 5px 20px hsla(0, 0%, 0%, .15);
    transform: translateX(calc(-100% - 40px));
    transition: .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: var(--sonic-silver);
}

    .toast-close-btn ion-icon { --ionicon-stroke-wifth: 50px; }

.toast-banner {
    width: 70px;
    height: 70px;
    border: 1px solid var(--cultured);
    border-radius: var(--border-radius-small);
}

    .toast-banner img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

.toast-detail {
    width: calc(100% - 80px);
    padding-right: 10px;
}

.toast-message {
    font-size: var(--fs-10);
    color: var(--sonic-silver);
    margin-bottom: 8px;
}

.toast-title {
    font-size: var(--fs-7);
    font-weight: var(--weight-500);
    color: var(--onyx);
}

.toast-meta {
    font-size: var(--fs-10);
    color: var(--sonic-silver);
}

/*HEADER*/

.header-top, .header-user-actions, .desktop-navigation-menu { display: none; }

.header-main {
    padding: 20px 0;
    border-bottom: 1px solid var(--cultured);
}

.header-logo { margin-bottom: 20px; }
    .header-logo img { margin: auto; }

.header-search-container { position: relative; }

    .header-search-container .search-field {
        font-size: var(--fs-7);
        color: var(--onyx);
        padding: 10px 15px;
        padding-right: 50px;
        border: 1px solid var(--cultured);
        border-radius: var(--border-radius-medium);
    }

        .search-field::-webkit-search-cancel-button { display: none; }

.search-btn {
    background: var(--white);
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    color: var(--onyx);
    font-size: 18px;
    padding: 8px 15px;
    transition: color var(--transition-timing);
}

    .search-btn:hover { color: var(--salmon-pink); }

.mobile-bottom-navigation {
    background: var(--white);
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px 0;
    box-shadow: 0 0 10px hsla(0, 0%, 0%, .25);
    z-index: 5;
}

    .mobile-bottom-navigation .action-btn {
        position: relative;
        font-size: 26px;
        color: var(--eerie-black);
        padding: 10px;
    }

    .mobile-bottom-navigation .count {
        background: var(--bittersweet);
        color: var(--white);
        position: absolute;
        top: 0;
        right: 0;
        font-size: 12px;
        font-weight: var(--weight-500);
        line-height: 1;
        padding: 2px 4px;
        border-radius: 20px;
    }

.mobile-navigation-menu {
    background: var(--white);
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    padding: 20px;
    box-shadow: 0 0 10px hsla(0, 0%, 0%, .1);
    overflow-y: scroll;
    overscroll-behavior: contain;
    visibility: hidden;
    transition: .5s ease;
    z-index: 20;
}

    .mobile-navigation-menu.active {
        left: 0;
        visibility: visible;
    } 

.menu-top {
    padding-bottom: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--cultured);
}

    .menu-top .menu-title {
        color: var(--salmon-pink);
        font-size: var(--fs-4);
        font-weight: var(--weight-600);
    }

.menu-close-btn {
    color: var(--eerie-black);
    font-size: 22px;
}

    .menu-close-btn ion-icon { --ionicon-stroke-width: 50px; }

.menu-category .accordion-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-category .submenu-category-list { margin-left: 10px; }

.mobile-menu-category-list { margin-bottom: 30px; }

    .mobile-menu-category-list .menu-category { border-bottom: 1px solid var(--cultured); }

    .mobile-menu-category-list .menu-title {
        color: var(--onyx);
        font-size: var(--fs-6);
        font-weight: var(--weight-500);
        padding: 12px 0;
    }

.accordion-menu > div { font-size: 14px; }

.accordion-menu ion-icon {
    color: var(--onyx);
    --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; }

.submenu-title {
    padding: 6px 0;
    font-size: var(--fs-6);
    color: var(--sonic-silver);
    font-weight: var(--weight-300);
}

    .submenu-title:hover { color: var(--davys-gray); }

.submenu-category-list {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: .5s ease-in-out;
}

    .submenu-category-list.active {
        max-height: 144px;
        visibility: visible;
    }

.menu-bottom .submenu-category-list { 
    margin-bottom: 20px;
    border: 1px solid var(--cultured);
    border-radius: var(--border-radius-medium);
    padding: 0 15px;
    margin-left: 0;
    box-shadow: 0 0 10px hsla(0, 0%, 0%, .05); 
}

.menu-bottom .menu-category { border-bottom: none; }

.menu-bottom .menu-title {
    font-size: var(--fs-4);
    font-weight: var(--weight-500);
    color: var(--eerie-black);
    padding: 12px 0;
}

.menu-bottom .submenu-category:not(:last-child) { border-bottom: 1px solid var(--cultured); }

.accordion-menu.active .caret-back { transform: rotate(-0.25turn); }

.menu-social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .menu-social-container .social-link {
        background: var(--cultured);
        color: var(--eerie-black);
        font-size: 20px;
        padding: 10px;
        border-radius: var(--border-radius-medium);
    }

/*BANNER*/

.banner { margin: 30px 0; }

.slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--border-radius-medium);
    overflow: auto hidden;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
}

.slider-item {
    position: relative;
    min-width: 100%;
    max-height: 450px;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    scroll-snap-align: start;
}

    .slider-item .banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
    }

.banner-content {
    background: hsla(0, 0%, 100%, .5);
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    padding: 20px 25px;
    border-radius: var(--border-radius-medium);
}

.banner-subtitle {
    color: var(--salmon-pink);
    font-size: var(--fs-7);
    font-weight: var(--weight-500);
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.banner-title {
    color: var(--eerie-black);
    font-size: var(--fs-1);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
}

.banner-text { display: none; }

.banner-btn {
    background: var(--salmon-pink);
    color: var(--white);
    width: max-content;
    font-size: var(--fs-11);
    font-weight: var(--weight-600);
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--border-radius-medium);
    transition: var(--transition-timing);
}

    .banner-btn:hover { background: var(--eerie-black); }

/*CATEGORY*/

.category { margin-bottom: 30px; }

.category-item-container {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: auto hidden;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
}

.category-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid var(--cultured);
    border-radius: var(--border-radius-medium);
    scroll-snap-align: start;
}

.category-img-box {
    background: var(--cultured);
    border: 1px solid hsl(0, 0%, 80%);
    padding: 10px;
    border-radius: var(--border-radius-small);
}

.category-content-box { width: 100%; }

.category-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.category-item-title {
    color: var(--eerie-black);
    font-size: var(--fs-9);
    font-weight: var(--weight-600);
    text-transform: uppercase;
}

.category-item-amount {
    color: var(--sonic-silver);
    font-size: var(--fs-11);
}

.category-btn {
    color: var(--salmon-pink);
    font-size: var(--fs-9);
    font-weight: var(--weight-500);
    text-transform: capitalize;
}

/*SIDEBAR*/

.sidebar {
    background: var(--white);
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    padding: 30px;
    overflow-y: scroll;
    overscroll-behavior: contain;
    visibility: hidden;
    transition: .5s ease;
    z-index: 20;
}

    .sidebar.active {
        left: 0;
        visibility: visible;
    }

    .sidebar .menu-title-flex {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sidebar .menu-title {
        font-size: var(--fs-5);
        color: var(--sonic-silver);
        font-weight: var(--weight-500);
    }

    .sidebar .product-name { text-transform: capitalize; }

    .sidebar .showcase-heading {
        font-size: var(--fs-5);
        font-weight: var(--weight-600);
        color: var(--onyx);
        text-transform: uppercase;
        letter-spacing: .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: var(--border-radius-small); }

    .sidebar .showcase-content { width: calc(100% - 90px); }

    .sidebar .showcase-title {
        color: var(--onyx);
        font-size: var(--fs-7);
        font-weight: var(--weight-400);
        text-transform: capitalize;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        letter-spacing: .5px;
    }

    .sidebar .showcase-rating {
        display: flex;
        align-items: center;
        color: var(--sandy-brown);
        font-size: 13px;
        padding: 4px 0;
    }

    .sidebar .price-box {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .sidebar .price-box del {
            color: var(--sonic-silver);
            font-size: 13px;
        }

        .sidebar .price-box .price {
            font-size: var(--fs-7);
            font-weight: var(--weight-600);
            color: var(--davys-gray);
        }

.sidebar-category {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cultured);
}

.sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.sidebar-title {
    color: var(--onyx);
    font-size: var(--fs-5);
    text-transform: uppercase;
    letter-spacing: .8px;
    font-weight: var(--weight-600);
}

.sidebar-close-btn {
    color: var(--eerie-black);
    font-size: 22px;
    font-weight: var(--weight-600);
}

    .sidebar-close-btn ion-icon { --ionic-stroke-width: 50px; }

.sidebar-accordion-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

    .sidebar-accordion-menu ion-icon {
        color: var(--sonic-silver);
        font-size: 14px;
        --ionicon-stroke-width: 70px;
    }

.sidebar-submenu-category-list {
    border-top: 1px solid var(--cultured);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: .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: var(--sonic-silver);
    font-size: var(--fs-7);
    padding: 2px 0;
}

    .sidebar-submenu-title:hover { color: var(--eerie-black); }

.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; }

/*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%;
        padding: 0 5px;
        scroll-snap-align: start;
    }

    .product-minimal .showcase {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
        border: 1px solid var(--cultured);
        padding: 15px;
        border-radius: var(--border-radius-medium);
    }

        .product-minimal .showcase:not(:last-child) { margin-bottom: 15px; }

    .product-minimal .showcase-content {width: calc(100% - 85px); }

    .product-minimal .showcase-title {
        color: var(--eerie-black);
        font-size: var(--fs-7);
        font-weight: var(--weight-600);
        text-transform: capitalize;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 2px;
    }

    .product-minimal .showcase-category {
        width: max-content;
        color: var(--davys-gray);
        font-size: var(--fs-8);
        text-transform: capitalize;
        margin-bottom: 3px;
    }

        .product-minimal .showcase-category:hover { color: var(--salmon-pink); }

    .product-minimal .price-box {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .product-minimal .price-box del {
            font-size: var(--fs-9);
            color: var(--sonic-silver);
        }

    .product-minimal .price {
        font-size: var(--fs-7);
        font-weight: var(--weight-700);
        color: var(--salmon-pink);
    }

/*PRODUCTS 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 var(--cultured);
        border-radius: var(--border-radius-medium);
        scroll-snap-align: start;
    }

    .product-featured .showcase-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-featured .showcase-content { margin-top: 30px; }

    .product-featured .showcase-rating {
        color: var(--sandy-brown);
        display: flex;
        align-items: center;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .product-featured .showcase-title {
        font-size: var(--fs-7);
        color: var(--eerie-black);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        text-transform: uppercase;
        margin-bottom: 3px;
    }

    .product-featured .showcase-desc {
        color: var(--sonic-silver);
        font-size: var(--fs-7);
        font-weight: var(--weight-300);
        text-align: justify;
        margin-bottom: 10px;
    }

    .product-featured .price-box {
        font-size: var(--fs-3);
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
    }

    .product-featured .price {
        color: var(--salmon-pink);
        font-weight: var(--weight-700);
    }

    .product-featured del {
        color: var(--sonic-silver);
        font-weight: var(--weight-300);
    }

    .product-featured .add-cart-btn {
        background: var(--salmon-pink);
        padding: 8px 15px;
        color: var(--white);
        font-size: var(--fs-9);
        font-weight: var(--weight-700);
        text-transform: uppercase;
        border-radius: var(--border-radius-medium);
        margin-bottom: 15px;
        transition: var(--transition-timing);
    }

        .product-featured .add-cart-btn:hover { 
            background: var(--eerie-black);
            color: var(--white);
        }

    .product-featured .showcase-status { margin-bottom: 15px; }

        .product-featured .showcase-status .wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--eerie-black);
            font-size: var(--fs-9);
            font-weight: var(--weight-400);
            text-transform: uppercase;
            margin-bottom: 10px;
        }

    .product-featured .showcase-status-bar {
        background: var(--cultured);
        position: relative;
        height: 10px;
        border-radius: 5px;
    }

        .product-featured .showcase-status-bar::before {
            position: absolute;
            content: '';
            top: 3px;
            left: 3px;
            height: 4px;
            width: 33.33%;
            background: var(--salmon-pink);
            border-radius: 4px;
        }

    .product-featured .countdown-desc {
        color: var(--eerie-black);
        font-size: var(--fs-9);
        font-weight: var(--weight-600);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .product-featured .countdown {
        display: flex;
        gap: 5px;
    }

    .product-featured .countdown-content {
        padding: 5px;
        background: var(--cultured);
        border-radius: var(--border-radius-medium);
        text-align: center;
    }

    .product-featured .display-number {
        color: var(--eerie-black);
        font-size: var(--fs-5);
        font-weight: var(--weight-500);
        min-width: 40px;
    }

    .product-featured .display-text {
        color: var(--davys-gray);
        font-size: var(--fs-11);
    }

/*PRODUCT-GRID*/

.product-main { margin-bottom: 30px; }

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}
    
    .product-grid .showcase {
        border: 1px solid var(--cultured);
        border-radius: var(--border-radius-medium);
        overflow: hidden;
        transition: var(--transition-timing);
    }

        .product-grid .showcase:hover { box-shadow: 0 0 10px hsla(0, 0%, 0%, .1); }
            .product-grid .showcase:hover .showcase-actions { transform: translateX(0); }

    .product-grid .showcase-banner { position: relative; }

    .product-grid .product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition-timing);
    }

        .product-grid .product-img.default {
            position: relative;
            z-index: 1;
        }

        .product-grid .product-img.hover {
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
            opacity: 0;
        }

            .product-grid .showcase:hover .product-img.hover { opacity: 1; }
            .product-grid .showcase:hover .product-img.default { opacity: 0; }
            .product-grid .showcase:hover .product-img { transform: scale(1.1); }

    .product-grid .showcase-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--ocean-green);
        font-size: var(--fs-8);
        font-weight: var(--weight-500);
        color: var(--white);
        padding: 0 8px;
        border-radius: var(--border-radius-small);
        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: var(--eerie-black); }
        .product-grid .showcase-badge.pink { background: var(--salmon-pink); }

    .product-grid .showcase-actions {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        transform: translateX(50px);
        transition: var(--transition-timing);
        z-index: 3;
    }

    .product-grid .btn-action {
        background: var(--white);
        color: var(--sonic-silver);
        margin-bottom: 5px;
        border: 1px solid var(--cultured);
        padding: 5px;
        border-radius: var(--border-radius-small);
        transition: var(--transition-timing);
    }

        .product-grid .btn-action:hover {
            background: var(--eerie-black);
            color: var(--white);
            border-color: var(--eerie-black);
        }

    .product-grid .showcase-content { padding: 15px 20px 0; }

    .product-grid .showcase-category {
        color: var(--salmon-pink);
        font-size: var(--fs-9);
        font-weight: var(--weight-500);
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .product-grid .showcase-title {
        color: var(--sonic-silver);
        font-size: var(--fs-8);
        font-weight: var(--weight-300);
        text-transform: capitalize;
        letter-spacing: 1px;
        margin-bottom: 10px;
        transition: var(--transition-timing);
    }

        .product-grid .showcase-title:hover { color: var(--eerie-black); }

    .product-grid .showcase-rating {
        display: flex;
        color: var(--sandy-brown);
        margin-bottom: 10px;
    }

    .product-grid .price-box {
        display: flex;
        gap: 10px;
        font-size: var(--fs-7);
        color: var(--eerie-black);
        margin-bottom: 10px;
    }

    .product-grid .price { font-weight: var(--weight-700); }
    .product-grid del { color: var(--sonic-silver); }

/*TESTIMONIAL*/

.testimonial-box { margin-bottom: 50px; }

.testimonial-card {
    padding: 30px 20px;
    border: 1px solid var(--cultured);
    border-radius: var(--border-radius-medium);
    text-align: center;
    margin-bottom: 25px;
}

.testimonial-banner {
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
}

.testimonial-name {
    font-weight: var(--weight-700);
    text-transform: uppercase;
    color: var(--sonic-silver);
    margin-bottom: 5px;
}

.testimonial-title {
    color: var(--onyx);
    font-size: var(--fs-7);
    margin-bottom: 15px;
}

.quotation-img {
    margin: auto;
    margin-bottom: 10px;
}

.testimonial-desc {
    max-width: 70%;
    margin: auto;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
}

/*CTA CONTAINER*/

.cta-container {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    margin-bottom: 25px;
}

.cta-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    background: hsla(0, 0%, 100%, .7);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    padding: 15px 20px;
    text-align: center;
    border-radius: var(--border-radius-small);
}

    .cta-content .discount {
        background: var(--eerie-black);
        color: var(--white);
        font-size: var(--fs-11);
        font-weight: var(--weight-600);
        text-transform: uppercase;
        width: max-content;
        margin: auto;
        padding: 0 5px;
        border-radius: var(--border-radius-small);
        margin-bottom: 5px;
    }

.cta-title {
    color: var(--onyx);
    font-size: var(--fs-5);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.cta-text {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    margin-bottom: 5px;
}

.cta-btn {
    font-size: var(--fs-9);
    color: var(--sonic-silver);
    text-transform: uppercase;
    font-weight: var(--weight-700);
    margin: auto;
}

/*SERVICE CONTAINER*/

.service-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 15px;
    border: 1px solid var(--cultured);
    border-radius: var(--border-radius-medium);
}

.service-item {
    min-width: 190px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-icon {
    font-size: 35px;
    color: var(--salmon-pink);
    transition: var(--transition-timing);
}

    .service-icon ion-icon { --ionicon-stroke-wisth: 25px; }
    .service-item:hover .service-icon { color: var(--eerie-black); }

.service-title {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    font-weight: var(--weight-600);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.service-desc {
    color: var(--sonic-silver);
    font-size: var(--fs-9);
}

/*BLOG*/

.blog { margin-bottom: 30px; }

.blog-container {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
}

.blog-card {
    min-width: 100%;
    scroll-snap-align: start;
}

.blog-banner {
    width: 100%;
    border-radius: var(--border-radius-medium);
    margin-bottom: 20px;
}

.blog-category {
    width: max-content;
    color: var(--salmon-pink);
    font-size: var(--fs-6);
}

.blog-title {
    color: var(--eerie-black);
    font-size: var(--fs-5);
    font-weight: var(--weight-600);
    line-height: 1.4;
    margin-bottom: 5px;
    transition: var(--transition-timing);
}

    .blog-title:hover { color: var(--salmon-pink); }

.blog-meta {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
}

    .blog-meta cite {
        font-style: normal;
        color: var(--davys-gray);
    }

/*FOOTER*/

footer {
    background: var(--eerie-black);
    padding: 30px 0;
}

.footer-category {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--onyx);
}

.footer-category-title {
    color: var(--salmon-pink);
    font-size: var(--fs-6);
    font-weight: var(--weight-600);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-category-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 20px;
    row-gap: 3px;
    margin-bottom: 15px;
}

.category-box-title {
    color: var(--spanish-gray);
    font-size: var(--fs-8);
    font-weight: var(--weight-600);
    text-transform: uppercase;
}

.footer-category-link {
    position: relative;
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    text-transform: capitalize;
    transition: var(--transition-timing);
}

    .footer-category-link:hover { color: var(--spanish-gray); }

    .footer-category-link:not(:last-child)::after {
        position: absolute;
        content: '';
        top: 3px;
        right: -10px;
        background: var(--sonic-silver);
        width: 1px;
        height: 15px;
    }

.footer-nav {
    border-bottom: 1px solid var(--onyx);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

    .footer-nav .nav-title {
        position: relative;
        color: var(--white);
        font-size: var(--fs-7);
        text-transform: uppercase;
        margin-bottom: 15px;
        padding-bottom: 5px;
    }

        .footer-nav .nav-title::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            background: var(--salmon-pink);
            width: 60px;
            height: 1px;
        }

    .footer-nav .social-link {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

.footer-nav-list:not(:last-child) { margin-bottom: 20px; }

.footer-nav-item { padding: 3px 0; }

    .footer-nav-link, .footer-nav-item .content {
        width: max-content;
        color: var(--sonic-silver);
        font-size: var(--fs-7);
        text-transform: capitalize;
        transition: var(--transition-timing);
    }

        .footer-nav-link:hover { color: var(--salmon-pink); }
        
        .footer-nav-item.flex {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-nav-item .content {
            font-style: normal;
            margin-bottom: 5px;
        }

        .footer-nav-item .icon-box {
            color: var(--sonic-silver);
            font-size: 25px;
        }

            .footer-nav-item .icon-box ion-icon { --ionicon-stroke-width: 30px; }

.social-link .footer-nav-link { font-size: 25px; }

.footer-bottom {
    margin-bottom: 50px;
    text-align: center;
}

.payment-img {
    max-width: 335px;
    width: 100%;
    margin: auto;
    margin-bottom: 15px;
}

.copyright {
    color: var(--sonic-silver);
    font-size: var(--fs-8);
    font-weight: var(--weight-500);
    text-transform: capitalize;
    letter-spacing: 1.2px;
}

    .copyright a {
        display: inline;
        color: inherit;
    }

/*MEDIA QUERIES*/

@media (min-width: 480px) {
    :root { --fs-1: 1.875rem; }

    .header-top {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--cultured);
    }

    .header-social-container, .header-top-actions { display: none; }

    .header-alert-news { 
        color: var(--sonic-silver);
        font-size: var(--fs-9);
        text-transform: uppercase;
    }

        .header-alert-news b { font-weight: var(--weight-500); }

    .header-main { padding: 25px 0; }

    .mobile-bottom-navigation {
        border-top-left-radius: var(--border-radius-medium);
        border-top-right-radius: var(--border-radius-medium);
    }

    .slider-item { aspect-ratio: 5 / 3;}

    .banner-content {
        top: 50%;
        right: auto;
        bottom: auto;
        transform: translateY(-50%);
        max-width: 320px;
    }

    .banner-subtitle { --fs-7: 1rem; }

    .banner-text {
        display: block;
        color: var(--sonic-silver);
        font-size: var(--fs-7);
        font-weight: var(--weight-500);
        margin-bottom: 10px;
    }

        .banner-text b { font-size: var(--fs-2); }

        .banner-btn { padding: 7px 20px; }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .cta-content { padding: 40px; }

        .cta-content .discount {
            --fs-11: .875rem;
            padding: 5px 10px;
        }

    .cta-title { --fs-5: 1.5rem; }
    .cta-text { --fs-7: 1rem; }
    .cta-btn { --fs-9: 1rem; }

    .copyright { --fs-8: .875rem; }
}

@media (min-width: 570px){
    .header-top .container, .header-main .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-logo { margin-bottom: 0; }

    .header-top-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .header-top-actions select {
            border: none;
            display: block;
            min-width: 80px;
            padding: 5px 0;
            font: inherit;
            color: var(--sonic-silver);
            font-size: var(--fs-8);
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-timing);
        }

            .header-top-actions select:hover { color: var(--eerie-black); }

    .header-search-container { min-width: 300px; }

    .slider-item { aspect-ratio: 4 / 2; }

    .banner-content { background: none; }

    .category-item-container { gap: 30px; }

    .category-item { min-width: calc(50% - 15px); }

    .product-minimal .showcase-container { min-width: 50%; }

    .product-featured .showcase-img {
        max-width: 450px;
        margin: auto;
    }

    .product-featured .countdown { gap: 20px; }

    .cta-container { aspect-ratio: 6 / 5; }

    .blog-card { min-width: calc(50% - 15px); }
}

@media (min-width: 768px){
    :root { --fs-1: 2.375rem; }

    html { font-size: 17px; }

    .container {
        max-width: 750px;
        margin: auto;
    }

    .modal-content {
        display: flex;
        align-items: center;
        max-width: 750px;
        width: fit-content;
    }

    .newsletter-img { display: block; }

    .newsletter { text-align: left; }

    .header-main .container { gap: 80px; }

    .header-search-container { flex-grow: 1; }

    .slider-item { 
        aspect-ratio: auto;
        height: 350px;
    }

    .banner-content { max-width: 380px; }

    .banner-subtitle { --fs-7: 1.25rem; }
    .banner-text { --fs-7: 1.25rem; }
        .banner-text b { --fs-2: 1.875rem; }

    .banner-btn { --fs-11: .75rem; }

    .category-img-box { padding: 20px; }

    .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);
    }

    .footer-nav .container {
        display: flex;
        flex-wrap: wrap;
        row-gap: 50px;
        column-gap: 20px;
    }

    .footer-nav-list {
        min-width: calc(33.33% - 15px);
        width: calc(33.33% - 15px);
        flex-grow: 1;
    }

    .footer-nav-list:not(:last-child) { margin-bottom: 0; }
}

@media (min-width: 1024px){

    :root{
        --fs-1: 2.625rem;
        --fs-2: 1.125rem;
    }

    .container { max-width: 980px; }

    .notification-toast { bottom: 30px; }

    .header-social-container{
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .header-social-container .social-link {
        padding: 5px;
        background: hsl(0, 0%, 95%);
        border-radius: var(--border-radius-small);
        color: var(--sonic-silver);
        transition: var(--transition-timing);
    }

        .header-social-container .social-link:hover {
            background: var(--salmon-pink);
            color: var(--white);
        }

    .header-user-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        .header-user-actions .action-btn {
            position: relative;
            font-size: 35px;
            color: var(--onyx);
            padding: 5px;
        }

        .header-user-actions .count {
            position: absolute;
            top: -2px;
            right: -3px;
            background: var(--bittersweet);
            color: var(--white);
            font-size: 12px;
            font-weight: var(--weight-500);
            line-height: 1;
            padding: 2px 4px;
            border-radius: 20px;
        }

    .desktop-navigation-menu { display: block; }

    .desktop-menu-category-list {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

        .desktop-menu-category-list .menu-category:not(:nth-child(2)) { position: relative; }

            .desktop-menu-category-list .menu-category > .menu-title {
                position: relative;
                color: var(--onyx);
                font-size: var(--fs-7);
                font-weight: var(--weight-600);
                text-transform: uppercase;
                padding: 15px 0;
                transition: var(--transition-timing);
            }

                .desktop-menu-category-list .menu-category > .menu-title:hover { color: var(--salmon-pink); }

                .desktop-menu-category-list .menu-category > .menu-title::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    background: var(--salmon-pink);
                    transform: scaleX(0);
                    transform-origin: left;
                    transition: var(--transition-timing);
                }

                    .desktop-menu-category-list .menu-category > .menu-title:hover::after { transform: scaleX(1); }

                .desktop-menu-category-list .menu-category:hover > .dropdown-panel {
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                    pointer-events: all;
                }

                .desktop-menu-category-list .menu-category:hover > .dropdown-list {
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                    pointer-events: all;
                }

    .dropdown-panel {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 30px;
        border: 1px solid var(--cultured);
        box-shadow: 0 3px 5px hsla(0, 0%, 0%, .1 );
        border-radius: var(--border-radius-medium);
        transform: translateY(50px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition-timing);
        z-index: 5;
    }

    .dropdown-panel-list .menu-title a {
        color: var(--onyx);
        font-size: var(--fs-7);
        font-weight: var(--weight-600);
        padding-bottom: 10px;
        border-bottom: 1px solid var(--cultured);
        margin-bottom: 10px;
    }

    .panel-list-item a {
        color: var(--sonic-silver);
        font-size: var(--fs-7);
        text-transform: capitalize;
        transition: var(--transition-timing);
    }

        .panel-list-item a:hover { color: var(--salmon-pink); }

        .panel-list-item:not(:last-child) a { padding: 4px 0; }
        
        .panel-list-item:last-child {margin-top: 20px; }

    .panel-list-item img {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius-small);
    }

    .dropdown-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px;
        background: var(--white);
        padding: 20px 0;
        border-radius: var(--border-radius-medium);
        border: 1px solid var(--cultured);
        box-shadow: 0 3px 3px hsla(0, 0%, 0%, .1 );
        transform: translateY(50px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition-timing);
        z-index: 5;
    }

        .dropdown-list .dropdown-item a {
            color: var(--sonic-silver);
            font-size: var(--fs-7);
            text-transform: capitalize;
            padding: 4px 20px;
            transition: var(--transition-timing);
        }

            .dropdown-list .dropdown-item a:hover { color: var(--salmon-pink);}

        .mobile-bottom-navigation { display: none; }

    .banner { margin-top: 0; }

    .slider-item { height: 360px; }

    .banner-content {
        left: 75px;
        max-width: 400px;
    }

    .banner-subtitle { --fs-7: 1.625rem; }
    .banner-text { --fs-7: 1.625rem; }
    .banner-btn { --fs-11: .875rem; }

    .category-item { min-width: calc(33.33% - 20px); }
    .category-img-box { padding: 10px; }

    .product-container .container {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 30px;
    }

    .sidebar {
        --fs-5: .941rem;

        position: sticky;
        top: 30px;
        left: 0;
        padding: 0px;
        min-width: calc(25% - 15px);
        margin-bottom: 30px;
        visibility: visible;
        overflow-y: auto;
        overscroll-behavior: auto;
        z-index: 0;
    }

    .sidebar-category {
        padding: 20px;
        margin-bottom: 30px;
        border: 1px solid var(--cultured);
        border-radius: var(--border-radius-medium);
    }

    .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-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%;
    }

    .blog-container { padding-top: 20px; }
    .blog-card { min-width: calc(33.33% - 20px); }
    .blog-title { --fs-5: 1rem; }

    .footer-nav-list {
        min-width: calc(20% - 16px);
        width: calc(20% - 16px);
    }

    .footer-nav-list:last-child { display: none; }

    .footer-bottom { margin-bottom: 0; }
}

@media (min-width: 1200px){
    .container {max-width: 1200px; }

    .desktop-menu-category-list { gap: 45px; }

    .slider-item:last-child .banner-img { object-position: top; }

    .category-item { min-width: calc(25% - 22.5px); }
    .category-item-title { --fs-9: .824rem; }

    .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); }

    .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;
    }

    .blog { margin-bottom: 50px; }
    .blog-card { min-width: calc(25% - 22.5px); }

    footer {padding-top: 50px; }

    .footer-category {
        margin-bottom: 50px;
        padding-bottom: 35px;
    }

    .footer-nav { padding-bottom: 50px; }
}

@media (min-width: 1400px){

    html { font-size: 18px; }

    .container { max-width: 1350px; }

    .banner-content {
        left: 110px;
        max-width: 460px;
    }
}
 
/* Premium Typography */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.logo-mark {
  font-size: 42px;
  font-weight: 300;
  color: #111;
  line-height: 1;
  position: relative;
}

.logo-mark:after {
  content: '';
  position: absolute;
  bottom: 6px;
  right: -6px;
  width: 14px;
  height: 14px;
  background: #d4af37; /* Gold accent */
  border-radius: 50%;
  z-index: -1;
}

.logo-main {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.5px;
}

.logo-name {
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  color: #111;
  letter-spacing: 3px;
  margin-bottom: 2px;
}

.logo-divider {
  width: 35px;
  height: 1px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin: 4px 0;
}

.logo-tagline {
  font-size: 9px;
  font-weight: 400;
  color: #777;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* Hover Effects */
.header-logo:hover .logo-mark {
  transform: scale(1.05);
}

.header-logo:hover .logo-divider {
  width: 45px;
  transition: width 0.3s ease;
}
/* Add this for extra luxury texture */
.logo-name {
  background: linear-gradient(to right, #111, #444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-name {
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1),
               2px 2px 6px rgba(0,0,0,0.05);
}
/* Apply to elements with background images */
.lazy-bg {
  background-image: none !important;
  background-color: #f1f1f1;
}

/* When observed by IntersectionObserver */
.lazy-bg.loaded {
  background-image: url('your-image.jpg') !important;
}
/* Base smooth transitions */
button, a, .btn-action, .product-img {
  transition: 
    transform 0.2s ease,
    opacity 0.3s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

/* Hover effects */
.btn-action:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Product card interactions */
.showcase:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobile menu animation */
.mobile-navigation-menu {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image load effect */
img.lazy-loaded {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img.lazy-loaded.loaded {
  opacity: 1;
}



.checkout-btn {
  display: block;
  background: var(--salmon-pink);
  color: white;
  text-align: center;
  padding: 8px;
  margin-top: 10px;
  border-radius: var(--border-radius-small);
}




/* Product Detail Section */
.product-detail {
    padding: 40px 0;
    background-color: #fff;
}

.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
}

.main-image {
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
}

.thumbnail-container img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumbnail-container img:hover {
    border-color: #333;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.stars {
    display: flex;
    align-items: center;
    color: #ffb300;
}

.rating-count {
    font-size: 14px;
    color: #666;
    margin-left: 8px;
}

.review-link {
    font-size: 14px;
    color: #666;
    text-decoration: underline;
}

.price-box {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price {
    font-size: 28px;
    font-weight: 500;
    color: #222;
}

.old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background-color: #f44336;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.availability {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: #4caf50;
    font-weight: 500;
}

.in-stock-icon {
    font-size: 20px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}

.features-list {
    margin-top: 15px;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list ion-icon {
    color: #4caf50;
}

.product-actions {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.wishlist-btn {
    background-color: transparent;
    border: 1px solid #ddd;
    padding: 0 20px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background-color: #f9f9f9;
    border-color: #ccc;
}

.product-meta {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.meta-item {
    display: flex;
    margin-bottom: 8px;
    font-size: 14px;
}

.meta-label {
    font-weight: 500;
    color: #555;
    min-width: 80px;
}

.meta-value {
    color: #777;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.share-buttons span {
    font-weight: 500;
    color: #555;
}

.social-share {
    color: #555;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-share:hover {
    color: #222;
}




/* Product Tabs */
.product-tabs {
    margin-bottom: 60px;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-item {
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    position: relative;
    margin-bottom: -1px;
}

.tab-item.active {
    color: #222;
    border-bottom: 2px solid #222;
}

.tab-content {
    display: none;
    line-height: 1.6;
    color: #555;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.details-table {
    width: 100%;
    border-collapse: collapse;
}

.details-table th, 
.details-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.details-table th {
    font-weight: 500;
    color: #555;
    width: 30%;
}

/* Reviews Section */
.review-summary {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.average-rating {
    text-align: center;
    min-width: 120px;
}

.average {
    font-size: 36px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.total-reviews {
    font-size: 14px;
    color: #666;
}

.rating-bars {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

.stars {
    min-width: 50px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background-color: #ffb300;
}

.percentage {
    min-width: 40px;
    text-align: right;
    font-size: 14px;
    color: #666;
}

.review-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.review-form h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.rating-input {
    display: flex;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    color: #ddd;
    font-size: 24px;
    cursor: pointer;
}

.rating-input input:checked ~ label {
    color: #ffb300;
}

.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffb300;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.submit-review-btn {
    background-color: #222;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-review-btn:hover {
    background-color: #333;
}

/* Related Products */
.related-products {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #222;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    display: block;
    height: 250px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
    display: block;
}

.product-price {
    font-weight: 500;
    color: #222;
    margin-bottom: 15px;
}

.product-price del {
    font-size: 14px;
    color: #999;
    margin-left: 8px;
}

.quick-add-btn {
    width: 100%;
    background-color: #222;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quick-add-btn:hover {
    background-color: #333;
}



/* Responsive Styles */
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
    }
    
    .main-image {
        height: 350px;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
    }
    
    .add-to-cart-btn,
    .wishlist-btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-item {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.logo-image {
    height: 100px; /* Adjust as needed */
    width: auto;
}

/* Blog Section Styles */
.blog-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e63946;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.date-day {
    font-size: 1.2rem;
    font-weight: 700;
}

.date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
}

.blog-category {
    color: #e63946;
    font-weight: 600;
}

.blog-comments {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #e63946;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-nav, .page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-number:hover, .page-nav:not(.disabled):hover {
    background: #e63946;
    color: white;
}

.page-number.active {
    background: #e63946;
    color: white;
}

.page-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Newsletter Section */
.newsletter-section {
    background: #333;
    color: white;
    padding: 60px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
    color: #ddd;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0 25px;
    background: #e63946;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #d32f2f;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 4px;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
}
/* Deal of the day */
.view-offer-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff4d4d 0%, #f9cb28 100%);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(249, 203, 40, 0.4);
  animation: pulse 2s infinite;
}

.offer-text {
  font-size: 12px;
  margin-bottom: 3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.action-text {
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.pulse-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  animation: ripple 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

.view-offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 203, 40, 0.6);
  animation: none;
}



/* Banner Slider Styles */
.banner {
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slider-item {
    min-width: 100%;
    position: relative;
    transition: opacity 0.3s ease;
}

/* Hide all slides except the active one */
.slider-item:not(:first-child) {
    display: none;
}

/* Navigation dots (optional) */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.slider-dot.active {
    background: white;
}




.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.home-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: #0066cc;
    border-color: #0066cc;
}

.home-btn:hover ion-icon {
    color: #0066cc;
}

.home-btn ion-icon {
    font-size: 18px;
    transition: color 0.3s ease;
}

/* Add to your main.css */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.autocomplete-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.autocomplete-item:hover {
    background-color: #f8f8f8;
}

.autocomplete-item.highlighted {
    background-color: #f0f0f0;
}