.rps-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 15px;
}

.rps-product-card {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #D4D7DA;
    background: #F8FCFF;
    text-align: center;
    transition: .3s;
    font-family: 'DM Sans', sans-serif;
}

.rps-product-card.selected {
    border-color: #fb3e2d;
    transition: .3s;
}

.rps-product-card:after {
    content: "";
    position: absolute;
    background: url(/wp-content/uploads/2025/12/svgexport-1-8.svg) center/ cover no-repeat;
    width: 15px;
    height: 15px;
    top: 4px;
    right: 2px;
    opacity: 0;
    z-index: 9;
    transition: .3s;
}

.rps-product-card.selected:after {
    opacity: 1;
}

.rps-product-card .rps-product-info {
    border-radius: 8px 8px 0px 0px;
    background: #F2F8FF;
    border-bottom: 1px solid #D4D7DA;
    padding: 11px 4px;
    transition: .3s;
    display: flex;
    flex-direction: column;
}

.rps-product-card.selected .rps-product-info {
    background: #fb3e2d;
    border-color: #fb3e2d;
    transition: .3s;
}

.rps-product-card .rps-product-info span.number {
    color: #fb3e2d;
    line-height: 1;
    margin-bottom: 2px;
    transition: .3s;
    font-size: 24px;
    font-weight: 900;
}

.rps-product-card .rps-product-info span.subtitle,
.rps-product-card .rps-product-discount {
    line-height: 1;
    font-size: 14px;
    color: #383b3e;
    transition: .3s;
}

.rps-product-card.selected .rps-product-info span.number,
.rps-product-card.selected .rps-product-info span.subtitle {
    color: #fff;
}

.rps-product-card .rps-product-discount {
    padding: 8px 4px 6px 4px;
}

.rps-product-card span.best-selling-badge {
    position: absolute;
    background-color: #22bf3a;
    width: max-content;
    font-size: 12px;
    line-height: 1;
    padding: 4px 9px 4px;
    text-transform: uppercase;
    left: 9px;
    top: -12px;
    border-radius: 4px;
    color: #fff;
    z-index: 4;
}

.rps-order-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
}

.rps-special-price-label {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    color: #383b3e;
    font-style: italic;
    font-family: 'DM Sans';
}

.rps-promo-text {
    color: #6d6d6d;
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    font-family: 'DM Sans';
}

.rps-pricing-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

span.rps-regular-price {
    color: #6d6d6d;
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    font-family: 'DM Sans';
    text-decoration: line-through;
}

span.rps-sale-price {
    color: #fb3e2d;
    font-size: 34px;
    line-height: 46px;
    font-weight: 900;
    font-family: 'DM Sans';
}

span.rps-discount-badge {
    background-color: #22bf3a;
    font-size: 14px;
    line-height: 1;
    padding: 3px 9px;
    border-radius: 4px;
    color: #fff;
    font-weight: 400;
    font-family: 'DM Sans';
}

button.rps-buy-now-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 236px;
    margin: 20px auto 0;
    cursor: pointer;
    background-color: #fb3e2d;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 10px;
    min-width: 210px;
    border-radius: 10px;
    border: none;
    transition: .3s;
}

button.rps-buy-now-btn:hover {
    background-color: #383B3E;
}


.standalone-product-card {
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    border: 3px solid #FB3E2D;
    text-align: center;
    position: relative;
}

.standalone-product-card.second-item {
    border: 1px solid #FB3E2D;
}

.standalone-per-day {
    margin: -38px auto 20px auto;
    background: #FAEDEC;
    color: #FB3E2D;
    display: block;
    width: fit-content;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    font-family: 'DM Sans';
}

h2.standalone-label {
    margin: 0 0 15px;
    color: #383B3E;
    text-align: center;
    font-family: "DM Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.72px;
}

h2.standalone-label span {
    color: #FB3E2D;
}

.standalone-pricing {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
}

span.standalone-original-price {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    font-family: 'DM Sans';
    color: #5a5757;
    text-decoration: line-through;
}

.standalone-current-price {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    font-family: 'DM Sans';
    color: #fb3e2d;
}

p.standalone-tagline {
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    font-family: 'DM Sans';
    color: #383b3e;
    margin: 10px 0 25px;
}

button.standalone-buy-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    min-width: 236px;
    margin: 20px auto;
    border-radius: 20px;
    cursor: pointer;
    background-color: #fb3e2d;
    text-align: center;
    color: #fff;
    padding: 15px 10px;
    border: none;
    transition: .3s;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    font-family: 'DM Sans';
}

button.standalone-buy-btn:hover {
    background-color: #383B3E;
}

ul.standalone-checklist {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 6px 4px 0 10px;
    list-style: none;
    gap: 6px;
}

.standalone-checklist li {
    font-size: 15px;
    line-height: 26px;
    font-weight: 700;
    font-family: 'DM Sans';
    color: #383b3e;
}

.standalone-checklist li img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.standalone-checklist li span {
    padding-left: 10px;
}

.live-checkout-users {
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    color: #000;
    font-family: 'DM Sans';
}

.live-checkout-users span {
    font-weight: 800;
    background-color: #22bf3a;
    color: #fff;
    padding: 10px 9px;
    border-radius: 5px;
    margin-right: 10px;
}



/* Blog Single Styles */

.post-faqs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.post-faqs .title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
}

.post-faqs .faq-item {
    background-color: #f2f8ff;
    border-radius: 10px;
    padding: 0 20px;
    cursor: pointer;
}
.post-faqs .faq-item .faq-question {
    padding: 20px 0;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    color: #383b3e;
    position: relative;
}

.post-faqs .faq-item .faq-question::before {
    content: '';
    width: 15px;
    height: 15px;
    display: block;
    background-image: url(/wp-content/uploads/2026/01/svgexport-1-10.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    right: 0;
}

.post-faqs .faq-item.active .faq-question::before {
    background-image: url(/wp-content/uploads/2026/01/svgexport-1-11.svg);
}

.post-faqs .faq-item .faq-answer {
    font-size: 15px;
    line-height: 23px;
    font-weight: 400;
    color: #6d6d6d;
    transition: all ease .4s;
    padding: 0 0;
    max-height: 0px;
    overflow: hidden;
}

.post-faqs .faq-item.active .faq-answer {
    padding: 0 0 20px;
    max-height: 1000px;
}

.post-contents-sections .content-section {
    max-width: 976px;
    margin: auto;
}

.author-profile-wrapper,
.comments-area,
#faq,
.also-like {
    max-width: 976px;
    margin: 40px auto;
}

.author-profile-wrapper .author-info {
    background-color: #efc42d17;
    border-radius: 10px;
    padding: 40px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.author-profile-wrapper .author-info .profile-pic {
    width: 77px;
    height: 76px;
    border-radius: 100%;
    overflow: hidden;
}

.author-profile-wrapper .author-info .profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-profile-wrapper .author-info .user-info {
    width: calc(100% - 92px);
}

.author-profile-wrapper .author-info .user-info h2 {
    color: #263238;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin: 0;
}

.author-profile-wrapper .author-info .user-info p {
    color: #6d6d6d;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
    margin: 15px 0;
}

.author-profile-wrapper .author-info .user-info .author-read-more {
    color: #fb3e2d;
    font-size: 15px;
    line-height: 0px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
}


.comment-reply-title,
#faq h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 27px;
    color: #383b3e;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid #CDCDCD;
    font-size: 16px;
    outline: none;
    background-color: #f5f5f5;
    line-height: 1;
    min-height: 50px;
    color: #383b3e;
}

.comment-form textarea {
    height: 100px;
}

.comment-form input#author {
    width: 48%;
}

.comment-form input#author:focus {
    border: 1px solid #fb3e2d;
}

.comment-form .submit {
    background: #2f3437;
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    max-width: 290px;
    min-height: 50px;
    line-height: normal;
    transition: all ease .3s;
}

.comment-form .submit:hover {
    background: #FB3E2D;
}


#comments .logged-in-as,
#comments .comment-notes {
    display: none !important;
}

.thumbnail-section .thumbnail-img {
    width: 100%;
}

.thumbnail-section .post-info {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.thumbnail-section .post-info .info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6d6d6d;
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
}

.thumbnail-section .post-info .authore img {
    width: 22px;
}

.post-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 10px 20px;
    background: #f2f8ff;
    width: max-content;
    border-radius: 10px;
}

.post-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.post-header .title h1,
.also-like h2 {
    margin: 0;
    font-size: 36px;
    line-height: 46px;
    font-weight: 900;
    color: #383b3e;
    text-align: center;
}

.header-border {
    width: 90%;
    border: 1px solid #00000029;
}

.post-header .breadcrumb li {
    font-size: 12px;
    line-height: normal;
    font-weight: 500;
    color: #000;
}

.post-header .breadcrumb li a {
    color: #6d6d6d;
}

.post-header .breadcrumb li::before {
    content: ">";
    color: #6d6d6d;
    padding: 8px;
}

.post-header .breadcrumb li:first-child::before {
    display: none;
}

.post-contents-nav,
.thumbnail-section,
.post-header {
    max-width: 976px;
    margin: 40px auto;
}

.post-contents-nav .content-wrapper {
    border-radius: 20px;
    margin: 0;
    margin-right: auto;
    width: 75%;
    background-color: #f2f8ff;
}

.post-contents-nav h2 {
    text-align: center;
    margin: 0px;
    background-color: #fb3e2d;
    padding: 10px;
    border-radius: 10px 10px 0px 0px;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
}

.post-contents-nav  ul {
    list-style: none;
    line-height: 38px;
    margin: 10px 26px 0px;
    padding: 15px 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post-contents-nav  ul a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
    transition: all ease .3s;
}

.post-contents-nav  ul a:hover {
    color: #fb3e2d;
}

.post-contents-nav  ul a img {
    width: 9px;
}

.post-contents-sections .content-section h2 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 900;
    color: #383b3e;
    margin: 10px 0 16px;
}

.post-contents-sections .content-section h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 900;
    color: #383b3e;
    margin: 0 0 25px;
}

.post-contents-sections .content-section ul {
    padding-left: 15px;
}

.post-contents-sections .content-section p {
    color: #263238;
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
}

.post-contents-sections .content-section a {
    color: blue;
    transition: all ease .3s;
}

.post-contents-sections .content-section a:hover {
    color: #fb3e2d;
}

div#top_packages {
    background-color: #efc42d17;
    padding: 40px 0%;
    margin: 40px 0;
    text-align: center;
}

div#top_packages h2 {
    color: #383b3e;
    font-size: 36px;
    line-height: 46px;
    font-weight: 900;
    margin: 0 0 30px;
}

.also-like-swiper a.feature-image {
    display: block;
    width: 100%;
    height: 252px;
}

.also-like-swiper a.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.also-like-swiper .swiper-slide {
    background-color: #F2F8FF;
    border-radius: 0 0 10px 10px;
}

.also-like-swiper .swiper-slide .content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.also-like-swiper .swiper-slide .content .title h3 {
    color: #383b3e;
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    margin: 0 0 20px;
    text-align: center;
}

.also-like-swiper .post-content {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-align: center;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 3em;
  color: #6d6d6d;
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  margin-bottom: 8px;
}

.also-like-swiper .read-more {
    color: #fb3e2d;
    font-size: 16px;
    line-height: normal;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    text-align: center;
}

.also-like-swiper .post-info {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 10px 0;
}
.also-like-swiper .author,
.also-like-swiper .date {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    line-height: normal;
    font-weight: 400;
    color: #000;
}

.also-like-swiper .author {
    border-right: 2px solid #6d6d6d;
}

.also-like-swiper .post-info img {
    width: 22px;
    height: 22px;
    object-fit: cover;
}

.also-like-swiper .swiper-wrapper {
  align-items: stretch !important;
  margin: 35px 0 60px;
}

.also-like-swiper .swiper-slide {
    height: auto !important;
}

.also-like-swiper .swiper-pagination {
    bottom: 0px !important;
}

.also-like-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #383B3E;
    opacity: 1;
    transition: all ease .3s;
}

.also-like-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 52px;
    border-radius: 20px;
    background-color: #FB3E2D;
}


ul.blog-category-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #a6a6a6;
}

ul.blog-category-nav li a {
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    padding: 10px 0;
}

ul.blog-category-nav li.active a {
    border-bottom: 3px solid #fb3e2d;
}


@media (max-width: 767px) {
.rps-product-card .rps-product-info {
    padding: 7px 4px;
}
.rps-product-card .rps-product-info span.number {
    font-size: 18px;
}
.rps-product-card .rps-product-info span.subtitle, 
.rps-product-card .rps-product-discount {
    font-size: 12px;
}
.rps-products-grid {
    gap: 18px 12px;
}
.rps-product-card:after {
    width: 12px;
    height: 12px;
}
.rps-product-card span.best-selling-badge {
    font-size: 9px;
    padding: 3px 5px 3px;
}
.rps-promo-text {
    font-size: 13px;
}
button.rps-buy-now-btn {
    font-size: 16px;
    padding: 14px 10px;
    min-width: 230px;
}
.rps-order-pricing {
    margin-top: 24px;
}
h2.standalone-label {
    font-size: 27px;
}
.live-checkout-users {
    font-size: 14px;
}
.live-checkout-users span {
    padding: 8px 9px;
}
.gform_title {
    font-size: 30px;
    line-height: 32px;
}
#gform_fields_3 input[type="text"],
#gform_fields_3 input[type="email"] {
    min-height: 50px;
    padding: 10px 13px 10px 45px;
    font-size: 14px;
    background-position: 10px center;
}
label#label_3_5_1 {
    font-size: 14px;
}
input#gform_submit_button_3 {
    padding: 14px 10px;
}
}