* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif !important;
}

:root {
    --theme-color: #FB9102;
    --white-color: #fff;
}

.yellow-btn {
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 30px;
    text-decoration: none;
    text-transform: uppercase;
}

/* header css start */
.header {
    position: absolute;
    z-index: 11;
    width: 100%;
}

.header .container-fluid {
    padding: 0px 70px;
}

.header .nav-item .nav-link {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
}

.header .navbar-nav {
    gap: 30px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.basket-box button {
    background-color: transparent;
    border: 2px solid var(--theme-color);
    padding: 10px;
    border-radius: 5px;
}

.basket-box i {
    color: #fff;
    font-size: 20px;
}

.basket-box span {
    color: #fff;
}

/* header css end */

/* home banner css start */
.home-banner {
    background-image: url("../images/home-banner-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding-top: 200px;
}

.home-banner-posts {
    display: flex;
    align-items: flex-end;
    gap: 100px;
}

.home-banner-posts-box {
    text-align: center;
}

.home-banner .home-banner-container {
    padding: 0px 70px;
}

.home-banner-posts-box-center {
    margin-bottom: 90px;
}

.home-banner-posts-box p {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white-color);
    text-align: justify;
    margin-bottom: 70px;
}

.home-banner-text h1 {
    font-family: Inter;
    font-weight: 500;
    font-size: 150px;
    letter-spacing: -7px;
    text-transform: uppercase;
    line-height: 220px;
    color: var(--white-color);
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}

.home-banner-text {
    margin-bottom: -245px;
    position: relative;
    z-index: 1;
}

.home-banner-marquee {
    overflow: hidden;
    white-space: nowrap;
    margin: 90px 0px 50px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 10s linear infinite;
}

.marquee-content span {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--theme-color);
    font-size: 120px;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* home banner css end */

/* our portfolio sec start */
.our-portfolio {
    padding: 100px 0px 100px 70px;
    position: relative;
}

.our-portfolio-content {
    border: 1px solid #DED6CF;
    border-left: unset;
    padding: 70px;
    height: 100%;
}

.our-portfolio-content h4 {
    font-weight: 500;
    font-size: 12.8px;
    line-height: 18px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.our-portfolio-content h2 {
    font-weight: 500;
    font-size: 50px;
    line-height: 57px;
    text-transform: uppercase;
    color: #1E1E1E;
}

.our-portfolio-content p {
    font-weight: 400;
    font-size: 17px;
    line-height: 28.56px;
    color: #797C7F;
    width: 392px;
    margin-top: 30px;
}

.our-portfolio-slider {
    border: 1px solid #DED6CF;
    border-left: unset;
    padding: 70px 0px 70px 50px;
}

.our-portfolio-slide img {
    height: 500px;
    object-fit: cover;
}

.our-portfolio .owl-nav {
    position: absolute;
    left: -47rem;
    bottom: 0;
}

.our-portfolio .owl-nav .owl-prev span {
    display: none;
}

.our-portfolio .owl-nav .owl-next {
    position: relative;
    z-index: -1;
}

.our-portfolio .owl-nav .owl-next::before {
    content: "\f061";
    font-weight: 900;
    position: absolute;
    z-index: 1;
    font-family: "Font Awesome 5 Free";
    font-size: 24px;
    left: 0;
    color: #1E1E1E !important;
}

.our-portfolio .owl-nav .owl-next span {
    display: none;
}

/* our portfolio sec end */

/* daily sec start */
.daily-sec {
    background-image: url("../images/daily-sec-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.daily-content h2 {
    font-weight: 500;
    font-size: 100px;
    line-height: 120.96px;
    letter-spacing: -2.3px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 0;
}

.daily-sec-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.daily-sec-btn a {
    text-align: center;
}

.daily-sec-left {
    margin-top: 50px;
}

.daily-sec-left h4 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.daily-sec-left h2 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 50px;
    line-height: 57px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.daily-sec-image {
    margin-top: 75px;
    text-align: end;
}

.daily-sec-right {
    margin-top: 50px;
}

.daily-sec-image-right {
    margin-bottom: 100px;
}

.daily-sec-right p {
    color: var(--white-color);
    width: 490px;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 28.56px;
}

/* daily sec end */

/* cta sec end */
.cta-sec {
    background-image: url("../images/cta-sec.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20rem 0px;
    position: relative;
    overflow: hidden;
}

.cta-marquee-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    z-index: 2;
    /* transform: translateY(-50%) rotate(-8deg) scaleX(1.15); */
}

.cta-marquee-strip.cta-strip-red {
    transform: translateY(-50%) rotate(-8deg) scaleX(1.15);
    z-index: 11;
}

.cta-marquee-strip {
    width: 100%;
    overflow: hidden;
    height: 52px;
    display: flex;
    align-items: center;
}

.cta-strip-red {
    background-color: #a82b07;
}

.cta-strip-dark {
    background-color: #000;
}

.cta-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.cta-strip-red .cta-track {
    animation: ctaScrollLeft 14s linear infinite;
}

.cta-strip-dark .cta-track {
    animation: ctaScrollRight 14s linear infinite;
}

@keyframes ctaScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes ctaScrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.cta-marquee-item {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0 30px;
    line-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.cta-marquee-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e8a818;
    flex-shrink: 0;
}

.cta-marquee-strip.cta-strip-dark {
    transform: translateY(-50%) rotate(8deg) scaleX(1.15);
}

/* cta sec end */

/* blog sec start */
.blog-sec {
    background-image: url("../images/daily-sec-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.blog-left-content-head img {
    width: 100%;
}

.blog-left-content-image {
    margin: 100px 0px 40px;
}

.blog-left-content-head h4 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.blog-left-content-head h2 {
    color: var(--theme-color);
    font-weight: 500;
    font-size: 50.8px;
    line-height: 57px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

.blog-anchor h5 {
    color: var(--white-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.blog-anchor a {
    color: var(--white-color);
    font-weight: 500;
    font-size: 31.2px;
    line-height: 40.25px;
    text-transform: uppercase;
    text-decoration: none;
}

.blog-right-content-head p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 17px;
    line-height: 28.56px;
    margin-bottom: 30px;
}

.blog-right-content-image {
    margin: 230px 0px 40px;
}

/* blog sec end */

/* review sec start */
.review-sec {
    padding: 100px 0px;
}

.review-content {
    margin-bottom: 60px;
}

.review-content h2 {
    color: #000;
    font-weight: 500;
    font-size: 70px;
    text-align: center;
}

.review-box {
    padding: 54px 50px;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 20px;
    height: 450px;
}

.review-box h4 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
}

.review-box p {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #999999;
}

.review-client {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-client-content h6 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 22px;
    line-height: 26.4px;
    margin: 0;
}

.review-client-content p {
    color: #999999;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
}

/* review sec end */

/*footer css start*/
.footer {
    background-image: url("../images/footer-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-content {
    padding: 150px 0px 50px;
}

.footer-content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    list-style-type: none;
    padding: 0;
    margin-bottom: 70px;
}

.footer-content ul li a {
    text-decoration: none;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
}

.footer-content h3 {
    color: var(--white-color);
    font-weight: 500;
    font-size: 41.1px;
    line-height: 47.99px;
    text-align: center;
    text-transform: uppercase;
}

.footer-copyright {
    padding: 30px 0px;
    border-top: 1px solid #FFFFFF;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright p {
    color: var(--white-color);
    text-align: center;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/*footer css end*/

@keyframes scale {
    100% {
        transform: scale(1);
    }
}

span {
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
}

span:nth-child(1) {
    animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(2) {
    animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(3) {
    animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(4) {
    animation: fade-in 0.8s 0.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(5) {
    animation: fade-in 0.8s 0.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(6) {
    animation: fade-in 0.8s 0.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(7) {
    animation: fade-in 0.8s 0.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(8) {
    animation: fade-in 0.8s 0.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(9) {
    animation: fade-in 0.8s 0.9s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(10) {
    animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(11) {
    animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(12) {
    animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(13) {
    animation: fade-in 0.8s 1.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(14) {
    animation: fade-in 0.8s 1.4s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(15) {
    animation: fade-in 0.8s 1.5s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(16) {
    animation: fade-in 0.8s 1.6s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(17) {
    animation: fade-in 0.8s 1.7s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

span:nth-child(18) {
    animation: fade-in 0.8s 1.8s forwards cubic-bezier(0.11, 0, 0.5, 0);
}

@keyframes fade-in {
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

/* contact sec start */
.contact-sec {
    background-image: url("../images/daily-sec-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.contact-heading {
    margin-bottom: 50px;
}

.contact-heading h2 {
    font-weight: 500;
    font-size: 70px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white-color);
}

.contact-form form input {
    width: 100%;
    height: 50px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 10px;
    color: #fff;
    margin-bottom: 15px;
    outline: none;
}

.contact-form form input::placeholder {
    color: #fff;
}

.contact-form form textarea {
    width: 100%;
    height: 100px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 10px;
    color: #fff;
    outline: none;
    resize: none;
}

.contact-form form textarea::placeholder {
    color: #fff;
}

.form-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.form-btn button {
    background-color: var(--theme-color);
    color: var(--white-color);
    border: none;
    padding: 14px 50px;
    font-size: 16px;
    font-weight: 500;
}

/* contact sec end */

/* book sec start */
.books-sec {
    padding: 80px 0px;
}

.book-content {
    text-align: center;
    margin-bottom: 50px;
}

.book-content h2 {
    font-weight: 500;
    font-size: 50px;
    line-height: 57px;
    text-transform: uppercase;
    color: rgb(30, 30, 30);
}

.book-box img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.book-details {
    margin-top: 20px;
}

.book-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.book-details p {
    color: #000;
    font-size: 14px;
}

.book-details button {
    background-color: var(--theme-color);
    color: #fff;
    border: none;
    outline: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
}

.book-details-price {
    margin-bottom: 15px;
}

.book-details-price span {
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 600;
}

.book-format-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.book-format-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: fit-content;
}

.book-format-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--theme-color);
    cursor: pointer;
}

/* book sec end */

/* artwork sec start */
.artwork-sec {
    padding: 80px 0px;
}

.art__overlay a {
    text-decoration: none;
    color: #fff;
}

.artwork-content h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 57px;
    text-transform: uppercase;
    color: #1E1E1E;
    margin-bottom: 0;
    text-align: center;
}

.art__box {
    width: 100%;
    height: 678px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.art__box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.art__box:hover img {
    transform: scale(1.05);
}

.art__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px;
}

.art__box:hover .art__overlay {
    opacity: 1;
    visibility: visible;
}

.art__title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.art__meta {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 3px 0;
    font-weight: 400;
}

.artwork-content {
    margin-bottom: 50px;
}

.artwork-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.art__overlay__link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.artwork-content ul {
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.artwork-content ul li button {
    background-color: var(--theme-color);
    color: var(--white-color) !important;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
}

.artwork-content ul li button.active {
    background-color: #952506 !important;
    color: var(--white-color) !important;
}

/* artwork sec end */

.footer-content h3 a {
    color: var(--white-color);
    text-decoration: none;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(22, 32, 26, .45);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 1050;
}

.cart-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 420px;
    max-width: 92vw;
    background: #650705;
    color: #fff;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.22, .61, .36, 1);
    box-shadow: -12px 0 40px rgba(22, 32, 26, .25);
}

.cart-sidebar.is-active {
    transform: translateX(0);
}

.cart-sidebar__header {
    padding: 22px 24px 16px;
    background: var(--theme-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.cart-sidebar__header-text h3 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: .01em;
}

.cart-sidebar__brushstroke {
    width: 64px;
    height: 8px;
    margin-top: 4px;
    display: block;
}

.cart-sidebar__header-text span {
    font-size: .75rem;
    color: var(--clr-mustard-light);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cart-sidebar__close {
    background: transparent;
    border: 1px solid var(--clr-line);
    color: var(--clr-cream);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s ease, transform .15s ease;
    flex-shrink: 0;
}

.cart-sidebar__close:hover {
    border-color: var(--clr-mustard);
}

.cart-sidebar__close:active {
    transform: scale(.92);
}

.cart-sidebar__items {
    flex: 1;
    overflow-y: auto;
    padding: 8px 24px;
}

.cart-sidebar__items::-webkit-scrollbar {
    width: 6px;
}

.cart-sidebar__items::-webkit-scrollbar-thumb {
    background: rgba(31, 46, 35, .2);
    border-radius: 3px;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(31, 46, 35, .1);
    animation: itemIn .3s ease;
}

@keyframes itemIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item__img {
    width: 76px;
    height: 92px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(31, 46, 35, .15);
}

.cart-item__body {
    flex: 1;
    min-width: 0;
}

.cart-item__top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.cart-item__title {
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 0 0 2px;
    color: var(--clr-pine);
}

.cart-item__meta {
    font-size: .75rem;
    color: #fff;
    margin: 0 0 8px;
}

.cart-item__remove {
    background: none;
    border: none;
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: color .2s ease;
}

.cart-item__remove:hover {
    color: var(--clr-rust);
}

.cart-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid rgba(31, 46, 35, .18);
    border-radius: 999px;
    overflow: hidden;
}

.qty-stepper button {
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    color: var(--clr-pine);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-stepper button:hover {
    background: rgba(200, 155, 60, .15);
}

.qty-stepper span {
    width: 24px;
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
}

.cart-item__price {
    font-weight: 600;
    color: var(--clr-pine);
    font-size: .92rem;
}

.cart-sidebar__empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 32px;
    color: #8a877d;
}

.cart-sidebar__empty i {
    font-size: 2.1rem;
    color: #fff;
    margin-bottom: 14px;
}

.cart-sidebar__empty p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 4px;
}

.cart-sidebar__empty span {
    font-size: .85rem;
    max-width: 220px;
    color: #fff;
}

.cart-sidebar__footer {
    padding: 18px 24px 24px;
    border-top: 1px solid rgba(31, 46, 35, .1);
    flex-shrink: 0;
    background: var(--clr-cream);
}

.cart-sidebar__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}

.cart-sidebar__subtotal span {
    font-size: .85rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cart-sidebar__subtotal strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--clr-pine);
}

.cart-sidebar__checkout {
    width: 100%;
    background: var(--theme-color);
    color: var(--clr-cream);
    border: none;
    border-radius: 999px;
    padding: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background .2s ease, transform .15s ease;
}

.cart-sidebar__checkout:hover {
    background: var(--theme-color);
}

.cart-sidebar__checkout:active {
    transform: scale(.98);
}

.cart-sidebar__continue {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: .85rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.cart-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #650705;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1070;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transform: translateY(-12px);
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
}

.cart-toast.is-active {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast i {
    color: #fff;
}

@media (max-width:576px) {
    .cart-sidebar {
        width: 100vw;
        max-width: 100vw;
    }
}