@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
            
    background-color: #fafbfc;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: "Montserrat", sans-serif;
}
p, span{
    font-family: "Montserrat", sans-serif;
}

.catalogue_heading{
    font-weight: bold;
    font-size: 3em;
}
.catalogue_subtext{
    font-size: 2em;
}
.catalogue_heading , .catalogue_subtext{
    color: #fff !important;
    font-family: "Montserrat", sans-serif;
}
.call_to_action_btn{
    margin-top: 20px !important;
    border-radius: 50px;
    padding: 20px;
}

.cover-image {
    width: 100%;
    height: 100vh;
   /* gives the effect a bit of room to breathe */
    position: relative;
    /* background: url(https://paulsheeran.ie/media/catalog/category/All-watches-top-banner_1.jpg) fixed 50%/cover; */
   /* This is the bottom image, blurred and grayscaled. Could also use filters to do this + another pseudoel, but is less performant. */
}
.cover-image:after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    background: inherit;
    /* background-image: url(https://paulsheeran.ie/media/catalog/category/All-watches-top-banner_1.jpg); */
    filter: blur(5px);
    mask: linear-gradient(to bottom, white 100%, transparent);
   /* Top image is masked with a gradient */
    mask-attachment: fixed;
}
.cover-text{
    position: absolute;
    z-index: 1;
    text-align: center;
    width: 100% !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.search__container {
    padding-top: 34px;
    padding-bottom: 100px;
    text-align: center;
}
/* .search__title {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    color: #ff8b88;
}
*/
.search__input {
    width: 50%;
    padding: 12px 24px;
    background-color: transparent;
    transition: transform 250ms ease-in-out;
    font-size: 14px;
    line-height: 18px;
    color: #575756;
    background-color: transparent;
   /* background-image: url(http://mihaeltomic.com/codepen/input-search/ic_search_black_24px.svg);
    */
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 95% center;
    border-radius: 50px;
    border: 1px solid #c2c2c2;
    transition: all 250ms ease-in-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    /* float: right; */
}
.search__input::placeholder {
    color: rgba(87, 87, 86, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.search__input:hover, .search__input:focus {
    padding: 12px 0;
    outline: 0;
    border: 1px solid transparent;
    border-bottom: 1px solid #575756;
    border-radius: 0;
    background-position: 100% center;
}


.item_list_pagination .page-item.active .page-link {
    background: #846e6e !important;
}

.custom-file-label{
    overflow: hidden !important;
}


.container-sold{

    position: relative;
    text-align: center;
    color: red;
    font-weight: bold;
}

.centered-sold {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.3em;
    font-weight: bolder;
  }


  .container-sold::after {
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000cf;
    opacity: .9.2;
}

.catalog_description{
    /* width: 210px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}
.container-sold > * {
    z-index: 100;
}

.catalog_price span{
    font-size: 1em;
}

.img-view:hover{
    cursor: pointer;
}

.top-left {
    position: absolute;
    top: 0px;
    left: 15px !important;
    background-color: rgb(0 0 0 / 50%) !important;
    color: #fff;
    font-weight: bold;
    padding: 4px !important;
    font-size: 1em !important;
    width: 45px !important;
    border-top-right-radius: 4% !important;
    border-bottom-right-radius: 1.1em 1.1em !important;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

.custom-file-label{
    overflow: hidden !important;
}

.floating-icon-question {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #426d9b;
    color: white;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    border-color: transparent;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    font-size: 16px;
    display: none;
}

.floating-icon-question:focus{
    border-color: transparent;
} 
.floating-icon-question i {
    margin-right: 8px; /* Space between icon and text */
}
@media screen and (max-width: 735px) {
    .search__input {
        width: 100%;
    }

    .catalog_description{
        width: 100%;
    }

    .col-items-view p{
        font-size: 0.8em;
    }

    .top-left{
        padding: 4px !important;
        font-size: 0.7em !important;
        width: 32px !important;
    }
}



.content {
    /* max-width: 300px; 
     overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; */
    position: relative;
    height: 40vh;
}

.see-more {
    display: none; /* Hidden by default */
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    border: none;
    cursor: pointer;
}

/* Show "See More" button if content exceeds the container width */
@media (max-width: 400px) {
    .content {
        /* white-space: normal; */ /* Allow content to wrap when the button is clicked */
        /* overflow: hidden; */
        /* max-height: 50px; */ /* Adjust to limit the height */
        /* display: -webkit-box; */
        /* -webkit-line-clamp: 3; */ /* Number of lines to show */
        /* -webkit-box-orient: vertical; */
        height: 40vh;
    }
    
    .content.overflowed .see-more {
        display: block; /* Show the button if there is more content */
    }
}
      
.serif-title {
    font-family: 'Cormorant Garamond', serif;
}

.tiffany-bg { background-color: #81D8D0; }
.tiffany-text { color: #0a8485; }
.tiffany-border { border-color: #81D8D0; }

.catalog-item {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog-item.hidden-item {
    opacity: 0;
    transform: scale(0.95);
    display: none !important;
}

.product-img-container img {
    width: 100%;
    height: auto; 
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    background-color: #ffffff;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog-item:hover .product-img-container img {
    transform: scale(1.05);
}

@keyframes pulse-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}
.pop-animation {
    animation: pulse-pop 0.3s ease-out;
}
