#search_results,
* {
    padding: 0;
    margin: 0
}

.carusel-tile:hover,
.product-card:hover .product-image,
.swiper-slide img:hover {
    transform: scale(1.05)
}

.cardw,
.product,
.product-first-block {
    align-content: center
}

#search_results li .price,
.close,
.discounted-price,
.pagination .current,
.product-content p,
.product-title,
.rond-but,
.tab.active {
    font-weight: 700
}

.img-rad,
.modal_gal .swiper-slide img,
.product-image,
.product-image img,
.product-item img,
.store-logo,
.swiper-slide img {
    object-fit: contain
}

.product-brand::before,
.product-price-range::before,
.product-rating p:first-child::before,
.product-rating p:last-child::before,
.product-stores::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900
}

#search_results,
.categories ul,
.sub-subcategories ul,
.subcategories ul,
.user-menu ul {
    list-style: none
}

#filters,
* {
    transition: .3s
}

* {
    box-sizing: border-box
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    padding: 25px;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 7px 15px rgb(0 201 255 / 30%);
    margin-bottom: 30px
}

.menu-toggle {
    font-size: 24px;
    background: 0 0;
    border: none;
    cursor: pointer
}

.carusel-tile-container::-webkit-scrollbar {
    display: none
}

.carusel-tile-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px;
    position: relative;
    white-space: nowrap;
    height: 300px;
    top: -35px;
    overflow-y: hidden
}

.search-modal,
.side-menu {
    position: fixed;
    top: 0;
    height: 100%
}

.carusel-tile {
    min-width: 200px;
    height: 300px;
    margin-right: 15px;
    color: #2196f3;
    text-align: center;
    line-height: 5px;
    padding: 20px;
    cursor: pointer;
    background: linear-gradient(45deg, #fff 0 50%, #b2efff 50% 100%);
    border-radius: 25px;
    transition: transform .4s ease-in-out, background .3s ease-in-out
}



.back,
.back-sub,
.rond-but {
    color: #fff;
    text-align: center;
    cursor: pointer
}

.carusel-tile:hover {
    background: linear-gradient(225deg, #b2efff 0 10%, #fff 10% 100%)
}

.carusel-tile:active {
    transform: scale(.95);
    background: linear-gradient(45deg, #fff 0 50%, #b2efff 50% 100%)
}

.side-menu {
    left: -100%;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    transition: left .3s;
    z-index: 1000
}

.menu-content {
    width: 40%;
    height: 100%;
    background: #fff;
    overflow: auto
}

.categories li,
.sub-subcategories li,
.subcategories li {
    padding: 15px;
    cursor: pointer
}

.back,
.back-sub {
    background: #008cff;
    padding: 12px 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, #00a8ff, #00a8ff70);
    border: none;
    font-size: 1em;
    transition: background-color .3s;
    width: 100%;
    margin-top: 10px
}

.sub-subcategories,
.subcategories,
input[type=file] {
    display: none
}

.search-modal {
    display: none;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 999;
    justify-content: center;
    align-items: center
}

.search-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    text-align: center;
    top: 20px;
    position: absolute
}

#search_input {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px
}

#search_results li {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f1f1f1;
    margin-bottom: 5px;
    border-radius: 5px;
    animation: .3s ease-in-out slide-in
}

#search_results img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px
}

#search_results li .title {
    flex-grow: 1
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.rond-but {
    background-color: #6fe1ff;
    border: none;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
    position: relative;
    margin: 5px;
    transition: .3s ease-in-out;
    font-size: 16px;
    outline: 0
}

.product-gallery,
.swiper-container {
    max-width: 600px;
    overflow: hidden;
    margin: auto
}

.rond-but:hover {
    background-color: #48c8eb;
    box-shadow: 0 6px 10px rgba(0, 0, 0, .4);
    transform: scale(1.1)
}

.rond-but:active {
    background-color: #34aacd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .5) inset;
    transform: scale(.9)
}

.rond-but:focus {
    outline: 0;
    box-shadow: 0 0 10px rgba(111, 225, 255, .8);
    color: #000;
    background-color: #34aacd
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(111, 225, 255, .8)
    }

    50% {
        box-shadow: 0 0 20px rgba(111, 225, 255, .5)
    }
}

.rond-but:focus:not(:active) {
    animation: 1.5s infinite pulse
}

.rond-but.active-favorite {
    background-color: #ff6f6f !important;
    color: #fff
}

.rond-but.active-compare {
    background-color: #6fff6f !important;
    color: #fff
}

.product {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start
}

.product-page {
    display: flex;
    gap: 30px;
    height: 380px
}

.product-gallery {
    flex: 1;
    box-shadow: 0 7px 15px rgba(0, 201, 255, .3);
    position: relative
}

.modal,
.modal_gal {
    position: fixed;
    z-index: 1000
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 380
}

.swiper-slide img {
    max-height: 340px;
    width: 100%;
    height: auto;
    transition: transform .3s;
    max-width: 100%;
    border-radius: 8px;
    cursor: pointer
}

.ERQ {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between
}

.product-actions {
    display: flex;
    gap: 10px;
    top: 0
}

.comparison-button,
.favorites-button {
    background-color: rgba(0, 201, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center
}

.modal_gal {
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .8);
    justify-content: center;
    align-items: center
}

.product-details,
.product-gallery {
    background-color: #fff;
    padding: 10px;
   }

.swiper-container {
    width: 100%
}

.swiper-wrapper {
    display: flex;
    align-items: center
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto
}

.menu-toggle {
    color: #000
}

.product-gallery {
    flex: 1;
    border-radius: 0 40px 40px 0;
    height: 380px
}

.checkbox-group,
.product-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform .3s ease-in-out
}

.product-image img:hover {
    transform: scale(1.1)
}

.product-details {
    flex: 2;
    border-radius: 40px 0 0 40px
}

.product-brand,
.product-price-range,
.product-rating p,
.product-stores {
    font-size: 16px;
    margin-bottom: 10px
}

.report-error-button,
.subscribe-button {
    padding: 10px 20px;
    margin: 10px 0;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .3s
}

.auth-button:hover,
.close-button:hover,
.logout-button:hover,
.report-error-button:hover,
.subscribe-button:hover {
    background-color: #0056b3
}

.comparison-button,
.favorites-button {
    padding: 10px;
    border: none;
    background-color: rgb(0 201 255 / 30%);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px
}

.modal,
.product-block {
    background-color: #fff
}

.comparison-button:hover,
.favorites-button:hover {
    background-color: #2100ff
}

.comparison-button[aria-pressed=true],
.favorites-button[aria-pressed=true],
.navbar button:hover,
.rating-mini span.active {
    background-color: #007bff
}

.modal {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    display: none;
    opacity: 0;
    transition: opacity .5s ease-in-out
}

.modal.show {
    display: block;
    opacity: 1;
    animation: 3s forwards fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        display: none
    }
}

.product-gallery {
    width: 100%
}

.product-actions {
    z-index: 3;
    width: fit-content;
    position: absolute;
    padding: 10px;
    right: 0;
    left: auto
}

.modal_gal .swiper-container {
    width: 80%;
    max-width: 90vw;
    height: auto
}

.modal_gal .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center
}

.modal_gal .swiper-slide img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001
}

.close:hover {
    color: #bbb
}

.product-first-block {
    width: 10%;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1px;
    min-width: 90px
}

.product-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px;
    gap: 10px;
    width: 99%;
    flex-direction: column;
    align-items: stretch
}

.product-block {
    border-radius: 20px;
    padding: 15px;
    display: flex;
    gap: 15px;
    width: 99%;
    box-shadow: 0 7px 15px rgb(0 201 255 / 30%);
    margin: 2px;
    justify-content: space-between
}

.store-logo {
    width: -webkit-fill-available;
    flex-shrink: 0
}

.product-info,
.rating-options {
    display: flex;
    flex-direction: column
}

.product-title {
    font-family: Roboto, Arial, sans-serif
}

#filters,
.styled-table {
    font-family: Arial, sans-serif
}

.shipping-cost,
.store-name {
    font-size: 12px;
    color: #555;
    margin-bottom: 2px
}

.price-info {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: column
}

.discounted-price {
    font-size: 18px;
    color: #e74c3c
}

.original-price {
    font-size: 14px;
    text-decoration: line-through;
    color: #888
}

.shop-button {
    background-color: #3498db;
    align-self: flex-start;
    text-align: center;
    min-width: 90px
}

.shop-button:hover {
    background-color: #2980b9
}

.navbar {
    background: linear-gradient(180deg, #ffffff00 0 30%, #fff 30% 100%);
    z-index: 99;
    bottom: 20px;
    width: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 40px;
    box-shadow: 0 47px 20px 5px rgb(0 201 255 / 30%));
    right: 5%;
    border-bottom: .1px solid #9d9d9d
}

.navbar button {
    background-color: rgb(111 225 255);
    border: none;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    cursor: pointer;
    position: relative
}

.navbar button:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: .8em;
    white-space: nowrap
}

.navbar button i {
    font-size: 1em
}

.img-rad {
    padding: 5px;
    max-width: 160px;
    max-height: 160px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid #e7f8ff;
    background: #fff
}

.info_carusel {
    overflow: hidden;
    max-width: 190px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(45deg, #b2efff 0 50%, #b2efff00 50% 100%);
    font-size: 19px;
    color: #000;
    padding: 15px;
    border-radius: 0 0 0 25px
}

.info_carusel:hover{
	    background: linear-gradient(45deg, #b2efff 0 20%, #b2efff00 20% 100%);
	
}



.footer,
.tab {
    color: #555;
    font-size: 14px
}

.custom-side-menu {
    border-left: 1px solid #ddd;
    box-shadow: -2px 0 5px rgba(0, 0, 0, .2)
}

.custom-side-menu.active {
    padding: 15px;
    right: 0
}

.menu-content {
    padding: 15px
}

.user-menu ul {
    padding: 0;
    margin: 0
}

.user-menu ul li {
    margin: 15px 0
}

.user-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    display: block;
    border-radius: 5px;
    transition: background-color .3s
}

.user-menu ul li a:hover {
    background-color: #f0f0f0
}

.footer {
    margin-top: 15px
}

.rating-mini {
    display: flex;
    align-items: center;
    gap: 2px
}

.rating-mini span {
    width: 16px;
    height: 16px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    background-color: #ccc;
    transition: background-color .3s
}

.tab-container {
    width: 98%;
    margin: 15px auto;
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff
}

.tabs {
    display: flex;
    justify-content: space-around;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd
}

.tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    border: none;
    background: 0 0;
    cursor: pointer;
    transition: background-color .3s, color .3s
}

.tab.active {
    border-bottom: 3px solid #007bff;
    background-color: #007bff;
    color: #fff
}

.tab-content {
    display: none;
    padding: 15px;
    font-size: 14px;
    color: #333;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0)
}

.boxxx_filter {
    display: flex;
    flex-direction: column;
    box-shadow: 0 7px 15px rgb(0 201 255 / 30%);
    padding: 20px;
    border-radius: 20px;
    margin-left: 20px
}

#filters,
.filters,
.product-item {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #b2efff;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 123, 255, .6);
    border-radius: 19px
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 123, 255, .9)
}

.fabaut {
    border-top: solid;
    padding: 5px;
    border-radius: 20px;
    color: #212529
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 18px;
    text-align: left
}

.styled-table thead tr {
    background-color: #009879;
    color: #fff;
    text-align: left;
    font-weight: 700
}

.styled-table td,
.styled-table th {
    border: 1px solid #ddd;
    padding: 12px 15px
}

.styled-table .blue-row {
    background-color: #e2f9ff
}

.styled-table .white-row {
    background-color: #fff
}

.styled-table tbody tr:hover {
    background-color: #f1f1f1
}

.cardw {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 4px;
    border-radius: 20px;
    margin: 1%;
    gap: 10px
}

.product-item,
footer {
    flex-direction: column;
    text-align: center
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    left: 30%;
    top: -15px
}

.tooltip-container .tooltip-text::after,
.tooltip-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    bottom: 125%;
    z-index: 1;
    transition: opacity .3s ease-in-out
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1
}

.tooltip-container .tooltip-text::after {
    content: "";
    top: 100%;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent
}

footer {
    padding: 15px;
    font-size: .9em;
    background: #1e90ff;
    color: #fff;
    height: 400px;
    border-radius: 40px 40px 0 0;
    display: flex;
    align-items: center
}

.container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: flex-start
}

.filters {
    flex: 1 1 25%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    order: 1
}

.product-item,
h4 {
    padding: 10px;
    overflow: hidden
}

.products {
    flex: 1 1 75%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 300px;
    transition: transform .3s;
    background: linear-gradient(225deg, #fff 0 65%, #b2efff 50% 100%);
    border-radius: 25px;
    color: #2196f3;
    line-height: 1.4
}

.product-item:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 20px rgba(0, 0, 0, .1)
}

.product-item img {
    width: 100%;
    max-height: 120px;
    margin-bottom: 10px;
    border-radius: 5px
}

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1 1 auto;
    text-align: center;
    padding: 10px 5px
}

.product-content h4 {
    font-size: 14px;
    margin: 5px 0;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.product-content p {
    font-size: 12px;
    color: #666;
    margin: 5px 0
}

.details-button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    width: 80%
}

.details-button:hover {
    background: #0056b3
}

.pagination .current,
.pagination a:hover {
    background: #007bff;
    color: #fff
}

.pagination {
    text-align: center;
    margin: 20px 0
}

.pagination a,
.pagination span {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ddd;
    color: #007bff
}

.badge-free-delivery i,
.badge-verified i,
.filter-group input[type=number]:not(:last-child),
.product-meta span,
.rating i,
.store-reviews i {
    margin-right: 5px
}

.pagination .current {
    pointer-events: none
}

.price {
    color: #007bff;
    font-weight: 900
}

@media (max-width:992px) {
    .products {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
    }

    .product-item {
        max-height: 350px
    }

    .product-item img {
        max-height: 140px
    }
	
}

@media (max-width:768px) {
	
	
	
	.carusel-tile {
    min-width: 150px;

    padding: 0px; 

}

    .menu-content,
    .product-gallery {
        width: 100%
    }

    .product-page {
        display: contents;
        gap: 30px;
        height: 380px
    }

    .ERQ {
        display: block;
        align-items: flex-start;
        justify-content: space-between
    }

    .product-container {
        flex-direction: column;
        align-items: center;
        width: 100%
    }

    .product-block {
        width: 100%;
        display: flex;
        max-width: none;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center
    }

    .product-first-block {
        width: 60%
    }

    * {
        font-size: 10px
    }

    .tab {
        font-size: 12px;
        padding: 8px
    }

    .user-menu ul li a {
        text-decoration: none;
        color: #333;
        font-size: 12px;
        display: block;
        border-radius: 5px;
        transition: background-color .3s
    }

    .tab-container {
        width: 100%;
        margin: 15px auto;
        border-radius: 20px;
        overflow: hidden;
        background-color: #fff
    }

    .boxxx_filter {
        margin-left: 0
    }

    .info_carusel {
        max-width: 160px
    }

    .container {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        flex-direction: column-reverse
    }

    .filters {
        flex: 1 1 100%;
        order: 1
    }

    .products {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr))
    }

    .product-item {
        max-height: 300px
    }
}

@media (max-width:480px) {
    .products {
        grid-template-columns: 1fr
    }

    .product-item {
        max-height: 350px;
        margin: 0 auto
    }

    .product-item img {
        max-height: 150px
    }

    .details-button {
        width: 100%
    }
}

h4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(225deg, #b2efff 0 40%, #b2efff00 45% 100%);
    font-size: 14px;
    color: #000;
    border-radius: 0 0 0 25px
}

.product-card {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 7px rgb(208 243 255);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    margin-bottom: 20px
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 10px rgb(111 225 255 / 39%)
}

.product-image-container {
    position: relative;
    flex: 0 0 200px;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-image {
    height: 100%;
    transition: transform .3s
}

.badge {
    position: absolute;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: .8em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px
}

.badge-free-delivery {
    top: 10px;
    right: 10px;
    background: #f39c12
}

.badge-verified {
    top: 10px;
    left: 10px;
    background: #27ae60
}

.badge-new {
    top: 40px;
    left: 10px;
    background: #e74c3c
}

.product-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.product-header,
.social-links li {
    margin-bottom: 10px
}

.product-title {
    font-size: 1.5em;
    margin: 0 0 5px;
    transition: color .3s
}

.product-title:hover {
    color: ##0c86ff
}

.product-subtitle {
    font-size: 1em;
    color: #777;
    margin: 0
}

.rating,
.store-reviews {
    font-size: .9em;
    display: flex
}

.product-details {
    margin-top: 10px
}

.store-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 8px;
    transition: background-color .3s
}

.has-link {
    background-color: #6fe1ff
}

.store-logo {
    max-height: 50px;
    height: auto;
    border-radius: 8px;
    max-width: 100px
}

.rating {
    align-items: center;
    color: #555
}

.rating i {
    color: #f1c40f
}

.store-reviews {
    align-items: center;
    color: ##0c86ff;
    text-decoration: none;
    transition: color .3s
}

.buy-button,
.shop-button {
    transition: background .3s, transform .3s
}

.store-reviews:hover {
    color: #037b03
}

.product-meta {
    font-size: .8em;
    color: #555
}

.product-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 20px;
    background: #f9f9f9;
    border-left: 1px solid #e0e0e0
}

.price-section {
    margin-bottom: 15px;
    text-align: right;
    display: flex;
    flex-direction: column-reverse
}

.current-price {
    font-size: 1.4em;
    color: #e74c3c;
    font-weight: 700
}

.old-price {
    font-size: 1em;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px
}

.buy-button,
.notification a,
.shop-button,
.social-links a {
    text-decoration: none
}

.shop-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #6fe1ff, #007bff);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700
}

.shop-button i {
    margin-right: 8px
}

.shop-button:hover {
    background: linear-gradient(45deg, #007bff, #0f89ff);
    transform: translateY(-3px);
    color: #fff
}

@media (max-width:1024px) {
    .product-card {
        flex-direction: column;
        align-items: center
    }

    .product-image-container {
        flex: 0 0 100%;
        max-width: 100%;
        height: 250px
    }

    .product-info {
        padding: 15px;
        text-align: center
    }

    .product-action {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 15px;
        border-left: none;
        border-top: 1px solid #e0e0e0
    }

    .price-section {
        text-align: center;
        margin-bottom: 0
    }

    .shop-button {
        margin-left: 20px
    }
}

.product-title {
    margin-bottom: 15px;
    color: #333;
    text-align: center;
    position: relative
}

.product-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6fe1ff, #0b85ff);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px
}

.product-details p {
    font-size: 1.1em;
    margin: 10px 0;
    color: #555;
    display: flex;
    align-items: center
}

.product-details p strong {
    color: #000;
    margin-left: 5px
}

.product-brand::before,
.product-price-range::before,
.product-rating p:first-child::before,
.product-rating p:last-child::before,
.product-stores::before {
    content: '';
    margin-right: 10px;
    font-size: 1.2em;
    color: #008bff
}

.product-brand::before {
    content: "\f5b1"
}

.product-stores::before {
    content: "\f194"
}

.product-price-range::before {
    content: "\f155"
}

.product-rating p:first-child::before {
    content: "\f005"
}

.product-rating p:last-child::before {
    content: "\f06e"
}

.product-rating {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px
}

.product-rating p {
    margin: 0;
    font-size: 1em;
    color: #666
}

.product-rating p strong {
    color: #008bff
}

.product-image {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto 20px;
    border-radius: 10px;
    max-height: 150px
}

.buy-button {
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    background: linear-gradient(90deg, #6fe1ff, #0b85ff);
    color: #fff;
    border-radius: 25px;
    font-size: 1em;
    text-align: center
}

#filters,
.menu-content_user {
    padding: 20px
}

.buy-button:hover {
    background: linear-gradient(90deg, #0b85ff, #6fe1ff);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2)
}

@media (max-width:600px) {
    .product-details {
        padding: 20px;
        grid-template-columns: 1fr
    }

    .product-title {
        font-size: 1.5em
    }

    .product-details p {
        font-size: 1em
    }

    .product-rating {
        flex-direction: column;
        align-items: center
    }

    .product-rating p {
        margin: 5px 0
    }
}

@media (min-width:768px) {
    .product-details {
        grid-template-columns: 1fr 1fr
    }

    .product-image {
        grid-column: 1/2
    }

    .buy-button,
    .product-details h1,
    .product-details p,
    .product-rating {
        grid-column: 2/3
    }
}

.custom-side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, .1);
    transition: right .3s ease-in-out;
    z-index: 1000;
    overflow-y: auto
}

.menu-content_user>p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333
}

.fabaut p,
.filter-group label {
    margin-bottom: 10px;
    font-weight: 700
}

.feedback-form .form-group,
.menu-item {
    margin-bottom: 15px
}

#filters h3,
.filter-group,
.m-b-20 {
    margin-bottom: 20px
}

.menu-item a,
.menu-item button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #555;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color .2s, color .2s;
    width: 100%;
    font-size: 1em;
    border: none;
    background: 0 0;
    cursor: pointer
}

.menu-item i,
.social-links a i {
    font-size: 1.2em;
    margin-right: 10px
}

.menu-item a:hover,
.menu-item button:hover {
    background-color: #f0f0f0;
    color: #000
}

.menu-item i {
    color: #007bff;
    transition: color .2s
}

.menu-item a:hover i,
.menu-item button:hover i {
    color: #0056b3
}

.auth-button,
.close-button,
.logout-button {
    background: linear-gradient(45deg, #00a8ff, #00a8ff70);
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color .3s;
    width: 100%;
    text-align: center;
    margin-top: 10px
}

.social-links a,
.social-links a i,
.star {
    transition: color .2s
}

.close-button,
.fabaut {
    margin-top: 30px
}

.close-button {
    background-color: #dc3545
}

.close-button:hover {
    background-color: #c82333
}

.fabaut p {
    color: #333;
    font-size: 1.1em
}

.social-links ul {
    list-style: none;
    display: flex;
    flex-direction: column
}

.social-links a {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 1em
}

.filter-group input[type=number],
.filter-group select {
    transition: border-color .3s;
    background-color: #fff;
    padding: 10px
}

.social-links a i {
    color: #555
}

.checkbox-group label:hover,
.social-links a:hover,
.social-links a:hover i {
    color: #007bff
}

@media (max-width:768px) {
    .product-card {
        flex-direction: column
    }

    .tab-content {
        padding: 0
    }

    .product-image-container {
        height: 200px
    }

    .product-action {
        width: 100%;
        align-items: center
    }

    .shop-button {
        width: 100%;
        justify-content: center
    }
}

#filters {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    color: #333;
    max-width: 400px;
    margin: 0 auto
}

#filters:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2)
}

#filters h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    text-align: center
}

.filter-group label {
    font-size: 1rem;
    display: block;
    color: #555
}

.filter-group select {
    width: 100%;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px
}

.filter-group input[type=number]:focus,
.filter-group input[type=number]:hover,
.filter-group select:focus,
.filter-group select:hover {
    border-color: #007bff;
    outline: 0
}

.filter-group input[type=number] {
    width: calc(50% - 10px);
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px
}

#storeFilters input[type=checkbox],
.checkbox-group input[type=checkbox] {
    width: 16px;
    height: 16px;
    accent-color: #007bff;
    cursor: pointer
}

.filter-group input[type=number]:last-child,
.star:last-child {
    margin-right: 0
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .3s
}

.checkbox-group input[type=checkbox]:hover+label {
    color: #555
}

.filter-group input[type=checkbox]:focus {
    outline: #007bff solid 2px;
    outline-offset: 2px
}

#filters input[type=checkbox]:checked+label {
    font-weight: 700;
    color: #007bff
}

#storeFilters label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    cursor: pointer
}

#filters:hover .filter-group {
    transform: scale(1.02)
}

.feedback-container {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    width: 90%;
    max-width: 600px;
    margin: 20px auto
}

.feedback-container h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #333
}

.product-description p {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px
}

.feedback-form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 700;
    font-size: 14px
}

.stars {
    display: flex;
    flex-direction: row
}

.star {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    margin-right: 5px
}

.star.hover,
.star.selected {
    color: #009cff
}

.rating-text {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
    text-align: center
}

.rating-options label {
    margin-bottom: 5px;
    font-size: 14px;
    cursor: pointer
}

.checkbox-group input,
.rating-options input {
    margin-right: 10px
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: none;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    min-height: 80px
}

textarea:focus {
    border-color: #009cff;
    outline: 0
}

.form-group label[for=media-upload] {
    display: inline-block;
    padding: 10px 15px;
    background: linear-gradient(45deg, #6fe1ff, #4587ff);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color .3s
}

.form-group label[for=media-upload]:hover {
    background-color: #d4881f
}

#file-name {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #777
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer
}

.notification p {
    font-size: 12px;
    color: #777
}

.notification a {
    color: #009cff
}

.notification a:hover {
    text-decoration: underline
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #6fe1ff, #47aaff);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color .4s;
    opacity: .6;
    pointer-events: none
}

.submit-btn.enabled {
    opacity: 1;
    pointer-events: auto
}

.submit-btn:hover.enabled {
    background: linear-gradient(45deg, #73c5ff, #0076fe)
}

@media (max-width:600px) {
    .feedback-container {
        padding: 15px 20px
    }

    .star {
        font-size: 20px
    }

    .submit-btn {
        padding: 10px;
        font-size: 14px
    }
}

.quote {
    position: relative
}

.quote blockquote {
    padding: 0;
    border: 0;
    margin: 0;
    font-size: 14px;
    font-style: italic;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px
}

.quote blockquote p {
    color: #fff;
    padding: 20px 30px 20px 125px
}

.quote blockquote:before {
    content: "";
    position: absolute;
    top: 84%;
    left: 95px;
    width: 0;
    height: 0;
    border-top: 1.1133em solid #ccc;
    border-right: 2.86667em solid transparent
}

.quote.green blockquote {
    background-color: #32c5d2
}

.quote.green blockquote:before {
    border-top-color: #32c5d2
}

.quote.dark blockquote {
    background-color: #004fff
}

.quote.dark blockquote:before {
    border-top-color: #004fff
}

.quote-footer {
    background: #f0f8ff;
    border-radius: 20px;
    padding: 10px;
    margin-top: -15px
}

.quote-footer .quote-author-img img {
    float: left;
    max-width: 90px;
    width: 90px;
    height: 90px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    margin-left: -5px;
    margin-top: -60px;
    position: relative;
    z-index: 1;
    padding: 5px;
    background-color: #fff
}

.quote-footer h4 {
    font-size: 14px;
    margin-bottom: 4px
}

.quote-footer p {
    font-weight: 400;
    font-style: italic;
    font-size: 14px
}

.contener_my {
    display: flex;
    gap: 20px
}

@media (max-width:768px) {
    .contener_my {
        flex-direction: column-reverse;
    }

}


.bootom_pag{
	    background: linear-gradient(45deg, #6fe1ff, #007bff);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    border: 0;
}

@media (max-width: 1024px) {
    .product-card {
        display: block;
    }
}