:root {
    --primary-color: #0ea5e9;
    --primary-color-darker: #0c82b9;
    --secondary-color: #dc7708;
    --secondary-color-darker: #b96306;
    --base-text-color: rgb(17 24 39);
    --hover-text-color: rgb(47, 66, 107);
    --gray-text-color: #858796;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #f7f7f7;
}

.brand-text-primary {
    color: var(--primary-color) !important;
}

.brand-text-primary-darker {
    color: var(--primary-color-darker) !important;
}

.brand-text-secondary {
    color: var(--secondary-color) !important;
}

.brand-text-secondary-darker {
    color: var(--secondary-color-darker) !important;
}

.pad-t-2 {
    padding-top: 2%;
}
.pad-b-2 {
    padding-bottom: 2%;
}

.pad-t-5 {
    padding-top: 5%;
}
.pad-b-5 {
    padding-bottom: 5%;
}

.pad-t-10 {
    padding-top: 10%;
}
.pad-b-10 {
    padding-bottom: 10%;
}

.marg-t-5 {
    margin-top: 5%;
}
.marg-b-5 {
    margin-bottom: 5%;
}

.marg-t-10 {
    margin-top: 10%;
}
.marg-b-10 {
    margin-bottom: 10%;
}

.grayish-bg {
    background-color: #f4f4f4;
}

.border-item {
    border-bottom: 1px solid var(--primary-color);
}

.alert {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, #fde68a, #bae6fd);
}
.gradient-2 {
    background-image: linear-gradient(to bottom right, #fffbeb, #fff7ed);
}

.brand-btn {
    background: linear-gradient(to right, #d97706, #0ea5e9);
    border: none;
    color: white;
}
.brand-btn:hover {
    color: white !important;
}
.brand-h3 {
    font-size: 25px;
    text-align: center;
    font-weight: 600;
}

.brand-text-primary {
    color: var(--primary-color);
}
.brand-text-secondary {
    color: var(--secondary-color);
}
.brand-text-gray {
    color: var(--gray-text-color);
}

.app-link-primary {
    color: var(--primary-color) !important;
    transition: 0.2s;
}

.app-link-primary:hover {
    color: var(--primary-color-darker) !important;
    text-decoration: none;
}

.app-link-secondary {
    color: var(--secondary-color) !important;
    transition: 0.2s;
}

.app-link-secondary:hover {
    color: var(--secondary-color-darker) !important;
    text-decoration: none;
}

#cookie-banner {
    z-index: 9999;
    font-size: 14px;
    background-color: var(--primary-color-darker);
}

.custom-hover {
    background-color: #fff; /* bg-white */
    border-radius: 1rem; /* rounded-2xl */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* shadow-lg */
    overflow: hidden; /* overflow-hidden */
    transition: all 0.3s ease; /* transition-all duration-300 */
    transform: translateY(0); /* base position */
}

.custom-hover:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); /* hover:shadow-2xl */
    transform: translateY(-8px); /* hover:-translate-y-2 */
}

a {
    text-decoration: none;
}

.title-section {
    text-align: center;
}

.title-section h1 {
    color: var(--base-text-color);
    font-weight: 700;
    font-size: 34px;
}

.title-section h4 {
    font-weight: 300;
    font-size: 18px;
    width: 60%;
    margin: auto;
    padding: 0 10px;
    margin-bottom: 10px;
}
/* Page cover */
.page-cover {
    padding-top: 65px;
}
.page-cover-1 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
        url("../img/1.jpg");
}
.page-cover-inner {
    background-size: cover !important;
    background-position: center center !important;
    /* Optional additional properties */
    background-repeat: no-repeat !important;
    /* height: 250px; */
    padding: 2% 0;
}

.page-cover .card-area {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px;
}

.page-cover .card-inner {
    border: 1px solid white;
    padding: 20px;
    text-align: center;
}

.page-cover .card-inner h1 {
    color: white;
    font-weight: 700;
    font-size: 36px;
}

.page-cover .card-inner h4 {
    color: white;
    font-weight: 300;
    font-size: 18px;
}
/* Page cover end */

/* Navbar area start */
.top-nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: #f7f7f7e8;
}

.navbar-nav {
    margin: 0 auto;
}

/* Adjust logo size */
.navbar-brand img {
    height: 40px;
}

.nav-link {
    transition: 0.2s;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}

.active .nav-link {
    color: var(--primary-color-darker) !important;
}
/* Optional: style for the login button */
.btn-login {
    /* background-color: var(--primary-color); */
    color: #fff;
    border-radius: 25px;
    padding: 6px 16px;
}

/* .btn-login:hover {
    background-color: var(--primary-color-darker);
} */
/* Center items only on large screens and above */

/* Navbar area end */
/* Slider area */
.slider-area {
    padding-top: 60px;
    position: relative;
    margin-bottom: 5%;
}

.slider-area .carousel-control-next,
.slider-area .carousel-control-prev {
    width: 5%;
    height: 15%;
    top: 40%;
    opacity: 0.1;
}
.slider-area .carousel-control-next:focus,
.slider-area .carousel-control-next:hover,
.slider-area .carousel-control-prev:focus,
.slider-area .carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.3;
}

.slider-area .carousel-item {
    background-size: cover !important;
    background-position: center center !important;
    /* Optional additional properties */
    background-repeat: no-repeat !important;
    /* width: 100%; */
    height: 400px;
    padding-top: 5%;
}

.slider-area .carousel-item .container {
    text-align: center;
}

.slider-area .carousel-item h1 {
    color: white;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.slider-area .carousel-item h1 span {
    color: var(--primary-color);
}

.slider-area .carousel-item h4 {
    color: white;
    font-weight: 300;
}
.slider-area .slide-1 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
        url("../img/3.jpg");
}
.slider-area .slide-2 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
        url("../img/2.jpg");
}
.slider-area .slide-3 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)),
        url("../img/1.jpg");
}

.slider-filter {
    position: absolute;
    width: 100%;
    bottom: -75px;
    padding: 0 10px;
}

.slider-filter .inner-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 3px 8px 8px rgba(0, 0, 0, 0.2);
}

.slider-filter .inner-container p {
    text-align: center;
    margin-bottom: 5px;
    font-weight: 400;
    color: #515151;
}

.slider-filter .btn-row {
    margin-top: 20px;
}

.slider-filter .btn-row button {
    font-weight: 400;
    /* background-color: var(--primary-color); */
    color: white;
}

/* Section 1 Start */

.section-1 {
    /* background-color: #cac5c5; */
}

.section-1 .card-area {
    padding: 10px;
}

.section-1 .card-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.7s;
}
.section-1 .card-item .button-area {
    display: flex;
    justify-content: space-around;
}

.section-1 .img-area {
    position: relative;
    /* margin-bottom: 10px; */
}

.section-1 .img-area img {
    object-fit: cover;
    height: 160px;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.section-1 .img-area .top-right,
.section-1 .img-area .top-left {
    position: absolute;
    top: 10px;
    background-color: #bfbfbfa3;
    border-radius: 20px;
    padding: 1px 10px;
    color: #222;
}

.section-1 .img-area .top-left {
    left: 10px;
}
.section-1 .img-area .top-right {
    right: 10px;
}

.section-1 .text-area {
    padding: 10px;
}

.section-1 .text-area .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.section-1 .text-area h2 a {
    color: var(--base-text-color);
    text-decoration: none !important;
    transition: 0.2s;
}
.section-1 .text-area h2 a:hover {
    color: var(--hover-text-color);
}

.section-1 .text-area h3 {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
}

.section-1 .text-area .review i {
    color: rgb(238, 238, 57);
}

.section-1 .text-area .price {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
}

.section-1 .text-area span {
    color: #b2b2b2;
    font-size: 18px;
}
.section-1 .button-area .btn {
    width: 45%;
    font-weight: 500;
    color: white;
}

.section-1 .button-area .btn-left {
    width: 45%;
    /* text-align: left; */
    background-color: var(--secondary-color);
}

.section-1 .button-area .btn-right {
    width: 45%;
    /* text-align: right; */
    float: right;
    background-color: var(--primary-color);
}
.section-1 .text-area .ammenities,
.shop-area .text-area .ammenities {
    margin-bottom: 5px;
}

.section-1 .text-area .ammenities span,
.shop-area .text-area .ammenities span {
    margin-right: 10px;
    font-size: 12px;
    padding: 2px 10px;
    background-color: var(--primary-color);
    color: white;
    margin-right: 5px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 25px;
}

.section-1 .text-area .price {
    margin-bottom: 15px;
}

.shop-area .button-area {
    display: flex;
    justify-content: space-around;
}

.pagination-links nav div:nth-child(2) div:nth-child(2) {
    display: none;
}

/* Hide the radio button */
.plan-input {
    display: none;
}

/* Default card style */
.plan-card {
    border: 2px solid #dee2e6; /* light gray border */
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover effect */
.plan-card:hover {
    border-color: #adb5bd;
    background-color: #f8f9fa;
}

/* When the input is checked, highlight its label */
.plan-input:checked + .plan-card {
    border-color: var(--primary-color); /* Bootstrap primary color */
    background-color: #e7f1ff; /* light blue tint */
}

/* Section 1 end */

/* Section 2 start */
.section-2 .container {
    /* padding: 10px; */
    /* padding: 0; */
}

.section-2 .card-item {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.section-2 .card-item .top-icon {
    margin-bottom: 15px;
}

.section-2 .card-item .top-icon i {
    border-radius: 5px;
    padding: 10px;
}

.section-2 .card-item .icon-1 i {
    background-color: rgb(217, 119, 6, 0.2);
    color: rgba(217, 119, 6, 1);
}

.section-2 .card-item .icon-2 i {
    background-color: rgb(224, 242, 254, 1);
    color: rgba(2, 132, 199, 1);
}

.section-2 .card-item .icon-3 i {
    background-color: rgb(220, 252, 231, 1);
    color: rgba(22, 163, 74, 1);
}

.section-2 .card-item .title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--base-text-color);
}

.section-2 .card-item p {
    font-size: 14px;
}

/* Section 2 end */

/* Section 3 START */
.section-3 .card-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    padding: 15px 0px;
}

.section-3 .top-title {
    color: var(--base-text-color);
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.section-3 .card-item {
    text-align: center;
    padding: 20px 10px;
}

.section-3 .card-item .top-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-3 .card-item .icon-1 {
    background-color: rgba(22, 163, 74, 1);
}

.section-3 .card-item .icon-2 {
    background-color: rgb(2, 133, 201);
}

.section-3 .card-item .icon-3 {
    background-color: rgba(22, 163, 74, 1);
}

.section-3 .card-item .icon-4 {
    background-color: rgb(147 51 234);
}

.section-3 .card-item .title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--base-text-color);
}

.section-3 .card-item p {
    font-size: 14px;
}
/* Section 3 END */
/* Section 4 Start */
.section-4 img {
    width: 100%;
}
.section-4 .title {
    font-size: 36px;
    color: var(--base-text-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-4 .desc {
    font-size: 14px;
    margin-bottom: 15px;
}

.section-4 .card-item {
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.section-4 .card-item .card-icon {
    margin-top: 10px;
    text-align: center;
}
.section-4 .card-item .card-icon i {
    padding: 10px;
    color: white;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.section-4 .card-item .card-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--base-text-color);
}

.section-4 .card-item .card-desc {
    font-size: 14px;
    margin-bottom: 0;
}
/* Section 4 END */
/* Section 5 Start */
.section-5 .icon {
    font-size: 55px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-5 p {
    margin-bottom: 10px;
}

.section-5 .card-item {
    padding: 20px;
    margin-bottom: 5px;
    border-radius: 5px;
    background-color: white;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.section-5 .desc {
    margin-bottom: 10px;
}
.section-5 .icons {
    margin-bottom: 15px;
}

.section-5 .icons {
    color: rgb(238, 238, 57);
}

.section-5 .reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.section-5 .reviewer .r-desc {
    padding-left: 5px;
}
.section-5 .reviewer h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-5 .reviewer p {
    font-size: 14px;
    font-weight: 200;
    margin-bottom: 0;
}
/* Section 5 END */
/* Section 6 Start */
.section-6 {
    /* margin-bottom: 10px; */
}

.section-6 .card-item {
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5); /* the tint color */
    background-blend-mode: multiply; /* or overlay, screen, etc. */
    height: 250px;
    position: relative;
}

/* .section-6 img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
} */

.section-6 .text-area {
    position: absolute;
    bottom: 0;
    padding: 5px 20px;
}

.section-6 h2,
.section-6 p {
    color: white;
}

.section-6 h2 {
    margin-bottom: 5px;
    font-weight: 801;
    font-size: 24px;
}

.section-6 p {
    font-size: 14px;
}

.section-6 .btn-area h4 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.section-6 .btn-area h4 a {
    color: white;
}
.section-6 .btn-area h4 .btn {
    background-color: var(--secondary-color);
}
/* Section 6 END */
/* Section 7 Start */
.section-7 {
    background-color: var(--primary-color);
}

.section-7 .top-icon {
    background-color: var(--primary-color-darker);
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 42px;
}

.section-7 .top-icon i {
    color: var(--primary-color);
}

.section-7 .text-area {
    text-align: center;
}

.section-7 h1 {
    color: white;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-7 p {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

.section-7 .form-inline {
    justify-content: center;
}

.section-7 .form-inline .btn {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
}
/* Section 7 END */
/* Section 8 Start */
/* Section 8 End */

.featured-pack .card-item {
    background-color: white;
    border-radius: 10px;
}

.featured-pack .card-item:hover {
    border: 1px solid var(--primary-color);
    transition: 0.8s;
}

.featured-pack .card-item:hover .icons {
    display: block !important;
    opacity: 1 !important;
    transition: 0.8s;
}

.featured-pack .card-item .img-area {
    position: relative;
}

.featured-pack .card-item .img-area .icons {
    position: absolute;
    bottom: 20px;
    left: 10%;
    text-align: center;
    display: none;
    opacity: 0;
    transition: 0.8s;
}

.featured-pack .card-item .img-area .icons .shop-btn {
    color: white;
    padding: 6px;
    border-radius: 5px;
    margin-right: 5px;
    background-color: var(--primary-color);
    margin-bottom: 5px;
}

.featured-pack .card-item .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-pack .text-area {
    padding: 10px;
}

.featured-pack .text-area .title {
    color: var(--base-text-color);
    font-size: 25px;
    margin-bottom: 5px;
}

.featured-pack .text-area .title a {
    color: var(--base-text-color);
}

.featured-pack .text-area .price {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-pack .text-area .tag-area {
    margin-bottom: 10px;
}

.featured-pack .text-area .item-tag {
    border-radius: 20px;
    padding: 0px 10px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 100;
}

.featured-pack .text-area .desc {
    margin-bottom: 10px;
}

.featured-pack .text-area .artist-sec img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.featured-pack .text-area .artist-sec p {
    font-weight: 100;
    margin-top: 10px;
}

/* asset cards */
.asset-cards .card-item {
    background-color: white;
    border-radius: 10px;
}
/* .asset-cards .card-item:hover {
    border: 1px solid var(--primary-color);
    transition: 0.8s;
} */

.asset-cards .card-item:hover .icons {
    /* transition: 0.8s; */
}
/* .asset-cards .card-item .img-area {
    position: relative;
} */

/* .asset-cards .card-item .img-area .icons {
    position: absolute;
    bottom: 20px;
    left: 5%;
    text-align: center;
    display: none;
    opacity: 0;
    transition: 0.8s;
} */

/* .asset-cards .card-item .img-area .featured-icon {
    position: absolute;
    top: 10px;
    right: 5%;
    text-align: center;
    color: rgb(251, 227, 18);
    font-size: 20px;
}

.asset-cards .card-item .img-area .icons .shop-btn {
    color: white;
    padding: 6px;
    border-radius: 5px;
    margin-right: 5px;
    background-color: var(--primary-color);
    margin-bottom: 5px;
} */
.shop-btn a {
    text-decoration: none !important;
    color: white;
}
.asset-cards .card-item .img-area img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.asset-cards .text-area {
    padding: 10px;
}

.asset-cards .text-area .title {
    color: var(--base-text-color);
    font-size: 20px;
    margin-bottom: 5px;
}

.asset-cards .text-area .title a {
    color: var(--base-text-color);
    text-decoration: none;
}

/* .asset-cards .text-area .price {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5 px;
} */

.asset-cards .text-area .tag-area {
    margin-bottom: 10px;
}

.asset-cards .text-area .item-tag {
    border-radius: 20px;
    padding: 0px 10px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 100;
}

.asset-cards .text-area .item-tag a {
    color: white;
    text-decoration: none;
}

.asset-cards .text-area .desc {
    margin-bottom: 10px;
}

.asset-cards .text-area .artist-sec img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.asset-cards .text-area .artist-sec p {
    font-weight: 100;
    margin-top: 10px;
}

/* Sectopm 5 */
.artist-row .artist-col {
    padding: 10px;
}
.artist-row .artist-bloc {
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    padding: 10px;
}

.artist-row .artist-bloc:hover {
    border: 1px solid var(--primary-color);
    transition: 0.8s;
}

.artist-row .artist-bloc .img-area img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px;
    display: block;
}

.artist-row .artist-bloc .text-area {
    text-align: center;
}

.artist-row .artist-bloc .text-area h3 {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 0px;
    color: var(--primary-color);
}

.artist-row .artist-bloc .text-area p {
    font-size: 16px;
    margin-bottom: 10px;
}

.artist-row .artist-bloc .text-area .item-tag {
    border-radius: 20px;
    padding: 5px 10px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 100;
}

/* Section 6 */
.blog-row .blog-bloc {
    padding: 10px;
}

.blog-row .blog-bloc .blog-card {
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

.blog-row .blog-bloc .blog-card:hover {
    border: 1px solid var(--primary-color);
    transition: 0.8s;
}

.blog-row .blog-bloc .img-area img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}
.blog-row .blog-bloc .text-area {
    padding: 10px;
}
.blog-row .blog-bloc .text-area .title {
    font-size: 22px;
    font-weight: 400;
    color: var(--base-text-color);
    margin-bottom: 0;
}

.blog-row .blog-bloc .text-area .subtitle {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Footer */
.footer-area {
    /* border-top: 1px solid var(--primary-color); */
    background-color: rgb(17, 24, 39);
}
.footer-area .footer-dash {
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 20px;
    width: 40%;
}

.footer-area .footer-logo {
    width: 40px;
    float: left;
}

.footer-area .title {
    color: white;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-area .contact-area p {
    margin-bottom: 5px;
}

.footer-area a {
    text-decoration: none;
}
.footer-area .social-icons {
    margin-top: 20px;
}
.footer-area .social-icons a {
    color: #6e7180;
    margin-right: 5px;
    font-size: 24px;
    transition: 0.2s;
}

.footer-area .social-icons a:hover {
    color: var(--primary-color);
}

.footer-area .link-section a {
    color: var(--primary-color-darker);
    transition: 0.2s;
}

.footer-area .link-section a:hover {
    color: var(--primary-color);
}

.footer-area .link-section p {
    margin-bottom: 5px;
}

.footer-area .newsleter-section p {
    margin-bottom: 5px;
}

.footer-area .newsleter-section p i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.footer-area .newsleter-section .footer-btn {
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    color: white;
    background-color: var(--primary-color);
    border-radius: 5px;
}

.footer-area .newsleter-section .footer-btn a {
    color: white;
}

.footer-bg {
    background-color: rgb(17, 24, 39);
}

.footer-border {
    /* color: #6e7180; */
    border-top: 1px solid #6e7180;
    width: 60%;
    margin: 0 auto;
}

.attribution {
    background-color: rgb(17, 24, 39);
    padding: 20px;
    margin-bottom: 0;
}

.attribution p {
    font-weight: 400;
    text-align: center;
    color: #a2a7beaf;
    font-size: 12px;
}

/* Shop area start */
.shop-area .card-area {
    margin-bottom: 20px;
}

.shop-area .card-item {
    /* background-color: white; */
    border: 1px solid #dfdfdf;
}

.shop-filter .title {
    color: var(--base-text-color);
    font-size: 24px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.shop-filter .title i {
    float: right;
}

.shop-filter .shop-input .form-group {
    margin-bottom: 15px;
}

.shop-filter .shop-input .title-2 {
    color: var(--base-text-color);
    font-size: 16px;

    /* padding-bottom: 5px; */
}

.shop-filter .shop-input .inner-line {
    border-bottom: 1px solid var(--primary-color);
    width: 80%;
    margin-bottom: 10px;
}

.shop-area .card-area {
    padding: 10px;
}

.shop-area .card-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.7s;
}

.shop-area .img-area {
    position: relative;
    /* margin-bottom: 10px; */
}

.shop-area .img-area img {
    object-fit: cover;
    height: 160px;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.shop-area .img-area .top-right,
.shop-area .img-area .top-left {
    position: absolute;
    top: 10px;
    background-color: #bfbfbfa3;
    border-radius: 20px;
    padding: 1px 10px;
    color: #222;
}

.shop-area .img-area .top-left {
    left: 10px;
}
.shop-area .img-area .top-right {
    right: 10px;
}

.shop-area .text-area {
    padding: 10px;
}

.shop-area .text-area .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.shop-area .text-area h2 a {
    color: var(--base-text-color);
    text-decoration: none !important;
    transition: 0.2s;
}
.shop-area .text-area h2 a:hover {
    color: var(--hover-text-color);
}

.shop-area .text-area h3 {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
}

.shop-area .text-area .review i {
    color: rgb(238, 238, 57);
}

.shop-area .text-area .price {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
}

.shop-area .text-area span {
    color: gray;
    font-size: 16px;
}
.shop-area .button-area .btn {
    width: 45%;
    font-weight: 500;
    color: white;
}

.shop-area .button-area .btn-left {
    width: 45%;
    /* text-align: left; */
    background-color: var(--secondary-color);
}

.shop-area .button-area .btn-right {
    width: 45%;
    /* text-align: right; */
    float: right;
    background-color: var(--primary-color);
}

.shop-area .text-area .ammenities span {
    margin-right: 10px;
}

.shop-area .text-area .price {
    margin-bottom: 15px;
}

.shop-section .shop-btn {
    background-color: var(--primary-color);
    color: white;
}

.rating {
    direction: rtl;
    display: inline-flex;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

/* Hover effect */
.rating label:hover,
.rating label:hover ~ label {
    color: #f6b93b;
}

/* When selected */
.rating input:checked ~ label {
    color: #f6b93b;
}

/* Shop area end */

.product-page .product-images {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.product-page .product-description {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}
.product-page .product-description .artist-name {
    font-style: italic;
    margin-top: 5px;
    margin-bottom: 0px;
    font-weight: 100;
}

.product-page .product-description .artist-name a {
    color: var(--base-text-color);
    text-decoration: none;
    transition: 0.2s;
}
.product-page .product-description .artist-name a:hover {
    color: var(--primary-color);
    transition: 0.2s;
}
.product-page .first-image {
    margin-bottom: 10px;
}
.product-page .sub-images {
    margin: 0;
}
.product-page .sub-image {
    padding: 0;
    cursor: pointer;
}
.product-page .first-image img,
.product-page .sub-image img {
    width: 100%;
    object-fit: cover;
}

.product-page .sub-image img {
    height: 100px;
}
.product-description .title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--primary-color-darker);
}
.product-description .price {
    font-size: 25px;
    font-weight: 700;
    color: var(--primary-color-darker);
    margin-bottom: 10px;
}

.product-description .price span {
    font-size: 18px;
    color: #b2b2b2;
}

.product-description .button-area {
    margin-bottom: 10px;
}

.product-description .button-area .btn {
    font-weight: 500;
    color: white;
}

.product-description .button-area .btn-left {
    background-color: var(--secondary-color);
}

.product-description .button-area .btn-right {
    background-color: var(--primary-color);
}

.product-description p {
    font-size: 14px;
}

.product-description .type {
    margin-bottom: 10px;
}

.product-description .type span {
    /* padding: 5px 20px; */
    /* background-color: var(--primary-color); */
    /* color: white; */
    /* border-radius: 20px; */
    font-style: italic;
}
.product-description .ammenities {
    margin-bottom: 10px;
}
.product-description .ammenities span {
    padding: 2px 15px;
    background-color: var(--primary-color);
    color: white;
    margin-right: 5px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 25px;
}

.product-description .ammenities span i {
    margin-right: 10px;
}

.product-description .business-name {
    margin-bottom: 3px;
    font-size: 16px;
    font-weight: 400;
}

.product-description .location {
    margin-bottom: 3px;
}

.product-page .shop-btns {
    margin-top: 15px;
}
.product-page .shop-btns a {
    background-color: var(--primary-color);
    padding: 10px 20px;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.product-page .product-description .tag-area {
    margin-top: 25px;
    margin-bottom: 0;
}

.product-page .product-description .item-tag {
    border-radius: 20px;
    padding: 0px 10px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 100;
    margin-right: 5px;
}

.product-page .product-description .desc {
    margin-top: 5px;
}
.product-page .product-description .yt-vid {
    margin-top: 10px;
}

.product-page .product-description .desc-2 {
    margin-top: 10px;
    margin-bottom: 5px;
}
.product-modal img {
    max-width: 100%;
}
/* shop section end */

.r-packages .card-item {
    border: 1px solid #dfdfdf;
}

.r-assets .card-item {
    border: 1px solid #dfdfdf;
}

.login-screen .card-body {
    background-color: white;
    border-radius: 10px;
    padding: 10% 10%;
}

.login-screen .card-body .title {
    color: var(--base-text-color);
    font-size: 25px;
    text-align: center;
    font-weight: 600;
}

.login-screen .card-body .underline {
    border-bottom: 1px solid var(--primary-color);
    width: 60%;
    margin: 10px auto;
    margin-top: 5px;
}

.login-screen .card-body .underline-2 {
    margin: 20px 0;
    border-bottom: 1px solid var(--primary-color);
    width: 100%;
}

.login-screen .card-body .btn-area .btn {
    margin-bottom: 5px;
    display: block;
}

.login-screen .card-body .btn-area .btn {
    text-align: center;
    color: white;
    width: 100%;
    border-radius: 5px;
}

.login-screen .card-body .btn-area .login-btn {
    background-color: var(--primary-color);
}

.login-screen .card-body .btn-area .google-btn {
    background-color: #db4437;
}
.login-screen .card-body .btn-area .fb-btn {
    background-color: #1877f2;
}
.login-screen .card-body .btn-area .git-btn {
    background-color: #2b3137;
}

.dash-title {
    margin-bottom: 25px;
}

.dash-title .subtitle {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.dash-title .subtitle {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.dash-title .title {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 10px;
}

.dash-title .btn-area {
    text-align: right;
    padding-top: 20px;
}

.dash-title .btn-area .btn {
    color: white;
    padding: 10px 20px;
    background-color: var(--primary-color);
}

.dash-title .title-line {
    border-bottom: 1px solid var(--primary-color);
    width: 20%;
}

.dash-index .card-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 10px;
}

.dash-index .card-item a {
    display: block;
    text-decoration: none;
}

.dash-index .card-item:hover {
    border: 1px solid var(--primary-color);
}
.dash-index .card-item .title {
    color: var(--primary-color-darker);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.dash-index .card-item .subtitle {
    color: #c4c4c4;
    font-size: 25px;
    font-weight: 700;
}

.dash-index .card-item .icon {
    color: #c4c4c4;
    font-size: 25px;
}

.dash-index .table-area {
    background-color: white;
    padding: 2%;
    overflow-y: hidden;
    overflow-x: scroll;
}

.dash-index .table-area .table-link {
    text-decoration: none;
    color: var(--primary-color);
}

.asset-screen .card-body {
    background-color: white;
    border-radius: 10px;
    padding: 5% 10%;
}

.asset-screen .up-title {
    /* border-bottom: 1px solid var(--primary-color); */
    margin-bottom: 20px;
}

.asset-screen .card-body .btn-area .btn {
    text-align: center;
    color: white;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.asset-screen .card-body .btn-area .login-btn {
    background-color: var(--primary-color);
}

.cart-area .cart-card {
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 5px;
}

.cart-area .cart-card .img-itm {
    padding: 5px;
    /* padding-left: 0; */
}

.cart-area .cart-card img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.cart-area .cart-card .label-itm {
    padding: 10px;
}

.cart-area .cart-card .title {
    font-size: 16px;
    /* font-weight: 700; */
    margin-bottom: 0;
}

.cart-area .cart-card .price {
    font-size: 20px;
    color: var(--primary-color);
}
.cart-area .cart-card .del-btn {
    text-align: center;
    padding: 10px;
}

.cart-area .cart-card .del-btn h1 a {
    padding: 10px 20px;
    background-color: #db4437;
    font-size: 20px;
    margin-top: 5px;
    color: white;
    text-decoration: none;
}

.cart-modal .cart-total {
    margin-top: 20px;
}

.cart-modal .cart-total p {
    margin-bottom: 0;
}

.cart-modal .cart-total h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--primary-color);
}
.cart-modal .purchase-btn {
    background-color: var(--primary-color);
    color: white;
}

.purchase-form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.confirmation-area {
    padding: 20px;
    text-align: center;
}

.confirmation-area h2 {
    color: var(--base-text-color);
    margin-bottom: 10px;
    font-size: 25px;
}

.confirmation-area .subtitle {
    margin-bottom: 20px;
}

.delete-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.delete-img button {
    display: block;
    margin-top: 5px;
    width: 100%;
    text-align: center;
}

.empty-panel {
    text-align: center;
}

.empty-panel p {
    margin-top: 5px;
}
.empty-panel img {
    margin: 0 auto;
    margin-top: 20px;
    max-width: 60px;
}

.floating-cart-btn {
    position: fixed;
    bottom: 25px;
    right: 5%;
    text-align: center;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    padding: 15px 17px;
    background-color: var(--primary-color);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    border: none;
}

.alert {
    position: fixed;
}

/* DASHBOARD LAYOUT */
.dashboard-layout {
    display: flex;
}

.dashboard-sidebar i {
    width: 20px;
}

/* Sidebar */
.dashboard-sidebar {
    width: 260px;
    background: white;
    min-height: 100vh;
    padding: 30px 20px;
    border-right: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
}

.dashboard-sidebar .sidebar-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--primary-color-darker);
}

.dashboard-sidebar ul {
    list-style: none;
    padding: 0;
}

.dashboard-sidebar ul li {
    margin-bottom: 10px;
}

.dashboard-sidebar ul li a {
    display: block;
    padding: 10px 15px;
    border-radius: 8px;
    color: var(--base-text-color);
    transition: 0.2s;
}

.dashboard-sidebar ul li a:hover,
.dashboard-sidebar ul li a.active {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

.section-coming {
    background-color: #f9fafb;
}

.coming-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.coming-card:hover {
    transform: translateY(-6px);
}

.coming-icon {
    font-size: 40px;
    color: var(--primary-color);
}

.coming-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.coming-card .badge-warning {
    background-color: var(--secondary-color);
}

/* Main content */
.dashboard-content {
    flex: 1;
    padding: 0 30px;
}

/* MOBILE SIDEBAR TOGGLE */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-title a {
    float: right;
    color: var(--primary-color-darker);
}

/* Responsive */
@media (max-width: 991px) {
    .dashboard-layout {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        position: initial;
    }

    .dashboard-sidebar.active {
        left: 0;
    }

    .dashboard-content {
        padding: 20px;
    }

    .sidebar-toggle-btn {
        display: inline-block;
    }

    .sidebar-mobile {
        display: block;
    }

    .sidebar-pc {
        display: none;
    }
}

/* Hide toggle button on desktop */
@media (min-width: 992px) {
    .sidebar-toggle-btn {
        display: none;
    }

    .sidebar-mobile {
        display: none;
    }

    .sidebar-pc {
        display: block;
    }
}

@media print {
    body * {
        visibility: hidden;
    }
    .printable-area,
    .printable-area * {
        visibility: visible;
    }
    .printable-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    /* Optional: Hide the print button during print */
    .btn {
        display: none !important;
    }
}
