/* FONT IMPORT */

/* Google Font */
@import url('https://803e4a.claudeassets.com/20250514211627cs_/https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100..700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("https://dc9123.claudeassets.com/20250514211627im_/https://thecollectorsauctions.com/fonts/fontpath.ttf");
  } */

:root {
    --white: #fff;
    --black: #000;
    --primary: #E59323;
    --secondary: #333333;

    /* Font Variable */
    --font-text: "Poppins", sans-serif;
    --font-heading: "Times New Roman", Times, serif;
    --font-heading1: "Josefin Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: var(--font-text);
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: var(--font-heading1);
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader img {
    max-width: 500px;
}

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: var(--primary);
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6em 1.81em;
    border-radius: 0;
    line-height: normal;
}

.themeBtn.black {
    background: black;
}

.themeBtn:hover {
    background: black;
    color: var(--white);
}

.themeBtn.black:hover {
    background: var(--secondary);
    color: var(--white);
}

.themeBtn:hover i {
    animation: movearw 1000ms infinite linear alternate;
}

@keyframes movearw {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(5px);
    }
}

.heading {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    color: var(--black);
    line-height: 1.16;
}

.heading.line {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.heading.line::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 130px;
    height: 3px;
    background-color: var(--black);
}

.text-center .heading.line::before {
    width: 180px;
    left: 50%;
    transform: translateX(-50%);
}

.subtitle {
    display: inline-block;
    color: var(--white);
    padding: 0.375rem 0.625rem;
    background-color: #D88319;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.16;
    margin-bottom: 0.625rem;
}

.subtitle.black {
    background-color: var(--black);
}

/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    width: 100%;
    background-color: var(--white);
    transition: 0.3s ease-in-out;
}

.top-bar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.top-bar ul li {
    flex: 1;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    max-width: 420px;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 1.375rem;
}

.top-contact-item figure {
    width: 4.375rem;
    aspect-ratio: 1;
    background-color: var(--primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--white);
}

.top-contact-item div {
    display: flex;
    flex-direction: column;
}

.top-contact-item strong {
    color: var(--primary);
    font-weight: 500;
}

.top-contact-item span {
    color: var(--black);
    font-weight: 700;
    transition: 0.5s ease;
    font-size: 1rem;
}

.top-contact-item:hover span {
    color: #555;
}

.top-contact-item:hover figure i {
    animation: trin 3000ms infinite;
}

@keyframes trin {

    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

}

.navbar {
    border-top: 2px solid var(--black);
    background: linear-gradient(180deg, #F1CE2A 0%, #B76A10 100%);
    padding: 0.875rem 0;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    transition: padding 0.5s ease;
}

.navbar.fixed {
    position: fixed;
    border-bottom: 2px solid var(--black);
    border-top: 0;
    padding: 0.375rem 0;
}

.navbar-nav {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.75rem 1.375rem;
    display: inline-block;
    transition: 0.5s ease;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.dropdown.show .nav-link {
    background-color: var(--black);
}

.navbar-nav .nav-item .dropdown-toggle::after {
    border-width: 0.4em;
    vertical-align: middle;
    margin-left: 0.5rem;
}

/* !NAV HEADER CSS */


/* MAIN HERO SECTION CSS */

.main-slider {
    height: 900px;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide .bg-img {
    width: 100%;
}

@keyframes zoomslide {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1)
    }
}

.homeSlider.swiper-container .swiper-slide-active .bg-img {
    animation: zoomslide 7500ms infinite linear;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.homeSlider .slide-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-text {
    text-align: center;
}

.hero-text>* {
    transform: scale(1.2);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.hero-text h3 {
    margin: 0;
    color: var(--white);
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    border-bottom: 4px solid var(--black);
    text-align: center;
    width: fit-content;
    padding: 0.25em 0.52em;
    background: linear-gradient(rgb(227, 153, 30) 0%, rgb(215, 129, 26) 100%);
    margin: 0 auto 1rem;
    transition-delay: 0.5s;
}

.hero-text h1 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 7.0625rem;
    letter-spacing: 2px;
    text-shadow: rgba(0, 0, 0, 0.64) 6px 0px 0px;
    transition-delay: 0.5s;
}

.hero-text p {
    color: var(--white);
    line-height: 1.8;
    font-size: 1.25rem;
    max-width: 640px;
    padding: 0.75rem 1.5rem;
    margin: 0 auto 1.25rem;
    transition-delay: 0.25s;
}

.homeSlider.swiper-container .swiper-slide-active .hero-text>* {
    transform: scale(1);
    opacity: 1;
}


/* !MAIN HERO SECTION CSS */


/* ABOUT SECTION CSS */

.about-section {
    padding: 6.25rem 0;
}

.about-text {
    max-width: 510px;
    margin-bottom: 2.5rem;
}

.about-section p {
    font-size: 1rem;
    color: var(--black);
    line-height: 2.25;
    margin-bottom: 1.25rem;
}

.aboutimg {
    text-align: center;
}

.aboutimg img {
    width: 100%;
    border-radius: 5rem 0px 5rem 0px;
    max-width: 510px;
}

.about-section .obj {
    position: absolute;
    top: 52.5%;
    right: 1rem;
    max-width: 298px;
}

/* !ABOUT SECTION CSS */


.video-cta {
    padding: 9.375rem 0 7.5rem;
}

.video-cta::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 84px;
    background: url('https://196610.claudeassets.com/20250514211627im_/https://thecollectorsauctions.com/images/bg-header-bottom-2.webp') top center no-repeat;
}

/* VIDEO CTA SECTION */

.video-wrap {
    max-width: 1050px;
    margin: 0 auto;
    background-color: #00000057;
    border: 1px solid #D17908;
    padding: 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
}

.video-wrap p {
    color: var(--white);
    max-width: 950px;
    margin: 0 auto;
}

.video-wrap .videobtn {
    margin: 0 auto;
    width: 6.25rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--black);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.video-wrap .videobtn::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 1500ms ease-out infinite;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) scale(1.5);
        opacity: 0;
    }
}

.video-wrap .videobtn:focus {
    box-shadow: none;
}


/* !VIDEO CTA SECTION */


/* PRODUCT SECTION CSS */

.product-section {
    padding: 8.75rem 0;
    background-color: #FEFAF1;
}

.product-section .row {
    gap: 1.25rem 0;
}

.product-card {
    background-color: var(--white);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.product-card .bid-icon {
    position: absolute;
    top: 0;
    right: 0;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.product-card .bid-icon img {
    max-width: 24px;
}

.product-card .card-content {
    padding: 0.9375rem 1.25rem;
}

.product-card h4 {
    color: var(--secondary);
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin: 0;
}

.product-card p {
    font-size: 1rem;
    color: #f54725;
    margin: 0;
    font-weight: 600;
}

.product-card p span {
    font-weight: 400;
}

.product-card figure {
    position: relative;
    padding: 5px;
    overflow: hidden;
}

.product-card figure img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: 0.5s ease;
}

.product-card:hover figure img {
    transform: scale(0.9);
}

.product-card figure>a {
    display: block;
}

.product-card .options-list {
    position: absolute;
    top: 1rem;
    right: -3.5rem;
    background: var(--white);
    box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.1);
    transition: .3s ease;
    z-index: 2;
    transition: 0.5s ease;
}

.product-card:hover .options-list {
    right: 1rem;
}

.product-card .options-list a {
    display: inline-block;
    padding: 0.5em 0.9em;
    color: var(--secondary);
    font-size: 1.125rem;
}

.product-card .options-list a:hover {
    opacity: 0.5;
}

/* !PRODUCT SECTION CSS */


/* COLLECTION SECTION CSS */

.collection-section {
    background: linear-gradient(180deg, #E2A11F 0%, #D88319 100%);
    padding: 7.5rem 0;
}

.collection-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 84px;
    background: url('https://42331d.claudeassets.com/20250514211627im_/https://thecollectorsauctions.com/images/bg-header-bottom-1.webp') top center no-repeat;
}

.collection-card {
    display: block;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
}

.collection-card div {
    position: absolute;
    inset: 0;
    padding: 1.875rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.collection-card div span {
    font-size: 0.875rem;
    color: #ffffff99;
}

.collection-card div h4 {
    color: var(--white);
    font-size: 1.375rem;
    margin: 0;
    text-transform: uppercase;
}

.collection-card img {
    transition: 0.5s ease;
}

.collection-card:hover img {
    transform: scale(1.2);
}

.collectionslider {
    margin: 3rem 0;
}

/* !COLLECTION SECTION CSS */

/* ABOUT SECTION 2 CSS */

.about-section2 {
    padding: 7.5rem 0 6.25rem;
}

.about-section2 .aboutimg1 {
    margin-left: -22rem;
    margin-right: -3rem;
}

.about-text1 {
    max-width: 526px;
    margin-left: auto;
    margin-top: 1.5rem;
}

.about-section2 p {
    font-size: 1rem;
    color: var(--black);
    line-height: 2.25;
    margin-bottom: 1.25rem;
}

/* !ABOUT SECTION 2 CSS */


/* TESTIMONIAL SECTION CSS */

.testimonial-section {
    background: linear-gradient(180deg, #E2A11F 0%, #D88319 100%);
    padding: 8.5rem 0;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 84px;
    background: url('https://196610.claudeassets.com/20250514211627im_/https://thecollectorsauctions.com/images/bg-header-bottom-2.webp') top center no-repeat;
}

.testimonial-section .heading {
    font-size: 3.125rem;
}

.review-card {
    text-align: center;
}

.review-card figure {
    max-width: 100px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid #8d547c;
    overflow: hidden;
    margin: 0.875rem auto;
}

.review-card .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #EABE12;
    margin-bottom: 0.625rem;
}

.review-card p {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0 2rem;
}

.review-card h5 {
    color: var(--white);
    font-size: 0.9375rem;
    margin: 1rem 0 0 0;
    font-family: var(--font-text);
    font-weight: 600;
}

.reviewSlider .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.reviewSlider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    background-color: transparent;
    border: 2px solid var(--white);
    transition: 0.5s ease;
}

.reviewSlider .swiper-pagination-bullet:hover {
    opacity: 1;
}

.reviewSlider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--white);
}

.reviewSlider .swiper-button-prev,
.reviewSlider .swiper-button-next {
    color: var(--white);
    margin: 0;
    top: 54%;
    opacity: 0;
    transition: 0.5s ease;
}


.reviewSlider .swiper-button-prev {
    left: -1.5rem;
}

.reviewSlider .swiper-button-next {
    right: -1.5rem;
}

.reviewSlider .swiper-button-prev::after,
.reviewSlider .swiper-button-next::after {
    font-size: 1.25rem;
}

.reviewSlider:hover .swiper-button-prev {
    left: 0;
    opacity: 1;
}

.reviewSlider:hover .swiper-button-next {
    right: 0;
    opacity: 1;
}

/* !TESTIMONIAL SECTION CSS */


/* BLOG SECTION CSS */

.blog-section {
    padding: 5rem 0;
    background-color: #F4F4F4;
}

.blog-cardWrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.blog-cardWrapper :is(.blog-card, font) {
    flex: 0 0 32%;
}

.blog-card figure {
    position: relative;
    background-color: var(--black);
}

.blog-card figure img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s ease;
}

.blog-card:hover figure img {
    opacity: 0.5;
}

.blog-card figure .date {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white);
    padding: 0.5rem 1rem 0.25rem;
    top: 10px;
    left: 10px;
    z-index: 2;
}

.blog-card figure .date p {
    line-height: 1;
    font-size: 1.375rem;
    color: var(--secondary);
    margin-bottom: -0.25rem;
}

.blog-card figure .date span {
    line-height: 1;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--secondary);
}

.blogSlider {
    padding: 2px;
}

.blog-card {
    background-color: var(--white);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    /* margin-bottom: 2rem; */
}

.blog-card .card-content {
    text-align: center;
    padding: 1.5rem;
}

.blog-card p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    color: #777777;
    height: 65px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-card .btn-link {
    color: #f54725;
    text-transform: uppercase;
    font-size: 0.8125rem;
    font-weight: 600;
}

.blog-card .btn-link:hover {
    text-decoration: underline !important;
}

.blog-card .share-icon {
    margin-bottom: 1rem;
}

.blog-card .share-icon a {
    color: #bbb;
}

.blog-card .share-icon a:hover {
    color: #777;
}

.blog-card h4 {
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 600;
    transition: 0.5s ease;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}

.blog-card h4:hover {
    color: #333333a6;
}

.blog-card p~ :is(h1, h2, h3, h4, h5, h6, p) {
    display: none;
}

/* !BLOG SECTION CSS */

/* FOOTER CSS */

footer {
    background-color: var(--black);
    padding: 4.375rem 0px 3.125rem 0px;
}

.footerLogo {
    display: inline-block;
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 1rem;
}

.footerLogo img {
    height: 99px;
}

.quicklist {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 1.25rem;
}

.quicklist li {
    position: relative;
}

.quicklist li+li::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 2px;
    height: 10px;
    background-color: var(--white);
}

.quicklist a {
    color: #DEA122;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    padding: 0 1.5rem;
}

.quicklist a:hover {
    color: var(--white);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
}

.social-link a {
    font-size: 1.5rem;
    width: 3rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #DEA122;
    display: grid;
    place-items: center;
    color: var(--black);
}

.social-link a:hover {
    background-color: var(--white);
}

.copyright {
    color: var(--white);
    font-size: 1.0625rem;
    font-weight: 500;
    margin: 0;
    margin-top: 1.875rem;
    text-align: center;
}

/* !FOOTER CSS */

/* INNER PAGES */

.inner-hero {
    background-color: var(--black);
    padding: 5.625rem 0;
}

.inner-hero h1 {
    color: var(--white);
    font-family: "Times New Roman", Sans-serif;
    font-size: 4.375rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-align: center;
    text-transform: uppercase;
}

/* ABOUT PAGE */

.bg-invert {
    background-color: #ECECEC;
}

.about-list {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 1rem;
}

.about-list li+li {
    margin-top: 5px;
}

.map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
    margin-bottom: 1rem;
}

.terms-section p {
    color: var(--black);
    line-height: 2.25;
    margin-bottom: 1.25rem;
}

.terms-section p strong {
    font-weight: 600;
}

.terms-section-text {
    max-width: 1060px;
    margin: 0 auto;
}

.terms-section p a {
    color: var(--black);
    text-decoration: underline !important;
}

.collection-section.black-top::before {
    background: url(https://196610.claudeassets.com/20250514211627im_/https://thecollectorsauctions.com/images/bg-header-bottom-2.webp) top center no-repeat;
    filter: brightness(0);
}

.contact-info-section {
    padding: 4.375rem 0;
}

.contact-item-card {
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 2.5rem 0.625rem;
    text-align: center;
    color: var(--black) !important;
    text-transform: uppercase;
    gap: 1.125rem;
    transition: 0.5s ease;
}

.contact-item-card i {
    font-size: 3.25rem;
}

.contact-item-card i {
    transition: 0.5s ease;
}

.contact-item-card:hover i {
    color: var(--primary);
}

.contact-item-card h4 {
    margin: 0;
    font-size: 1.375rem;
}

.contact-item-card span {
    font-weight: 300;
}

.contact-section {
    background-color: #F4F4F4;
    padding: 5rem 0;
}

.contact-section .heading {
    font-size: 2.125rem;
    font-weight: 600;
    margin-bottom: 1.875rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    line-height: normal;
    font-size: 0.9375rem;
    margin-bottom: 5px;
}

.contact-form .form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background-color: transparent;
    transition: 0.5s ease;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.contact-form input.form-control {
    height: 42px;
}


.contact-form .themeBtn {
    font-size: 0.875rem;
    font-weight: 400;
    padding: 1em 2em;
}

.topbtn:focus {
    box-shadow: none;
}

.topbtn {
    position: fixed;
    bottom: 1.25rem;
    right: -5rem;
    width: 3.125rem;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.17);
    opacity: 0;
    z-index: 99;
    transition: 0.35s ease;
}

.topbtn.show {
    right: 1.25rem;
    opacity: 1;
}


.pagination {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.pagination .page-link {
    padding: 0.5rem 1rem;
    color: var(--black);
    border: 1px solid #00000030;
    border-radius: 0.25rem;
}

.pagination .page-link:hover {
    background-color: var(--black);
    color: var(--white);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

.pagination .page-item.disabled .page-link {
    opacity: .65;
    pointer-events: none;
}

/* BEGIN: Section CSS */

.btnStyle {
    display: inline-block;
    padding: 0.75rem 1.875rem;
    background: var(--primary);
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary);
}

.btnStyle:hover,
.btnStyle:focus {
    background: #000000;
    border-color: #000000;
    color: #fff;
}


/* Begin: Title CSS */

/* Begin: 3 Steps Cart CSS */

.checkOutStyle {
    padding: 5em 0;
    overflow-x: hidden;
    /* background: #000; */
}

.checkOutStyle .title h4 {
    line-height: 1.5rem;
    font-size: 1.5rem;
    margin: 30px 0 20px;
    color: var(--black);
}

.checkOutStyle .title p {
    line-height: 1rem;
    font-size: 1rem;
    margin-bottom: 5px;
    margin: 0 0 2.5rem;
}

.checkOutStyle .title p a {
    color: var(--black);
}

.cartItemCard h4 {
    text-transform: capitalize;
    font-size: 1.125rem;
}

.formStyle {
    border-radius: 4px;
    padding: 0 0.9375rem;
}

.formStyle label {
    font-size: 0.9375rem;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--black);
}

.formStyle .form-control {
    height: 3.125rem;
    margin-bottom: 2rem;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 0.05);
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #c7c7c7;
}

.formStyle textarea.form-control {
    height: auto;
    resize: none;
}

.checkbox {
    margin-bottom: 20px;
}

.checkbox input[type='checkbox'] {
    display: none;
}

.checkbox input[type='checkbox']+label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    color: var(--black);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.checkbox input[type='checkbox']+label:last-child {
    margin-bottom: 0;
}

.checkbox input[type='checkbox']+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.6;
    -webkit-transition: all 0.12s, border-color 0.08s;
    transition: all 0.12s, border-color 0.08s;
}

.checkbox input[type='checkbox']:checked+label:before {
    width: 10px;
    top: -5px;
    left: 5px;
    border-radius: 0;
    opacity: 1;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.order-summery hr {
    border-top: 1px solid #ebebeb;
    margin: 20px 0;
}

.order-summery .applyCoupon .form-control {
    height: 3.125rem;
    width: 70%;
    margin: 0;
    border-radius: 0;
    border: 0;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 0.05);
}

.order-summery .applyCoupon .btnStyle {
    height: 3.125rem;
    width: 30%;
    border-radius: 0;
}

.order-summery strong,
.order-summery span {
    font-size: 0.935rem;
    font-weight: 600;
    color: var(--black);
}

.order-summery strong {
    color: var(--black);
}

.cartItemCard {
    border-radius: 5px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    align-items: center;
    margin-bottom: 1.25rem;
    border: 1px solid #d2d2d2;
}

.cartItemCard img {
    width: auto;
    height: 100px;
    object-fit: cover;
    object-position: top;
}

.cartItemCard .price {
    color: var(--primary);
}

.proCounter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.proCounter .minus,
.proCounter .plus {
    width: 3.125rem;
    height: 3.125rem;
    background: var(--black);
    border: 1px solid #ccc;
    color: var(--white);
    font-size: 1.5625rem;
    padding: 4px 5px 8px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.proCounter input {
    height: 3.125rem;
    width: 3.125rem;
    text-align: center;
    font-size: 1rem;
    border: 0;
    background: transparent;
    border: 1px solid #ccc;
}

.cartItemCard .delete i {
    color: red;
    font-size: 1.25rem;
}

.shipping-billing-col {
    list-style: none;
    border-top: 1px solid #ccc;
    margin-top: 1.5rem;
    padding: 0;
}

.shipping-billing-col p,
.shipping-billing-col a {
    position: relative;
    color: var(--black);
    font-size: 1rem;
    line-height: 1.625em;
}

.shipping-billing-col p {
    margin: 0px;
    padding: 20px 0 20px 40px;
    overflow: hidden;
    clear: both;
    border-bottom: 1px solid #ccc;
}

.shipping-billing-col p i {
    position: absolute;
    top: 17px;
    left: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--primary);
    border-radius: 100%;
    font-size: 0.75rem;
    transition: all 0.3s ease-in-out;
}

.shipping-billing-col .edit {
    color: var(--black);
    text-transform: capitalize;
    font-size: 1rem;
    padding: 0;
    float: right;
    font-weight: 500;
}

.checkOutStyle h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}


/* END: 3 Steps Cart CSS */

/*PRoduct Details*/
.Proreview h2 {
    text-align: left;
    margin: 1rem 0 0;
    font-size: 3rem;
    font-weight: 500;
}

.Proreview ul {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    color: #F7C00C;
    margin-bottom: 1rem;
}

.Proreview ul li span {
    color: #000;
    font-weight: 600;
    padding-right: 1rem;
}

.Proreview p {
    font-size: 1.75rem;
    color: #000;
}

ul.stckst li {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.rating-box {
    display: flex;
    align-items: center;
}

.rating-box .rating-container {
    direction: rtl !important;
}

.rating-box .rating-container label {
    display: inline-block;
    margin: 0;
    color: #d4d4d4;
    cursor: pointer;
    font-size: 2.2rem;
    transition: color 0.2s linear;
}

.rating-box .rating-container input {
    display: none;
}

.rating-box .rating-container label:hover,
.rating-box .rating-container label:hover~label,
.rating-box .rating-container input:checked~label {
    color: gold;
}

.rating-box span {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    padding-left: 0.5rem;
}

.prodtl-txt p {
    font-size: 1.125rem;
    color: #7e7e7e;
}

a.loclink {
    color: var(--primary);
    font-size: 18px;
    text-decoration: underline !important;
}

a.loclink i {
    margin-right: 10px;
}

.productSlider-nav figure img {
    width: 100%;
    object-fit: contain;
}

.productSliders-for figure img {
    width: 100%;
    height: 580px;
    object-fit: contain;
}


.bullet-container {
    display: flex;
    justify-content: space-between;
}

.left-list,
.right-list {
    list-style: none;
    flex-direction: column;
    display: flex;
    font-size: 16px !important;
    color: grey !important;
    align-items: unset !important;
}

.left-list li,
.right-list li {
    margin-bottom: 5px;
    /* Adjust as needed */
    padding-left: 20px;
    /* Adjust as needed */
    position: relative;
}

.left-list li::before {
    content: "\2022";
    /* Bullet point */
    color: grey;
    /* Adjust as needed */
    position: absolute;
    left: 0;
}

.right-list li::before {
    content: "\2022";
    /* Bullet point */
    color: grey;
    /* Adjust as needed */
    position: absolute;
    left: 0;
}

svg.svg-inline--fa.fa-trash-alt {
    height: 30px;
    fill: black;
}

svg.svg-inline--fa.fa-trash-alt path {
    fill: black;
}

.numForm {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.numberone {
    margin: 0;
    display: flex;
}

.numberone .minus {
    /* float: left; */
}

.numberone .minus,
.plus {
    width: 40px;
    height: 40px;
    background: #ebebeb;
    border-radius: 0;
    padding: 0px 0px;
    /* border: 1px solid #e1e1e1; */
    display: flex;
    vertical-align: middle;
    text-align: center;
    color: #7a7a7a;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.numberone button {
    cursor: pointer;
}

.numberone input {
    height: 45px;
    border-radius: 0;
    border: 0;
    width: 45px;
    text-align: center;
    color: #808080;
    outline: none;
}

.search-dropdown-container {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 8px;
}

.search-dropdown-container {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 8px;
}

.custom-select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background-color: #fff;
}

.custom-select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.searchs {
    background: linear-gradient(180deg, #F1CE2A 0%, #B76A10 100%);
    color: white;
    border: none;
    width: 40px;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/*Loader*/

#loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#loader-text {
    font-size: 24px;
    font-weight: bold;
    color: #F2F2F2;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.letter {
    display: inline-block;
    animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}


.ui-widget {
    height: 400px;
    overflow-y: scroll !important;
    overflow: hidden;
}


.ui-widget {
    overscroll-behavior: contain !important;
}

#loom-companion-mv3 {
    display: none;
}

.consign-img {
    object-fit: cover;
}

.login-form {
    background: linear-gradient(180deg, #F1CE2A 0%, #B76A10 100%) !important;
}

.login-btn {
    background-color: #000 !important;
    border: none;
}

.login-form input:focus {
    outline: none !important;
    border-color: #000 !important;
    box-shadow: none !important;
}

/*
     FILE ARCHIVED ON 03:09:25 Mar 28, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 13:03:50 Jul 14, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.472
  exclusion.robots: 0.054
  exclusion.robots.policy: 0.042
  esindex: 0.008
  cdx.remote: 13.983
  LoadShardBlock: 704.032 (3)
  PetaboxLoader3.datanode: 344.601 (5)
  PetaboxLoader3.resolve: 145.439 (2)
  load_resource: 843.612
  loaddict: 674.201
*/