@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
    --base: #FFC907;
    --body: #232323;
    --title: #000000;
    --body-bg: #ffffff;
    --section-bg: #f5f5f5;
    --white: #ffffff;
    --border: #ededed;
    --fonts: "IBM Plex Mono", monospace;
    --whatsapp: #25d366;
    --facebook: #3b5998;
    --twitter: #55acee;
    --linkedin: #007bb5;
    --pinterest: #007bb5;
    --skype: #2fb7df;
    --youtube: #cd201f;
    --google: #dd4b39;
    --camera: #e4405f;
    --instagram: #e4405f;
    --tumblr: #34465d;
    --behance: #1769ff;
    --star: #e9ba17;
    --futbol: #db3776;
    --vimeo: #1ab7ea;
    --dribble: #ea4c89;
    --shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
    --shadow2: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }
}

body {
    padding: 0;
    margin: 0;
    color: var(--body);
    line-height: 26px;
    overflow-x: hidden;
    font-family: var(--fonts);
    background: var(--body-bg);
    font-size: clamp(0.875rem, 0.8vw + 0.25rem, 1rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.3;
    color: var(--title);
    font-family: var(--fonts);
    font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--title);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--base-clr);
}

h1 {
    font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
  /* ~32px to 40px */
}

h2 {
    font-size: clamp(1.375rem, 1.5vw + 0.75rem, 2rem);
  /* ~22px to 32px */
    line-height: clamp(1.875rem, 2vw + 0.5rem, 2.5rem);
  /* ~30px to 40px */
}

h3 {
    font-size: clamp(1.125rem, 1.2vw + 0.5rem, 1.5rem);
  /* ~18px to 24px */
    line-height: clamp(1.75rem, 1.5vw + 0.25rem, 2rem);
  /* ~28px to 32px */
}

h4 {
    font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.25rem);
  /* ~15px to 20px */
    line-height: clamp(1.5rem, 1.2vw + 0.25rem, 1.75rem);
  /* ~24px to 28px */
}

h5,
h6 {
    font-size: clamp(0.875rem, 0.8vw + 0.25rem, 1rem);
  /* ~14px to 16px */
}

a {
    display: inline-block;
    transition: all ease 0.3s;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style: none;
}

label,
button,
select {
    cursor: pointer;
}

input,
textarea {
    width: 100%;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}

.font-italic {
    font-style: italic;
}

.font-underline {
    text-decoration: underline;
}

.text-xs {
    font-size: clamp(0.625rem, 0.5vw + 0.25rem, 0.875rem);
  /* ~10px to 14px */
}

.bg-gradient-1 {
    background: linear-gradient(45deg, #dfdedd 18%, #c7c6c5 82%);
}

.bg-gradient-2 {
    background: linear-gradient(45deg, #2a2b29 18%, #171615 82%);
}

.bg-gradient-3 {
    background: linear-gradient(45deg, #7b7a79 18%, #535251 82%);
}

.container {
    padding-inline: 24px;
}

/*Footer CSS*/
.footer-section {
    font-size: 14px;
    padding: 70px 0;
    border-top: 1px solid var(--border);
}

.footer-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}

.footer-wrapper .footer-menu-group {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    row-gap: 36px;
}

.footer-wrapper .footer-menu-group ul {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-wrapper .footer-menu-group ul li a {
    color: var(--title);
    text-decoration: none;
    transition: all ease 0s;
}

.footer-wrapper .footer-menu-group ul li a:hover {
    color: var(--base);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.footer-top .form-select {
    box-shadow: none;
    outline: none;
    width: auto;
    font-size: 14px;
}

.footer-top a {
    color: var(--title);
    text-decoration: none;
}

.footer-bottom .links {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 16px;
    margin-top: 24px;
    margin-bottom: 20px;
}

.footer-bottom .links a {
    color: var(--text);
    text-decoration: none;
}

.footer-bottom .links a:hover {
    color: var(--base);
}

.buy-with-prime-footer-text h6 {
    font-weight: 400;
    margin-bottom: 16px;
    font-size: 18px;
}

.buy-with-prime-footer-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.buy-with-prime-footer-text ul li {
    list-style: disc;
}

.buy-with-prime-footer-text p {
    margin-bottom: 16px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrapper .logo {
    display: block;
    padding: 18px 0;
    width: 170px;
}

.header-wrapper .logo svg,
.header-wrapper .logo img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    .header-wrapper .logo {
        width: 150px;
        padding: 18px 0;
    }
}

.header-wrapper .header-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    padding: 0;
    margin: 0;
    font-size: 22px;
    background: transparent;
    border: none;
    color: #000000;
}

.header-wrapper .header-bar svg {
    width: 36px;
    height: 36px;
    color: #000000;
}

.header-menu {
    display: none;
    background: var(--title);
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: 99;
}

.header-menu ul {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-menu ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all ease 0s;
}

.header-menu ul li a:hover {
    color: var(--base);
}

.header-menu-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 26px 0;
}

@media (max-width: 767px) {
    .header-menu-group {
        grid-template-columns: repeat(1, 1fr);
    }
}

.header-section {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 100;
}

/* Intro CSS */
.intro-video {
    width: 100vw;
    height: calc(100vh - 62px);
    object-fit: cover;
    display: flex;
}

@media (min-width: 768px) {
    .intro-video {
        height: calc(100vh - 70px);
    }
}
/* Page Header */
.page-header {
    font-size: 14px;
    padding-bottom: 10px;
    padding-top: 30px;
    position: sticky;
    top: -5px;
    z-index: 99;
    background: var(--white);
}

.page-header .subtitle {
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
    font-size: 14px;
}

.page-header .page-header-menu {
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 20px;
    padding-top: 8px;
}

.page-header .page-header-menu li a {
    color: var(--title);
    text-decoration: none;
}

.page-header .page-header-menu li a:hover {
    color: var(--base);
}

.page-header .page-header-menu .btn-txt {
    text-transform: capitalize;
}

@media (max-width: 576px) {
    .page-header {
        font-size: 12px;
    }
}

@media (min-width: 576px) {
    .page-header {
        top: 40px;
    }
}

@media (min-width: 992px) {
    .page-header {
        top: 0;
    }
}
/* Overview Section */
.overview-section {
    padding: 60px 0;
}

.overview-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

@media (min-width: 1200px) {
    .overview-wrapper {
        gap: 48px;
    }
}

.overview-wrapper .slider-area {
    width: 100%;
}

@media (min-width: 768px) {
    .overview-wrapper .slider-area {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .overview-wrapper .slider-area {
        max-width: 420px;
    }
}

@media (min-width: 1200px) {
    .overview-wrapper .slider-area {
        max-width: 460px;
    }
}

.overview-wrapper .content-area {
    flex-grow: 1;
    width: 0;
    align-self: center;
}

.overview-wrapper .content-area .content-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

@media (min-width: 1200px) {
    .overview-wrapper .content-area .content-top {
        padding-top: 16px;
    }
}

.overview-wrapper .content-area .content-top .subtitle {
    font-weight: 500;
    width: 200px;
    flex-grow: 1;
}

.overview-wrapper .content-area .content-top .buy-btn {
    display: inline-block;
    font-weight: 500;
    color: var(--title);
    text-decoration: none;
}

.overview-wrapper .content-area .content-top .buy-btn:hover {
    color: var(--base);
}

.overview-wrapper .content-area .content {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.75;
}

.overview-slide-item {
    aspect-ratio: 1;
}

.overview-slide-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.swiper-pagination {
    position: relative;
    bottom: 10px;
    text-align: center;
    z-index: 10;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media (min-width: 1200px) {
    .swiper-pagination {
        gap: 12px;
    }
}

.swiper-pagination .swiper-pagination-bullet {
    background: var(--title);
    margin: 0 !important;
}

@media (min-width: 1200px) {
    .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
}
/* Highlights */
.highlights-section {
    padding: 60px 0;
}

.highlights-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

@media (min-width: 1200px) {
    .highlights-wrapper {
        gap: 48px;
    }
}

.highlights-wrapper .slider-area {
    width: 100%;
}

@media (min-width: 768px) {
    .highlights-wrapper .slider-area {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .highlights-wrapper .slider-area {
        max-width: 420px;
    }
}

@media (min-width: 1200px) {
    .highlights-wrapper .slider-area {
        max-width: 460px;
    }
}

.highlights-wrapper .content-area {
    width: 0;
    flex-grow: 1;
    align-self: center;
}

.highlights-wrapper .content-area .subtitle {
    font-weight: 500;
}

.highlights-wrapper .content-area .content {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.75;
}

.aspect-square {
    aspect-ratio: 1;
}

.aspect-square img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.highlights-info {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.85);
    gap: 6px;
    padding-left: 24px;
}

.highlights-info li {
    list-style: disc;
}

/* Specifications */
.specifications-section {
    padding: 60px 0;
}

.specifications-wrapper {
    width: 100%;
    max-width: 850px;
}

.specifications-wrapper td {
    padding: 8px 10px;
    color: var(--white);
    vertical-align: top;
}

.specifications-wrapper td:first-child {
    text-align: right;
}

.specifications-wrapper td:nth-child(2) {
    text-align: center;
    padding-inline: 0;
}

@media (min-width: 768px) {
    .specifications-wrapper td:nth-child(2) {
        padding-inline: 20px;
    }
}

@media (max-width: 576px) {
    .specifications-wrapper td:first-child {
        width: 36% !important;
    }

    .specifications-wrapper td:last-child {
        width: 60% !important;
    }
}

.about-us,
.privacy-policy {
    padding: 60px 0;
}

.info-list {
    padding-left: 24px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-list li {
    list-style: disc;
}

.contact-us {
    padding: 60px 0;
}

.contact-form {
    max-width: 750px;
    margin: 0 auto;
}

.form-label {
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
    padding: 16px;
}

.form-control:where(input) {
    height: 48px;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.btn--primary {
    background: var(--base);
    color: var(--white);
    padding: 10px 18px;
    border: none !important;
}

.product-section {
    padding: 30px 0 60px;
}

.product-section .search-section {
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    padding: 20px;
}

@media (min-width: 768px) {
    .product-section .search-section {
        margin-bottom: 30px;
        padding: 40px;
    }
}

.product-section .search-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .product-section .search-title {
        margin-bottom: 30px;
    }
}

.product-section .search-container {
    display: flex;
    gap: 15px;
    max-width: 750px;
    margin: 0 auto 25px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .product-section .search-container {
        margin-bottom: 0;
    }
}

.product-section .search-input {
    flex: 1;
    min-width: 300px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.product-section .search-input:focus {
    border-color: var(--base);
}

.product-section .search-bt .results-section {
    padding-top: 20px;
}

.product-section .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.product-section .results-count {
    font-size: 18px;
    color: #666;
}

.product-section .sort-dropdown {
    padding: 8px 15px;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    padding-right: 34px;
}

.product-section .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.product-section .product-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
}

.product-section .product-card:hover img {
    transform: scale(1.1);
}

.product-section .product-image {
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 8px;
}

.product-section .product-image img {
    width: 100%;
    aspect-ratio: 1;
    transition: all 0.4s ease;
    object-fit: cover;
}

.product-section .product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-section .product-description {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(0, 0, 0, 0.6);
}

.product-section .product-price {
    font-size: 20px;
    font-weight: bold;
    color: #764ba2;
    margin-bottom: 8px;
}

.product-section .prime-badge {
    display: inline-block;
    background: #ff9900;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-section .no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.product-section .no-results-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .product-section .search-container {
        flex-direction: column;
    }

    .product-section .search-input {
        min-width: auto;
    }

    .product-section .results-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

.font-medium {
    font-weight: 500;
}

.highlights-subtitle {
    font-weight: 500;
    margin-bottom: 16px;
}

.store-purchase {
    padding: 45px 0;
}

.store-purchase .subtitle {
    font-weight: 400;
    font-size: 22px;
}

.buy-with-prime-section {
    padding: 45px 0;
}

.buy-with-prime-section .container {
    display: flex;
    justify-content: center;
}

.about-wrapper,
.privacy-wrapper {
    color: rgba(255, 255, 255, 0.85);
    max-width: 820px;
    line-height: 1.35;
}

.about-wrapper .info-list,
.privacy-wrapper .info-list {
    gap: 4px;
    margin-bottom: 24px;
}

.about-wrapper .subtitle,
.privacy-wrapper .subtitle {
    font-size: 22px;
    margin-bottom: 20px;
}

.about-wrapper h5,
.about-wrapper h6,
.privacy-wrapper h5,
.privacy-wrapper h6 {
    color: var(--white);
    font-weight: 400;
}

.about-wrapper h6,
.privacy-wrapper h6 {
    margin-bottom: 6px;
    margin-top: 24px;
    font-size: 16px;
}

.about-wrapper a,
.privacy-wrapper a {
    text-decoration: none;
    color: var(--white);
}

.about-wrapper a:hover,
.privacy-wrapper a:hover {
    color: var(--white);
}

.store-purchase-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 26px;
    align-items: center;
}

.store-purchase-buttons a {
    display: block;
}

.store-purchase-buttons a img {
    width: 100%;
}

.store-purchase-buttons .amazon {
    width: 160px;
}

.store-purchase-buttons .wallmart {
    width: 190px;
}

@media (min-width: 768px) {
    .store-purchase-buttons .wallmart {
        transform: translateY(-15px);
    }
}

@media (min-width: 1200px) {
    .store-purchase-buttons {
        gap: 48px;
    }
}
/*# sourceMappingURL=main.css.map */
