.shopping-bag-toggle {
background: none;
border: none;
padding: 0;
cursor: pointer;
position: relative;
} body.woocommerce-cart .shopping-bag-toggle {
cursor: default;
} body.woocommerce-checkout .shopping-bag-toggle {
display: none !important;
}
.shopping-bag-toggle .icon {
position: relative;
display: inline-block;
}
.shopping-bag-toggle .cart-count {
position: absolute;
top: -0.1em;
right: -9px;
background: #333;
color: #fff;
width: 16px;
height: 16px;
border-radius: 50%;
font-size: 12px;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
}
.shopping-bag-panel {
position: fixed;
top: 0;
right: 0;
width: 100%;
max-width: 420px;
height: 100vh;
z-index: 10000;
visibility: hidden;
opacity: 0;
transition: visibility 0.3s, opacity 0.3s;
}
.shopping-bag-panel.active {
visibility: visible;
opacity: 1;
}
.shopping-bag-panel-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 9999;
display: none;
}
.shopping-bag-panel.active .shopping-bag-panel-overlay {
display: block;
}
.shopping-bag-panel-content {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: #fff;
box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
transform: translateX(100%);
transition: transform 0.3s ease;
z-index: 10001;
}
.shopping-bag-panel.active .shopping-bag-panel-content {
transform: translateX(0);
}
.shopping-bag-panel-header {
padding: 20px;
border-bottom: 1px solid #e5e5e5;
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
}
.shopping-bag-panel-header h3 {
margin: 0;
font-size: 20px;
font-weight: 600;
}
.shopping-bag-close {
background: none;
border: none;
padding: 5px;
cursor: pointer;
color: #333;
display: flex;
align-items: center;
justify-content: center;
transition: color 0.3s;
}
.shopping-bag-close:hover {
color: #da373d;
}
.shopping-bag-panel-body {
flex: 1;
overflow-y: auto;
padding: 20px;
}
.shopping-bag-panel-body .products-list {
display: flex;
flex-direction: column;
gap: 15px;
position: relative;
min-height: 100px;
} .shopping-bag-panel-body .mini-cart-loader {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 20px;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(255, 255, 255, 0.95);
z-index: 10;
opacity: 1;
visibility: visible;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.shopping-bag-panel-body .mini-cart-loader.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.shopping-bag-panel-body .mini-cart-loader .spinner {
width: 50px;
height: 50px;
border: 4px solid #F6F2EF;
border-top-color: #E28C69;
border-radius: 50%;
animation: mini-cart-spin 0.8s linear infinite;
margin-bottom: 15px;
}
.shopping-bag-panel-body .mini-cart-loader .loader-text {
font-size: 14px;
color: #666;
font-weight: 500;
font-family: "Inter Tight", sans-serif;
}
@keyframes mini-cart-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} .shopping-bag-panel-body .mini-cart-skeleton {
display: flex;
flex-direction: column;
gap: 15px;
padding: 0;
margin: 0;
}
.shopping-bag-panel-body .skeleton-item {
display: flex;
gap: 15px;
padding: 15px;
border: 1px solid #e5e5e5;
border-radius: 8px;
position: relative;
background: #fff;
}
.shopping-bag-panel-body .skeleton-image {
width: 80px;
height: 80px;
flex-shrink: 0;
border-radius: 4px;
background: linear-gradient(90deg, #F6F2EF 25%, #F9F7F5 50%, #F6F2EF 75%);
background-size: 200% 100%;
animation: skeleton-loading 1.5s ease-in-out infinite;
}
.shopping-bag-panel-body .skeleton-body {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
gap: 8px;
}
.shopping-bag-panel-body .skeleton-title {
height: 16px;
background: linear-gradient(90deg, #F6F2EF 25%, #F9F7F5 50%, #F6F2EF 75%);
background-size: 200% 100%;
animation: skeleton-loading 1.5s ease-in-out infinite;
border-radius: 4px;
width: 80%;
}
.shopping-bag-panel-body .skeleton-title.short {
width: 60%;
}
.shopping-bag-panel-body .skeleton-price {
height: 14px;
background: linear-gradient(90deg, #F6F2EF 25%, #F9F7F5 50%, #F6F2EF 75%);
background-size: 200% 100%;
animation: skeleton-loading 1.5s ease-in-out infinite;
border-radius: 4px;
width: 40%;
}
.shopping-bag-panel-body .skeleton-quantity {
height: 12px;
background: linear-gradient(90deg, #F6F2EF 25%, #F9F7F5 50%, #F6F2EF 75%);
background-size: 200% 100%;
animation: skeleton-loading 1.5s ease-in-out infinite;
border-radius: 4px;
width: 30%;
margin-top: 4px;
}
.shopping-bag-panel-body .skeleton-remove {
position: absolute;
top: 10px;
right: 10px;
width: 24px;
height: 24px;
border-radius: 4px;
background: linear-gradient(90deg, #F6F2EF 25%, #F9F7F5 50%, #F6F2EF 75%);
background-size: 200% 100%;
animation: skeleton-loading 1.5s ease-in-out infinite;
}
@keyframes skeleton-loading {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
} @media (max-width: 767px) {
.shopping-bag-panel-body .skeleton-item {
padding: 12px;
}
.shopping-bag-panel-body .skeleton-image {
width: 60px;
height: 60px;
}
}
.shopping-bag-panel-body .products-list article.product {
display: flex;
gap: 15px;
padding: 15px;
border: 1px solid #e5e5e5;
border-radius: 8px;
position: relative;
}
.shopping-bag-panel-body .products-list article.product .product-image {
width: 80px;
height: 80px;
flex-shrink: 0;
border-radius: 4px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
}
.shopping-bag-panel-body .products-list article.product .product-image img {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
object-fit: contain;
object-position: center;
}
.shopping-bag-panel-body .products-list article.product .product-body {
flex: 1;
min-width: 0;
}
.shopping-bag-panel-body .products-list article.product .product-title {
margin: 0 0 8px 0;
font-size: 14px;
font-weight: 500;
line-height: 1.4;
width: 95%;
}
.shopping-bag-panel-body .products-list article.product .product-title a {
color: #333;
text-decoration: none;
}
.shopping-bag-panel-body .products-list article.product .product-price {
margin: 0 0 8px 0;
font-size: 14px;
font-weight: 600;
color: #333;
}
.shopping-bag-panel-body .products-list article.product .custom-quantity-input-wrapper {
display: flex;
align-items: center;
gap: 8px;
margin: 8px 0;
}
.shopping-bag-panel-body .products-list article.product .custom-quantity-input-wrapper .pre {
margin: 0;
font-size: 12px;
color: #666;
}
.shopping-bag-panel-body .products-list article.product .custom-quantity-input-wrapper .quantity-inner {
font-size: 14px;
font-weight: 500;
}
.shopping-bag-panel-body .products-list article.product .product-remote-button {
position: absolute;
top: 10px;
right: 10px;
width: 24px;
height: 24px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
opacity: 0.6;
transition: opacity 0.3s;
}
.shopping-bag-panel-body .products-list article.product .product-remote-button:hover {
opacity: 1;
}
.shopping-bag-panel-body .products-list article.product .product-remote-button img {
width: 16px;
height: 16px;
} .shopping-bag-panel-body .products-list article.product.cb-child-item {
background: #fafafa;
border-left: 3px solid #ccc;
margin-left: 20px;
}
.shopping-bag-panel-body .products-list article.product.cb-child-item .product-remote-button {
display: none;
}
.shopping-bag-panel-footer {
padding: 20px;
border-top: 1px solid #e5e5e5;
flex-shrink: 0;
}
.shopping-bag-panel-footer .subtotal-box {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid #e5e5e5;
}
.shopping-bag-panel-footer .subtotal-label {
font-size: 16px;
font-weight: 600;
}
.shopping-bag-panel-footer .subtotal-inner {
font-size: 18px;
font-weight: 700;
color: #333;
}
.shopping-bag-actions {
display: flex;
flex-direction: column;
gap: 10px;
}
.shopping-bag-actions .btn-view-cart,
.shopping-bag-actions .btn-checkout {
display: block;
padding: 12px 20px;
text-align: center;
border-radius: 30px;
font-size: 14px;
font-weight: 600;
text-decoration: none;
transition: opacity 0.3s;
}
.shopping-bag-actions .btn-view-cart {
background: transparent;
border: 1px solid #333;
color: #333;
}
.shopping-bag-actions .btn-view-cart:hover {
opacity: 0.8;
}
.shopping-bag-actions .btn-checkout {
background: linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%);
color: #333;
border: none;
}
.shopping-bag-actions .btn-checkout:hover {
opacity: 0.9;
} .shopping-bag-panel-body .products-list:empty::before {
content: "Your cart is empty";
display: block;
text-align: center;
padding: 40px 20px;
color: #666;
font-size: 14px;
} body.mini-cart-open {
overflow: hidden;
}
@media (max-width: 767px) {
.shopping-bag-panel {
max-width: 100%;
}
.shopping-bag-panel-body .products-list article.product {
padding: 12px;
}
.shopping-bag-panel-body .products-list article.product .product-image {
width: 60px;
height: 60px;
}
}@media (max-width: 767px) {
.desktop-img {
display: none;
}
}
@media (min-width: 767px) {
.mobile-img {
display: none;
}
} .banner {
background: #E3D9DA;
overflow: hidden;
border-radius: 0 0 30px 30px;
}
.banner .flex {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
margin-left: -5px;
}
@media (max-width: 767px) {
.banner .flex {
margin-left: 0;
}
} .post-type-archive .wcsatt-sub-options,
body.post-type-archive .wcsatt-sub-options {
display: none;
}
.banner .text-box {
padding: 106px 0 108px;
}
.banner .text-box .h2,
.banner .text-box h1 {
font-weight: 700;
font-size: 42px;
margin-bottom: 16px;
}
.banner .text-box p {
max-width: 550px;
margin-bottom: 0;
letter-spacing: 0.3px;
line-height: 1.6;
}
@media (max-width: 767px) {
.banner .text-box {
padding: 22px 0;
}
.banner .text-box .h2,
.banner .text-box h1 {
font-size: 30px;
margin-bottom: 13px;
}
.banner .text-box p {
letter-spacing: 0.3px;
line-height: 1.4;
}
}
.banner figure {
max-width: 573px;
position: absolute;
right: -27px;
top: -16px;
}
@media (max-width: 800px) {
.banner .text-box p {
max-width: 50%;
}
.banner figure {
max-width: 390px;
right: -27px;
top: 36px;
}
}
@media (max-width: 767px) {
.banner figure {
position: static;
width: 100%;
margin-top: -32px;
}
.banner figure img {
transform: translateX(43px);
}
.banner .text-box p {
max-width: 100%;
}
} .category-sec {
padding-bottom: 45px;
border-bottom: 1px solid #eee;
margin-bottom: 13px;
overflow: hidden;
}
.category-sec ul {
display: flex;
justify-content: center;
gap: 60px;
overflow: auto;
padding-bottom: 10px;
-ms-overflow-style: none; scrollbar-width: none;
}
.category-sec ul::-webkit-scrollbar {
display: none;
}
.category-sec ul li {
list-style: none;
text-align: center;
}
.category-sec ul li .category-link {
display: block;
text-decoration: none;
color: inherit;
}
.category-sec ul li .icon-box {
cursor: pointer;
}
.category-sec ul li .icon-box img,
.category-sec ul li .icon-box svg {
width: 54px;
height: 54px;
margin-left: auto;
margin-right: auto;
}
.category-sec ul li .icon-box img,
.category-sec ul li .icon-box svg path {
fill: #798377;
stroke: #798377;
}
.category-sec ul li .icon-box img,
.category-sec ul li:hover .icon-box svg path,
.category-sec ul li.active .icon-box svg path {
fill: #E69F71;
stroke: #E69F71;
}
.category-sec ul li .text {
color: #333;
text-align: center;
margin-top: 10px;
cursor: pointer;
font-weight: 600;
}
.category-sec ul li:hover .text,
.category-sec ul li.active .text {
color: #E69F71;
}
@media (max-width: 992px) {
.category-sec ul li .icon-box img,
.category-sec ul li .icon-box svg {
width: 42px;
height: 42px;
}
}
@media (max-width: 800px) {
.category-sec ul {
justify-content: flex-start;
}
}
@media (max-width: 767px) {
.category-sec {
margin-bottom: 23px;
padding-bottom: 10px;
}
.category-sec ul {
gap: 41px;
justify-content: start;
}
.category-sec ul li {
flex-shrink: 0;
}
.category-sec ul li .icon-box img,
.category-sec ul li .icon-box svg {
width: 48px;
height: 48px;
}
.category-sec ul li .text {
font-size: 12px;
margin-top: 6px;
}
html .woocommerce .woocommerce-ordering {
margin-bottom: 0;
margin-left: unset !important;
min-width: 1px;
}
} .plp-sec {
padding: 62px 0 90px;
}
.plp-sec .products-list .flex {
gap: 30px;
flex-wrap: wrap;
}
.plp-sec .products-list .card {
background: #FCF5EE;
border: 1px solid #FCF5EE;
border-radius: 14px;
padding: 20px;
padding-bottom: 25px;
text-align: center;
transition: 0.3s ease;
position: relative;
flex: 0 0 calc(25% - 22.5px);
}
.plp-sec .products-list .card .badge {
position: absolute;
top: 0;
left: 0;
background: #EAB67A;
border-radius: 14px 0 14px 0;
color: #fff;
padding: 5px 12.5px;
letter-spacing: -0.2px;
}
@media (max-width: 767px) {
.plp-sec .products-list .card {
flex: 0 0 calc(50% - 6px);
border-radius: 6px;
max-width: calc(50% - 6px);
padding-bottom: 20px;
}
.plp-sec .products-list .card .badge {
font-size: 12px;
border-radius: 4px 0 4px 0;
letter-spacing: 0.3px;
padding: 2px 9px;
}
.plp-sec .products-list .card .img-box {
margin-bottom: 4px;
}
.plp-sec .products-list .card .img-box figure {
height: 120px;
}
.plp-sec .products-list .card .img-box figure img {
height: 100%;
}
.plp-sec .products-list .card .text-box .h2 {
font-size: 16px;
margin-bottom: 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.plp-sec .products-list .card .text-box p {
max-width: 100%;
font-size: 12px;
height: 35px;
overflow: hidden;
margin-bottom: 9px;
}
.plp-sec .products-list .card .text-box .btn-theme {
font-size: 12px;
padding: 7px 14px;
}
.plp-sec .products-list .card .text-box .price {
font-size: 14px;
margin-bottom: 10px;
}
.plp-sec {
padding: 30px 0 42px;
}
.plp-sec .products-list .flex {
gap: 12px;
}
}
.plp-sec .products-list .card .img-box {
margin-bottom: 17px;
}
.plp-sec .products-list .card .img-box figure {
position: relative;
text-align: center;
}
.plp-sec .products-list .card .img-box figure::after {
content: "";
position: absolute;
border-radius: 50%;
background: #F6EADC;
width: 170px;
height: 170px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
.plp-sec .products-list .card .img-box figure::after {
width: 90px;
height: 90px;
}
}
.plp-sec .products-list .card .img-box figure img {
position: relative;
z-index: 1;
margin: auto;
}
.plp-sec .products-list .card .text-box .h2 {
font-size: 18px;
font-weight: 600;
display: block;
margin-bottom: 5px;
}
.plp-sec .products-list .card .text-box p {
margin-bottom: 7px;
font-size: 14px;
max-width: 80%;
margin-left: auto;
margin-right: auto;
}
.plp-sec .products-list .card .text-box .price {
font-size: 16px;
font-family: inherit;
margin-bottom: 12px;
font-weight: 600;
}
.plp-sec .products-list .card .text-box .btn-theme {
background: linear-gradient(90deg, #FDCEBB -12.71%, #FFEDBF 100%);
padding: 10px 20px;
}
.plp-sec .products-list .card:hover {
background: #fff;
border-color: rgba(0, 0, 0, 0.5);
}
.plp-sec .products-list .card.card-ads {
padding: 0;
border: 0;
position: relative;
}
.plp-sec .products-list .card.card-ads .img-box {
margin: 0;
}
.plp-sec .products-list .card.card-ads .text-box {
position: absolute;
z-index: 1;
bottom: 0;
left: 0;
width: 100%;
padding: 28px;
}
.plp-sec .products-list .card.card-ads .text-box * {
color: #fff;
}
.plp-sec .products-list .card.card-ads .text-box .h2 {
font-size: 20px;
margin-bottom: 0;
}
.plp-sec .products-list .card.card-ads .text-box p {
margin-bottom: 18px;
}
.plp-sec .products-list .card.card-ads .text-box .btn-theme {
color: #333;
}
.plp-sec .products-list .card .inner-box {
position: absolute;
inset: 0;
background: #fff;
}
.plp-sec .products-list .card .inner-box .qty-box {
display: flex;
justify-content: space-between;
}
.plp-sec .products-list .card .inner-box .qty-box .h4 {
font-weight: 500;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.07em;
}
.plp-sec .products-list .card .inner-box .increment-box {
border: 1px solid #E3E3E3;
height: 30px;
width: 130px;
}
.plp-sec .products-list .card .inner-box .increment-box .qty-btn {
border-radius: 30px;
}
.plp-sec .products-list .card .inner-box .increment-box input {
height: 30px;
outline: none;
border: 1px solid #E3E3E3;
border-top: 0;
border-bottom: 0;
width: 38px;
}
.type-product {
width: 100% !important;
}
.subscription-plp-button {
display: inline-block;
padding: 10px 20px;
background-color: #000;
color: #fff;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
text-align: center;
margin-top: 10px;
border: none;
cursor: pointer;
width: 30%;
pointer-events: auto;
z-index: 1000;
position: relative;
} .pagination-row {
margin-top: 51px;
}
.pagination-row .flex {
justify-content: center;
gap: 10px;
}
.pagination-row .flex li {
border-radius: 6px;
border: 1px solid #E69F71;
font-weight: 500;
font-size: 16px;
padding: 2px 9px;
color: #E69F71;
cursor: pointer;
}
.pagination-row .flex li:hover {
background: rgba(230, 159, 113, 0.1);
}
.pagination-row .flex li.active {
color: #fff;
background: #E69F71;
}
@media (max-width: 767px) {
.pagination-row {
margin-top: 34px;
}
} .woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce-page ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product > a,
.woocommerce-page ul.products li.product > a {
position: relative;
display: block;
}
.rx-best-seller-tag {
position: absolute;
top: 10px;
right: 10px;
background-color: #ff6b35;
color: #ffffff;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 4px 10px;
border-radius: 3px;
z-index: 10;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
pointer-events: none;
line-height: 1.2;
} .rx-new-tag {
position: absolute;
top: 10px;
left: 10px;
background-color: #4caf50;
color: #ffffff;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 4px 10px;
border-radius: 3px;
z-index: 10;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
pointer-events: none;
line-height: 1.2;
} .woocommerce ul.products li.product:has(.rx-best-seller-tag) .rx-new-tag,
.woocommerce-page ul.products li.product:has(.rx-best-seller-tag) .rx-new-tag {
top: 45px;
left: 10px;
} html body {
--wp--preset--font-family--heading: "TASA Orbiter", sans-serif;
}
body.woocommerce ul.products,
body.woocommerce-page ul.products {
gap: 30px;
display: grid;
margin-bottom: 6px;
grid-template-columns: repeat(5, 1fr);
}
body.woocommerce ul.products::before,
body.woocommerce-page ul.products::before {
display: none;
}
body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product {
background: #FCF5EE;
border: 1px solid #FCF5EE;
border-radius: 14px;
text-align: center;
position: relative;
flex: 0 0 calc(25% - 22.5px);
margin: 0;
transition: 0.3s ease;
display: flex;
flex-direction: column;
padding-bottom: 0;
}
body.woocommerce ul.products li.product::after,
body.woocommerce-page ul.products li.product::after {
content: "";
position: absolute;
border-radius: 50%;
background: #F6EADC;
width: 170px;
height: 170px;
top: 11%;
left: 50%;
transform: translate(-50%, 0%);
}
body.woocommerce ul.products li.product .woocommerce-loop-product__link,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__link {
padding: 24px 20px;
padding-bottom: 0;
position: relative;
z-index: 2;
margin-bottom: 10px;
display: flex;
flex-direction: column;
}
body.woocommerce ul.products li.product .onsale,
body.woocommerce ul.products li.product .rx-new-tag,
body.woocommerce ul.products li.product .rx-best-seller-tag,
body.woocommerce-page ul.products li.product .onsale,
body.woocommerce-page ul.products li.product .rx-new-tag,
body.woocommerce-page ul.products li.product .rx-best-seller-tag {
position: absolute;
right: auto;
top: 0;
left: 0;
background: #EAB67A;
border-radius: 14px 0 14px 0;
color: #fff;
padding: 8px 14px;
letter-spacing: -0.2px;
line-height: normal;
margin: 0;
min-height: 1px;
min-width: 1px;
font-size: 14px;
font-weight: 600;
}
body.woocommerce ul.products li.product img,
body.woocommerce-page ul.products li.product img {
position: relative;
z-index: 1;
margin: auto;
height: 229px;
-o-object-fit: contain;
object-fit: contain;
margin-bottom: 9px;
}
body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
font-size: 18px;
font-weight: 600;
display: block;
margin-bottom: 0;
padding: 0;
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
}
body.woocommerce ul.products li.product .price small,
body.woocommerce-page ul.products li.product .price small {
font-size: 16px;
}
body.woocommerce-page ul.products li.product .price {
margin-top: 1px;
}
body.woocommerce ul.products li.product .price .amount,
body.woocommerce-page ul.products li.product .price {
font-size: 16px;
font-family: inherit;
margin-bottom: 3px !important;
font-weight: 600;
order: 1;
}
body.woocommerce ul.products li.product .price del,
body.woocommerce-page ul.products li.product .price del {
display: none;
}
body.woocommerce ul.products li.product .rx-product-short-description,
body.woocommerce-page ul.products li.product .rx-product-short-description {
margin-bottom: 3px !important;
font-size: 14px;
max-width: 80%;
margin-left: auto;
margin-right: auto;
height: 45px;
overflow: hidden;
color: #333;
letter-spacing: 0.02em;
}
body.woocommerce ul.products li.product .button,
body.woocommerce-page ul.products li.product .button {
border-radius: 30px !important;
color: #333;
font-size: 14px;
font-weight: 600;
width: auto !important;
letter-spacing: 0.02em;
background: linear-gradient(90deg, #FDCEBB -12.71%, #FFEDBF 100%);
padding: 10px 20px;
margin-right: auto;
margin-left: auto;
margin-top: auto;
}
body.woocommerce ul.products li.product .button.add_to_cart_button,
body.woocommerce-page ul.products li.product .button.add_to_cart_button {
margin-bottom: 25px;
}
body.woocommerce ul.products li.product:hover,
body.woocommerce-page ul.products li.product:hover {
background: #fff;
border-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1660px) {
body.woocommerce ul.products,
body.woocommerce-page ul.products {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 1280px) {
body.woocommerce ul.products,
body.woocommerce-page ul.products {
gap: 20px;
grid-template-columns: repeat(3, 1fr);
}
body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product {
flex: 0 0 calc(25% - 15px);
}
}
@media (max-width: 1100px) {
body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product {
flex: 0 0 calc(33.33% - 15px);
}
body.woocommerce ul.products,
body.woocommerce-page ul.products {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 1024px) {
body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product {
margin: 0 !important;
}
}
@media (max-width: 767px) {
body.woocommerce ul.products,
body.woocommerce-page ul.products {
grid-template-columns: repeat(1, 1fr);
gap: 12px;
}
body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product {
border-radius: 6px;
padding-bottom: 0;
}
body.woocommerce ul.products li.product::after,
body.woocommerce-page ul.products li.product::after {
width: 90px;
height: 90px;
}
body.woocommerce ul.products li.product .onsale,
body.woocommerce ul.products li.product .rx-new-tag,
body.woocommerce ul.products li.product .rx-best-seller-tag,
body.woocommerce-page ul.products li.product .onsale,
body.woocommerce-page ul.products li.product .rx-new-tag,
body.woocommerce-page ul.products li.product .rx-best-seller-tag {
font-size: 12px;
border-radius: 4px 0 4px 0;
letter-spacing: 0.3px;
padding: 2px 9px;
}
body.woocommerce ul.products li.product img,
body.woocommerce-page ul.products li.product img {
margin-bottom: 12px;
height: 108px;
}
body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
font-size: 16px;
margin-bottom: 4px;
}
body.woocommerce ul.products li.product p,
body.woocommerce ul.products li.product .rx-product-short-description,
body.woocommerce-page ul.products li.product p,
body.woocommerce-page ul.products li.product .rx-product-short-description {
max-width: 100%;
font-size: 12px;
height: 35px;
overflow: hidden;
margin-bottom: 6px !important;
}
body.woocommerce ul.products li.product .button.add_to_cart_button,
body.woocommerce-page ul.products li.product .button.add_to_cart_button {
font-size: 12px;
padding: 7px 14px;
margin-bottom: 25px;
}
body.woocommerce ul.products li.product .button,
body.woocommerce-page ul.products li.product .button {
padding: 7px 14px;
font-family: 'Inter Tight', sans-serif;
letter-spacing: -0.5px;
font-size: 14px !important;
}
body.woocommerce ul.products li.product .price .amount,
body.woocommerce ul.products li.product .price .amount small,
body.woocommerce-page ul.products li.product .price .amount,
body.woocommerce-page ul.products li.product .price .amount small {
font-size: 14px;
margin-bottom: 10px;
}
} .woocommerce .woocommerce-ordering select {
appearance: none;
position: relative;
background: url(https://celia-rx.mobikasa.net/wp-content/uploads/2025/12/down-arrow.svg);
background-repeat: no-repeat;
background-position: 93%;
padding: 11px 40px 11px 20px;
border-radius: 50px;
font-size: 16px;
border: 1px solid #DEDEDE;
font-weight: 600;
font-family: 'TASA Orbiter', sans-serif;
}
.woocommerce .woocommerce-ordering {
margin-bottom: 0;
}
html .woocommerce .woocommerce-ordering {
margin-bottom: 0;
margin-left: auto;
min-width: 1px;
} .woocommerce-pagination {
margin-top: 0;
}
.woocommerce-pagination .page-numbers {
justify-content: center;
gap: 10px;
display: flex !important;
flex-wrap: wrap;
border: 0 !important;
}
.woocommerce-pagination .page-numbers li {
border-radius: 6px !important;
border: 1px solid #E69F71 !important;
color: #E69F71;
cursor: pointer;
}
.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
font-weight: 500 !important;
font-size: 16px !important;
padding: 0 !important;
line-height: normal !important;
display: flex !important;
align-items: center;
justify-content: center;
color: #E69F71 !important;
min-width: 30px !important;
min-height: 30px !important;
}
.woocommerce-pagination .page-numbers li a.current,
.woocommerce-pagination .page-numbers li span.current {
color: #fff !important;
background: #E69F71 !important;
}
.woocommerce-pagination .page-numbers li a:hover,
.woocommerce-pagination .page-numbers li span:hover {
background: rgba(230, 159, 113, 0.1) !important;
}
.woocommerce-pagination .page-numbers li:hover {
background: rgba(230, 159, 113, 0.1);
}
.woocommerce-pagination .page-numbers li.active {
color: #fff;
background: #E69F71;
}
@media (max-width: 767px) {
.woocommerce-pagination {
margin-top: 9px;
}
} .woocommerce ul.products li.product .added_to_cart,
.woocommerce ul.products li.product a.added_to_cart,
.woocommerce ul.products li.product .wc-forward,
.woocommerce-page ul.products li.product .added_to_cart,
.woocommerce-page ul.products li.product a.added_to_cart,
.woocommerce-page ul.products li.product .wc-forward,
ul.products li.product .added_to_cart,
ul.products li.product a.added_to_cart,
ul.products li.product .wc-forward {
display: none !important;
}
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
font-size: 16px;
font-weight: 500;
}
@media (max-width: 767px) {
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
display: none;
}
} .celia-ingredients-section {
padding: 80px 0;
background: #fdf8f2;
}
.celia-ingredients-kicker {
text-transform: uppercase;
font-size: 12px;
font-weight: 600;
letter-spacing: 0.12em;
margin-bottom: 8px;
}
.celia-ingredients-heading {
font-size: 32px;
font-weight: 700;
margin-bottom: 40px;
}
.celia-ingredients-list {
display: flex;
gap: 32px;
overflow-x: auto;
padding-bottom: 8px;
}
.celia-ingredient-card {
min-width: 180px;
text-align: center;
}
.celia-ingredient-image-wrap {
width: 160px;
height: 160px;
border-radius: 50%;
background: #f4e6d8;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 12px;
overflow: hidden;
}
.celia-ingredient-image {
width: 100%;
height: 100%;
object-fit: cover;
}
.celia-ingredient-placeholder {
width: 60%;
height: 60%;
border-radius: 50%;
background: #e0d0c0;
display: inline-block;
}
.celia-ingredient-name {
font-size: 14px;
font-weight: 500;
}
@media (max-width: 767px) {
.celia-ingredients-section {
padding: 48px 0;
}
.celia-ingredients-heading {
font-size: 22px;
max-width: 260px;
}
}
.woocommerce-tabs.wc-tabs-wrapper {
display: none;
} .plp-layout {
display: flex;
gap: 60px;
align-items: flex-start;
}
.plp-sidebar-col {
flex-shrink: 0;
width: 275px;
padding-top: 106px;
position: sticky;
top: 20px;
}
.plp-sidebar-col:empty {
display: none;
}
.plp-main {
flex: 1;
min-width: 0;
} .plp-filter-sidebar {
position: sticky;
top: 24px;
background: #fff;
border: 1px solid #eee;
border-radius: 14px;
overflow: hidden;
padding-bottom: 0;
}
.plp-filter-sidebar-inner {
padding: 0;
}
.plp-filter-sidebar-header {
padding: 16px 20px;
border-bottom: 1px solid #eee;
display: flex;
justify-content: space-between;
align-items: center;
background: #fff;
width: 90%;
margin: 0 auto;
}
.plp-filter-sidebar .plp-filter-title {
margin: 0;
font-size: 16px;
font-weight: 600;
display: flex;
align-items: center;
gap: 10px;
}
.plp-filter-sidebar .plp-filter-title-icon {
display: inline-flex;
}
.plp-filter-sidebar-close {
display: none;
background: none;
border: none;
font-size: 24px;
line-height: 1;
cursor: pointer;
padding: 0;
width: 28px;
height: 28px;
align-items: center;
justify-content: center;
color: #666;
transition: color 0.2s;
}
.plp-filter-sidebar-close:hover {
color: #000;
}
.plp-filter-sidebar .plp-filter-form {
padding: 20px;
margin-bottom: 0;
}
.plp-filter-sidebar .plp-filter-tags-list {
margin-bottom: 0;
gap: 10px;
}
.plp-filter-sidebar .plp-filter-tag-item {
padding: 0;
margin-bottom: 0 !important;
}
.plp-filter-sidebar-footer {
padding: 16px 20px;
border-top: 1px solid #eee;
background: #fafafa;
}
.plp-filter-sidebar-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.35);
z-index: 1000;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.3s, visibility 0.3s;
}
.plp-filter-sidebar-overlay.is-active {
opacity: 1;
visibility: visible;
pointer-events: auto;
} @media (min-width: 768px) {
.plp-layout .filter-row .filter-box {
display: none;
}
.plp-layout .filter-row {
justify-content: space-between;
}
.plp-layout .filter-row p,
.plp-layout .filter-row form {
min-width: auto;
}
.plp-layout .filter-row p {
text-align: left;
}
.plp-layout .filter-row form {
text-align: right;
}
} @media (max-width: 767px) {
.plp-filter-sidebar .plp-filter-tags-list {
margin-bottom: 0;
gap: 14px;
}
.plp-layout {
gap: 0;
}
.plp-sidebar-col {
position: fixed;
left: 0;
right: 0;
bottom: 0;
width: 100%;
max-height: 85vh;
max-height: 85dvh;
z-index: 1001;
background: #fff;
transform: translateY(100%);
transition: transform 0.35s ease-out;
overflow-y: auto;
overflow-x: hidden;
box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
border-radius: 20px 20px 0 0;
-webkit-overflow-scrolling: touch;
padding-top: 0;
}
.plp-sidebar-col.is-open {
transform: translateY(0);
}
.plp-filter-sidebar {
position: static;
border: none;
border-radius: 0;
min-height: auto;
}
.plp-filter-sidebar-header {
border-radius: 20px 20px 0 0;
}
.plp-filter-sidebar-close {
display: flex;
}
.plp-filter-sidebar-overlay {
display: block;
}
.plp-main {
width: 100%;
}
} .filter-row {
justify-content: center;
align-items: center;
margin-top: 28px;
margin-bottom: 28px;
}
.filter-row .filter-box,
.filter-row p,
.filter-row form {
min-width: 33.33%;
}
.filter-row p {
text-align: center;
margin-bottom: 0 !important;
}
.filter-row form {
text-align: right;
}
@media (max-width: 767px) {
.filter-row {
margin-bottom: 20px;
margin-top: 20px;
gap: 10px;
}
} .plp-filter-wrapper {
position: relative;
display: inline-block;
}
.plp-filter-buttons {
display: flex;
align-items: center;
gap: 10px;
}
.plp-filter-button {
background: transparent;
border: 1px solid #000;
padding: 10px 20px;
cursor: pointer;
font-size: 14px;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
position: relative;
} .plp-filter-button .filter-count-badge {
background: #000;
color: #fff;
border-radius: 50%;
width: 20px;
height: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 600;
} .plp-filter-dropdown {
position: absolute;
top: 100%;
left: 0;
margin-top: 10px;
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
min-width: 300px;
max-width: 400px;
max-height: 500px;
z-index: 1000;
display: none;
overflow: hidden;
}
.plp-filter-dropdown.active {
display: block;
}
.plp-filter-header {
padding: 15px 20px;
border-bottom: 1px solid #eee;
display: flex;
justify-content: space-between;
align-items: center;
background: #f9f9f9;
}
.plp-filter-title {
margin: 0;
font-size: 16px;
font-weight: 600;
}
.plp-filter-close {
background: none;
border: none;
font-size: 24px;
line-height: 1;
cursor: pointer;
padding: 0;
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
color: #666;
transition: color 0.3s ease;
}
.plp-filter-close:hover {
color: #000;
}
.plp-filter-content {
padding: 20px;
max-height: 400px;
overflow-y: auto;
}
.plp-filter-tags-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 20px;
}
.plp-filter-tag-item {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
padding: 8px;
text-align: left;
border-radius: 4px;
transition: background 0.2s ease;
}
.plp-filter-tag-item:hover {
background: #f5f5f5;
}
.plp-filter-checkbox {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 22px;
height: 22px;
min-width: 22px;
cursor: pointer;
border: 2px solid #E69F71;
border-radius: 4px;
background-color: #fff;
position: relative;
transition: all 0.2s ease;
}
.plp-filter-checkbox:checked {
background-color: #E69F71;
border-color: #E69F71;
}
.plp-filter-checkbox:checked::after {
content: '';
position: absolute;
left: 6px;
top: 2px;
width: 6px;
height: 12px;
border: solid #fff;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.plp-filter-tag-name {
flex: 1;
font-size: 14px;
color: #333;
transition: color 0.2s ease;
}
.plp-filter-checkbox:checked + .plp-filter-tag-name {
color: #E69F71;
}
.plp-filter-tag-count {
font-size: 12px;
color: #999;
display: none;
}
.plp-filter-clear {
padding: 10px 20px;
border: 1px solid #000;
background: transparent;
color: #000;
cursor: pointer;
font-size: 14px;
font-weight: 500;
transition: all 0.3s ease;
border-radius: 4px;
white-space: nowrap;
}
.plp-filter-clear:hover {
background: #f5f5f5;
}
.plp-filter-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
z-index: 999;
display: none;
}
.plp-filter-overlay.active {
display: block;
}
.filter-box .plp-filter-wrapper .plp-filter-button {
border: 1px solid #DEDEDE;
border-radius: 50px;
min-width: 124px;
text-align: center;
justify-content: center;
} .plp-sec .full-banner .banner-container {
border-radius: 30px;
padding: 85px 60px 90px;
background-image: var(--desktopImg);
}
.plp-sec .full-banner .btn-theme {
margin-top: 30px;
}
.plp-sec .full-banner .banner-text .h3 {
margin-bottom: 23px;
}
.plp-sec .full-banner {
padding-bottom: 0;
}
@media(max-width: 767px) {
.plp-sec .full-banner .banner-container{
background-position: right;
}
}
@media (width: 768px) {
.plp-sec .full-banner .banner-container { background: var(--mobi) no-repeat top center #EEE1E2;
}
}
@media (max-width: 767px) {
.plp-filter-dropdown {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
max-width: 400px;
max-height: 80vh;
margin-top: 0;
}
.plp-filter-content {
max-height: calc(80vh - 120px);
}
body.woocommerce ul.products li.product .woocommerce-loop-product__link,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__link {
margin-bottom: 4px;
}
.plp-sec .full-banner .banner-container {
padding: 85px 10px 23px;
aspect-ratio: auto;
background: var(--mobi) no-repeat top center #EEE1E2;
background-size: auto 302px !important;
border-radius: 10px;
min-height: 550px;
}
.plp-sec .full-banner {
padding: 36px 0 0px;
}
.plp-sec .full-banner .banner-text .h3{margin-bottom: 15px;}
.plp-sec .full-banner .btn-theme{margin-top: 15px;}
.filter-box .plp-filter-wrapper .plp-filter-button {
font-size: 16px;
}
.woocommerce .woocommerce-ordering select {
width: 174px;
}
}.woocommerce-checkout #payment div.payment_box .sv-wc-payment-gateway-payment-form-manage-payment-methods,#add_payment_method .sv-wc-payment-gateway-payment-form-manage-payment-methods{display:block;margin:1em 0;text-align:center}.woocommerce-checkout #payment div.payment_box .sv-wc-payment-gateway-payment-form-saved-payment-method,#add_payment_method .sv-wc-payment-gateway-payment-form-saved-payment-method{display:inline-block;margin-bottom:.5em}.woocommerce-checkout #payment div.payment_box .sv-wc-payment-gateway-payment-form-saved-payment-method .nickname,#add_payment_method .sv-wc-payment-gateway-payment-form-saved-payment-method .nickname{margin-right:.5em}.woocommerce-checkout #payment div.payment_box .sv-wc-payment-gateway-payment-form-saved-payment-method img,#add_payment_method .sv-wc-payment-gateway-payment-form-saved-payment-method img{float:none;width:30px;height:20px;display:inline-block;margin-right:.5em;vertical-align:middle}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type=tel],.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type=text],.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-echeck-form-input[type=tel],.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-echeck-form-input[type=text],.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-form-nickname,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type=tel],#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type=text],#add_payment_method input.js-sv-wc-payment-gateway-echeck-form-input[type=tel],#add_payment_method input.js-sv-wc-payment-gateway-echeck-form-input[type=text],#add_payment_method input.js-sv-wc-payment-gateway-form-nickname{font-size:1.5em;padding:8px}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type=tel]:focus,.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type=text]:focus,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type=tel]:focus,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type=text]:focus{box-shadow:0 0 .1875em #3498db}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type=tel].identified,.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type=text].identified,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type=tel].identified,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type=text].identified{border-color:#69bf29}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type=tel].identified:focus,.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-input[type=text].identified:focus,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type=tel].identified:focus,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-input[type=text].identified:focus{box-shadow:0 0 .1875em #69bf29}@media screen and (min-width: 330px){.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-cc-plain.svg);background-repeat:no-repeat;background-position:right 10px center;background-size:50px 31px}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number.visa,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number.visa{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-visa.svg)}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number.mastercard,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number.mastercard{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-mastercard.svg)}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number.dinersclub,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number.dinersclub{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-dinersclub.svg)}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number.maestro,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number.maestro{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-maestro.svg)}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number.jcb,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number.jcb{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-jcb.svg)}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number.amex,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number.amex{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-amex.svg)}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number.discover,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number.discover{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-discover.svg)}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number.visaelectron,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number.visaelectron{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-visa-electron.svg)}.woocommerce-checkout #payment div.payment_box input.js-sv-wc-payment-gateway-credit-card-form-account-number.invalid-card-type,#add_payment_method input.js-sv-wc-payment-gateway-credit-card-form-account-number.invalid-card-type{background-image:url(//www.celia-rx.com/wp-content/plugins/woocommerce-gateway-authorize-net-cim/vendor/skyverge/wc-plugin-framework/woocommerce/payment-gateway/assets/images/card-cc-invalid.svg)}}.woocommerce-checkout #payment div.payment_box .js-sv-wc-payment-gateway-echeck-form-check-hint,#add_payment_method .js-sv-wc-payment-gateway-echeck-form-check-hint{margin:0 0 3px 2px;cursor:pointer}.woocommerce-checkout #payment div.payment_box .js-sv-wc-payment-gateway-echeck-form-sample-check,#add_payment_method .js-sv-wc-payment-gateway-echeck-form-sample-check{margin:1em}.woocommerce-checkout #payment div.payment_box .js-sv-wc-payment-gateway-echeck-form-sample-check img,#add_payment_method .js-sv-wc-payment-gateway-echeck-form-sample-check img{min-height:135px}ul.payment_methods li div.sv-wc-payment-gateway-card-icons{vertical-align:middle;display:flex;flex-wrap:wrap;margin-left:auto;gap:5px}ul.payment_methods li div.sv-wc-payment-gateway-card-icons img{float:none !important}.rx-product-card-wrapper {
position: relative;
width: 100%;
height: 100%;
perspective: 1000px;
z-index: 1;
display: block;
}
.rx-product-card-wrapper.rx-has-subscription {
min-height: 400px;
} .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
position: relative;
overflow: hidden;
}
.woocommerce ul.products li.product .rx-product-card-wrapper,
.woocommerce-page ul.products li.product .rx-product-card-wrapper {
width: 100%;
height: 100%;
box-sizing: border-box;padding-bottom: 25px;
} .rx-showcase-card .rx-product-card-wrapper {
width: 100%;
height: 100%;
box-sizing: border-box;
} .rx-product-card-wrapper .rx-flip-card-front {
position: relative;
width: 100%;
height: 100%;
}
.rx-product-card-wrapper .rx-flip-card-front,
.rx-product-card-wrapper .rx-flip-card-back {
position: relative;
width: 100%;
height: 100%;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
transition: transform 0.6s;
transform-style: preserve-3d;
}
.rx-product-card-wrapper .rx-flip-card-back {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: rotateY(180deg);
background: #ffffff;
padding: 20px;
padding-top: 48px;
padding-right: 20px;
border-radius: 8px;
box-shadow: none;
overflow-y: auto;
overflow-x: hidden;
z-index: 10;
box-sizing: border-box;
}
.rx-product-card-wrapper.rx-flipped .rx-flip-card-front {
transform: rotateY(180deg);
}
.rx-product-card-wrapper.rx-flipped .rx-flip-card-back {
transform: rotateY(0deg);
} .rx-flip-card-close {
position: absolute;
top: 12px;
right: 12px;
width: 32px;
height: 32px;
border: none;
background: transparent;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
padding: 0;
transition: opacity 0.2s ease;
}
.rx-flip-card-close:hover {
opacity: 0.7;
}
.rx-flip-card-close svg {
width: 20px;
height: 20px;
color: #000000;
} .rx-flip-card-back-content {
display: flex;
flex-direction: column;
gap: 20px;
padding-top: 0;
padding-right: 0;
width: 100%;
box-sizing: border-box;
} .rx-payment-plan-section {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 0;
position: relative;
}
.rx-payment-plan-title {
font-size: 12px !important;
font-weight: 500;
color: #333;
text-transform: uppercase;
letter-spacing: 0.05em;
margin: 0;
flex-shrink: 0;
}
.rx-payment-plan-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: -13px;
} .rx-subscription-options {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px;
}
.rx-subscription-option {
margin: 0;
padding: 0;
}
body .woocommerce-page label {
margin-bottom: 0.3em;
}
.rx-subscription-label {
display: flex;
cursor: pointer;
padding: 11px 9px;
border: 1px solid #e3E3E3;
border-radius: 8px;
transition: all 0.2s ease;
background: #ffffff;
}
.rx-subscription-label:hover {
border-color: #d1d5db;
background: #f9fafb;
}
.rx-subscription-label input[type="radio"] {
display: inline-block;
margin-right: 8px;
width: 18px;
height: 18px;
cursor: pointer;
accent-color: #EAB67A;
vertical-align: middle;
flex-shrink: 0;
}
.rx-subscription-label input[type="radio"]:checked + .rx-subscription-option-content {
color: #000000;
flex-grow: 1;
}
.rx-subscription-label.checked {
border-color: #E69F71;
background: #FFFCF6;
}
.rx-subscription-option-content {
display: flex;
flex-direction: column;
gap: 8px;
}
.rx-subscription-option-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
}
.rx-subscription-option-title {
font-size: 12px;
font-weight: 500;
color: #333333;
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.rx-popular-badge {
display: inline-block;
background: #E69F71;
color: #ffffff;
font-size: 10px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.07em;
padding: 4px 8px;
border-radius: 50px;
margin-left: 8px;
}
.rx-subscription-option-price {
font-size: 14px;
font-weight: 600;
color: #333333;
}
.rx-subscription-option-price-wrapper {
display: flex;
align-items: center;
gap: 8px;
margin-top: 4px;
}
.rx-subscription-regular-price {
font-size: 14px;
color: #999999;
text-decoration: line-through;
}
.rx-subscription-sale-price {
font-size: 18px;
font-weight: 600;
color: #333333;
}
.rx-subscription-period-selector {
margin-top: 12px;
padding-top: 12px;
border-top: 1px solid #e5e7eb;
}
.rx-subscription-period-label {
font-size: 12px;
font-weight: 500;
color: #666666;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.rx-subscription-period-dropdown {
width: 100%;
padding: 10px 12px;
border: 1px solid #e5e7eb;
border-radius: 6px;
font-size: 14px;
background: #ffffff;
color: #333333;
cursor: pointer;
transition: border-color 0.2s ease;
}
.rx-subscription-period-dropdown:hover {
border-color: #d1d5db;
}
.rx-subscription-period-dropdown:focus {
outline: none;
border-color: #000000;
} .rx-flip-card-qty-wrapper {
flex-shrink: 0;
}
.rx-flip-card-qty-controls {
display: flex;
align-items: center;
border: 1px solid #e5e7eb;
border-radius: 50px;
overflow: hidden;
background: #ffffff;
}
.rx-flip-card-qty-btn {
width: 36px;
height: 36px;
border: none;
background: #ffffff;
color: #333333;
font-size: 18px;
font-weight: 600;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s ease;
padding: 0;
flex-shrink: 0;
}
.rx-flip-card-qty-btn:hover {
background: #f9fafb;
}
.rx-flip-card-qty-btn:active {
background: #e5e7eb;
}
.rx-flip-card-qty-minus {
border-right: 1px solid #e5e7eb;
}
.rx-flip-card-qty-plus {
border-left: 1px solid #e5e7eb;
}
.rx-flip-card-qty-input {
width: 38px;
text-align: center;
border: none !important;
border-left: 1px solid #e5e7eb !important;
border-right: 1px solid #e5e7eb !important;
border-radius: 0;
padding: 5px 8px;
font-size: 14px;
font-weight: 500;
background: #ffffff;
appearance: textfield;
-moz-appearance: textfield;
margin: 0;
box-shadow: none;
}
.rx-flip-card-qty-input::-webkit-outer-spin-button,
.rx-flip-card-qty-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
} .rx-flip-card-actions {
display: flex;
flex-direction: column;
gap: 10px;
width: 100%;
margin-top: 8px;
}
.rx-flip-card-add-to-cart,
.rx-flip-card-view-details {
width: 100%;
padding: 8px 20px;
font-size: 14px;
font-weight: 600;
border-radius: 50px;
text-align: center;
text-decoration: none;
display: block;
transition: all 0.2s ease;
}
.rx-flip-card-add-to-cart {
background: linear-gradient(90deg, #FDCEBB -12.71%, #FFEDBF 100%);
color: #333;
border: 0px solid transparent;
}
.rx-flip-card-add-to-cart:hover {
background-color: #333333;
border-color: #333333;
}
.rx-flip-card-add-to-cart:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.rx-flip-card-view-details {
background-color: transparent;
color: #728486;
border: 1px solid #728486;
border-radius: 50px;
}
.rx-flip-card-view-details:hover {
background-color: #f9fafb;
} .rx-buy-now-button {
display: inline-block;
padding: 10px 20px;
background-color: #000;
color: #fff;
text-decoration: none;
border-radius: 4px;
font-weight: 600;
text-align: center;
margin-top: 10px;
border: none;
cursor: pointer;
width: 100%;
transition: background-color 0.2s ease;
}
.rx-buy-now-button:hover {
background-color: #333333;
} .rx-loader {
display: inline-block;
width: 16px;
height: 16px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: #ffffff;
animation: rx-spin 0.8s linear infinite;
margin-right: 8px;
vertical-align: middle;
}
@keyframes rx-spin {
to {
transform: rotate(360deg);
}
} .rx-cart-message {
position: fixed;
top: 20px;
right: 20px;
background: #000000;
color: #ffffff;
padding: 16px 24px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
z-index: 10000;
font-size: 14px;
font-weight: 500;
animation: rx-slide-in 0.3s ease-out;
max-width: 300px;
opacity: 0;
transform: translateX(100%);
transition: opacity 0.3s ease, transform 0.3s ease;
}
.rx-cart-message.rx-show {
opacity: 1;
transform: translateX(0);
}
.rx-cart-message.error,
.rx-cart-message.rx-cart-message-error {
background: #dc2626;
}
@keyframes rx-slide-in {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
} @media (max-width: 768px) {
.rx-product-card-wrapper.rx-has-subscription {
min-height: 1px;
}
.rx-flip-card-back {
padding: 16px;
}
.rx-subscription-option-header {
flex-direction: column;
align-items: flex-start;
}
.rx-subscription-option-price {
font-size: 20px;
}
.rx-payment-plan-header { align-items: flex-start;
}
}
@media (max-width:767px) {
.rx-subscription-option-content{    max-width: calc(100% - 26px);}
.rx-subscription-option-price-wrapper{flex-direction: column;}
.rx-flip-card-add-to-cart, .rx-flip-card-view-details{font-size: 12px;}
}
@media (max-width: 580px) { .rx-showcase-card{
padding: 20px 0 !important;
}
.rx-subscription-option-header {
flex-direction: row !important;
}
.rx-subscription-option-content {
flex-direction: row !important;
}
.rx-flip-card-back-content{
gap: 0 !important;
}
.rx-product-card-wrapper.rx-has-subscription {
min-height: none !important;
}
.rx-showcase-image-wrapper img {
min-height: auto !important; 
max-height: none !important ; 
height: auto !important;
}
body.woocommerce ul.products, body.woocommerce-page ul.products {
grid-template-columns: repeat(1, 1fr);
gap: 12px;
}
.rx-subscription-options{
gap: 0 !important;
margin-bottom: 0 !important;
}
.woocommerce-page label {
margin-bottom: -0.3em !important;
}
}.main-header {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1029;
background: #fff;
min-height: 60px;
max-height: 89px;
}
.search-item {
position: relative;
display: flex;
align-items: center;
}
.search-toggle-btn {
background: none;
border: none;
cursor: pointer;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
}
.header-search-form {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
display: flex;
align-items: center;
gap: 0;
background: #ffffff;
border: 1px solid #e5e7eb;
border-radius: 6px;
padding: 0;
min-width: 300px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
z-index: 1000;
overflow: hidden;
}
.header-search-input {
flex: 1;
border: none;
outline: none;
font-size: 14px;
padding: 10px 16px;
background: transparent;
min-width: 0;
}
.header-search-input::placeholder {
color: #9ca3af;
}
.header-search-submit {
background: none;
border: none;
border-left: 1px solid #e5e7eb;
cursor: pointer;
padding: 10px 14px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: #333;
transition: background-color 0.2s ease;
}
.header-search-submit:hover {
background-color: #f9fafb;
}
.header-search-submit img {
width: 18px;
height: 18px;
} .main-header .navigation ul li a:not(.btn-theme) {
position: relative;
}
.main-header .navigation ul li a:not(.btn-theme)::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary-gradient, linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%));
transition: width 0.3s ease;
}
.main-header .navigation ul li a:not(.btn-theme):hover::after {
width: 100%;
}
.main-header .navigation ul li a:not(.btn-theme):hover {
color: var(--primary-color, #E28C69);
} .main-header .navigation ul li.current-menu-item a:not(.btn-theme),
.main-header .navigation ul li.current_page_item a:not(.btn-theme),
.main-header .navigation ul li a:not(.btn-theme)[aria-current="page"] {
color: var(--primary-color, #E28C69);
}
.main-header .navigation ul li.current-menu-item a:not(.btn-theme)::after,
.main-header .navigation ul li.current_page_item a:not(.btn-theme)::after,
.main-header .navigation ul li a:not(.btn-theme)[aria-current="page"]::after {
width: 100%;
} .banner .text-box {
padding: 181px 0 108px;
}
.banner .text-box .h2,.banner .text-box h1 {
font-weight: 700;
font-size: 42px;
margin-bottom: 9px;
letter-spacing: 0;;
}
.banner .text-box p {
max-width: 550px;
margin-bottom: 0;
letter-spacing: 0.3px;
line-height: 1.6;
letter-spacing: 0.02em;
}
.banner.plp .text-box {
padding: 98px 0;
}
@media (min-width: 768px) {
.banner {
border-radius: 0 0 30px 30px;
background: var(--bg-desktop-image);
background-position: right;
background-repeat: no-repeat;
background-size: cover;
height: 500px;
}
.banner.plp {
height: 355px;
}
}
@media (max-width: 767px) {
.banner {
background-color: #DBCDD3;
border-radius: 0 0 30px 30px;
}
.banner .banner-img {
background: var(--bg-mobile-image);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-radius: 0;
height: 299px;
}
}  
.banner .flex {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
margin-left: -5px;
margin-left: 0;
}
@media (max-width: 767px) {
.banner .flex {
margin-left: 0px;
}
}
@media (max-width: 767px) {
.banner .text-box, .banner.plp .text-box {
padding-top: 15px;
padding-bottom: 17px;
}
.banner .text-box .h2,.banner .text-box  h1 {
font-size: 24px;
margin-bottom: 4px;
}
.banner .text-box p {
letter-spacing: 0.3px;
line-height: 1.4;
}
}
.banner figure {
max-width: 573px;
position: absolute;
right: -27px;
top: -16px;
}
@media (max-width: 800px){
.banner .text-box p{max-width: 50%;}
.banner figure{max-width: 390px;right: -27px;top: 36px;}
}
@media (max-width: 767px) {
.banner figure {
position: static;
width: 100%;
margin-top: -32px;
}
.banner figure img {
transform: translateX(43px);
}
.banner .text-box p{max-width: 100%;font-size: 14px;line-height: 160%;letter-spacing: 0.02em;}
}
.affiliate-how-it-works-section {
max-width: 1440px;
margin: 0 auto;
}
.affiliate-heading {
margin-top: 71px;
margin-bottom: 84px;
text-align: center;
}
.affiliate-section-title {
font-size: 42px;
color: #333333;
font-weight: 700;
margin-bottom: 12px;
}
.affiliate-section-description {
color: #333333;
font-weight: 400;
font-size: 16px;
}
.affiliate-steps-grid :nth-child(even) {
flex-direction: row-reverse;
}
.affiliate-steps-grid .affiliate-step-item{
display: flex;
align-items: center;
line-height: 1;
}
.affiliate-step-image, .affiliate-step-content-wrapper {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
max-width: 50%;
}
.affiliate-step-content-wrapper {
padding: 20px;
}
.affiliate-step-image img {
max-width: 100%;
}
.affiliate-step-content {
width: 459px;
max-width: 100%;
}
.affiliate-step-number {
color: #798377;
font-weight: 600;
font-size: 30px;
margin-bottom: 0px;
}
.affiliate-step-title {
font-weight: 600;
font-size: 42px;
margin-bottom: 7px;
line-height: 120%;
letter-spacing: 2px;
}
.affiliate-step-description {
color: #333333;
font-size: 16px;
font-weight: 400;
line-height: 160%;
}
.affiliate-cta-section {
margin-top: 90px;
margin-bottom: 90px;
}
.affiliate-cta-wrapper {
height: 500px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 30px;
background-size: cover;
background-blend-mode: multiply;
position: relative;
overflow: hidden;
}
.affiliate-cta-wrapper.has-video {
background: transparent;
}
.affiliate-cta-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}
.affiliate-cta-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.55);
z-index: 1;
}
.affiliate-cta-content {
max-width: 352px;
display: flex;
justify-content: center;
text-align: center;
flex-direction: column;
align-items: center;
position: relative;
z-index: 2;
}
.affiliate-cta-title {
color: #ffffff;
margin-bottom: 19px;
font-size: 42px;
font-weight: 700;
letter-spacing: 0;
line-height: 100%;
}
.affiliate-cta-button {
width: 101px;
height: 40px;
padding: 10px;
}
@media (max-width: 768px) {
.affiliate-step-item {
flex-direction: column;
}
.affiliate-step-image {
max-width: 100%;
}
.affiliate-steps-grid :nth-child(even) {
flex-direction: column;
}
.affiliate-step-content-wrapper {
max-width: 100%;
padding-top: 28px;
padding-bottom: 33px;
}
.affiliate-step-number {
margin-bottom: 11px;
}
.affiliate-step-title {
margin-bottom: 17px;
}
.affiliate-cta-wrapper {
border-radius: 0;
}
.affiliate-cta-section .container {
padding: 0 !important;
}
.affiliate-cta-section {
margin: 0;
}
}
@media (max-width: 1025px) {
.affiliate-heading {
margin-top: 30px;
margin-bottom: 33px;
}
.affiliate-step-number {
font-size: 20px;
}
.affiliate-section-title {
font-size: 24px;
}
.affiliate-section-description {
font-size: 14px;
}
.affiliate-step-title {
font-size: 24px;
}
.affiliate-step-description {
font-size: 14px;
}
.affiliate-cta-title {
font-size: 24px;
margin-bottom: 20px;
}
}  .rx-hero-banner {
width: 100%;
overflow: hidden;
background-color: #fff;
} .rx-hero-slider {
border-radius: 0 0 40px 40px;
overflow: hidden;
} .rx-hero-slide {
width: 100%;
min-height: 615px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-color: #e8e0d8;
display: flex !important;
align-items: stretch;
} .rx-hero-mobile-img {
display: none !important;
} .rx-hero-content {
width: 45%;
margin-left: auto;
display: flex;
align-items: center;
padding: 57px;
padding-top: 48px;
box-sizing: border-box;
background: linear-gradient(to left, rgba(245, 239, 232, 0.95) 0%, rgba(245, 239, 232, 0.85) 70%, rgba(245, 239, 232, 0) 100%);
}
.rx-hero-content-inner {
text-align: left;
min-height: 162px;
} .rx-hero-logo-img {
min-width: 326px;
max-width: 326px;
width: 100%;
height: auto;
margin: 0 0 26px 0;
} .rx-hero-tagline {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-weight: 400;
font-style: normal;
font-size: 27px;
line-height: 140%;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #333;
margin: 0;
text-align: left;
margin-bottom: 30px;
} .rx-hero-slider .slick-prev,
.rx-hero-slider .slick-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.9);
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
display:flex;
align-items: center;
justify-content: center;
}
.rx-hero-slider .slick-prev:hover,
.rx-hero-slider .slick-next:hover {
background-color: #ffffff;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.rx-hero-slider .slick-prev {
left: 69px;
}
.rx-hero-slider .slick-next {
right: 69px;
}
.rx-hero-slider .slick-prev:before,
.rx-hero-slider .slick-next:before {
display: none;
}
.rx-hero-slider .slick-prev img,
.rx-hero-slider .slick-next img {
width: 26px;
height: 13px;
} .rx-hero-slider .slick-next img {
transform: rotate(180deg);
} .rx-hero-slider .slick-dots {
position: absolute;
bottom: 31px;
left: 50%;
transform: translateX(-54%);
display: flex !important;
gap: 10px;
z-index: 10;
padding: 0;
margin: 0;
list-style: none;
width: auto;
}
.slick-dotted.slick-slider {
margin-bottom: 0px !important;
}
.rx-hero-slider .slick-dots li {
width: auto;
height: auto;
margin: 0;
padding: 0;
}
.rx-hero-slider .slick-dots li button {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.6);
border: none;
cursor: pointer;
transition: all 0.3s ease;
padding: 0;
}
.rx-hero-slider .slick-dots li button:before {
display: none;
}
.rx-hero-slider .slick-dots li button:hover {
background-color: rgba(255, 255, 255, 0.8);
}
.rx-hero-slider .slick-dots li.slick-active button {
background: linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%);
}  .rx-about-section {
padding: 90px 0 120px 0;
background-color: #ffffff;
}
.content-wrapper {
display: flex;
margin: 0 auto;
gap: 170px;
}
.rx-about-image-col {
flex: 0 0 40%;
max-width: 40%;
position: relative;
aspect-ratio: 4 / 4;
}
.rx-about-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .rx-about-product-image {
position: absolute;
right: -52px;
bottom: -24px;
object-fit: contain;
z-index: 2;
max-width: 105px;
} .rx-about-content-col {
flex: 1;
max-width: 55%;
}
.rx-about-subtitle {
font-family: 'TASA Orbiter Regular', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 20px;
font-weight: 400;
color: #333;
margin: 10px 0 16px 0;
letter-spacing: 0;
}
.rx-about-subtitle sup {
font-size: 10px;
vertical-align: super;
}
.rx-about-title {
color: #333;
font-family: TASA Orbiter;
font-weight: 700;
font-size: 42px;
line-height: 110.00000000000001%;
letter-spacing: normal;
margin-bottom: 20px;
}
.rx-about-content {
margin-bottom: 35px;
}
.rx-about-content p {
font-family: Inter Tight;
font-weight: 400;
font-size: 16px;
line-height: 160%;
letter-spacing: 0.28px;
margin-bottom: 10px;
}
.rx-about-content p:last-child {
margin-bottom: 0;
}
.rx-about-btn {
display: inline-block;
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
font-weight: 600;
line-height: 90%;
letter-spacing: 0.02em;
color: #333;
background: linear-gradient(90deg, #FDCEBB -12.71%, #FFEDBF 100%);
padding: 15px 20px;
border-radius: 30px;
transition: all 0.3s ease;
border: none;
height: 40px;
}
.rx-about-btn:hover {
background: linear-gradient(90deg, #f5b9a3 -12.71%, #f5e0a3 100%);
color: #333;
} .rx-programs-section {
background: linear-gradient(180deg, #FFF5E0 0%, #FFEFE9 100%);
position: relative;
overflow: hidden;
}
.rx-programs-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(//www.celia-rx.com/wp-content/themes/rx-child/assets/images/program-bg.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: 0;
pointer-events: none;
display: none; }
.rx-programs-container {
position: relative;
z-index: 1;
} .rx-programs-layout {
display: flex;
align-items: stretch;
position: relative;
} .rx-programs-left {
flex: 0 0 64%;
max-width: 64%;
display: flex;
flex-direction: column;
padding: 90px 0;
padding-left: 70px;
position: relative;
z-index: 2;
padding-bottom: 77px;
} .rx-programs-right {
flex: 0 0 36%;
max-width: 36%;
position: relative;
min-height: 500px;
z-index: 1;
}
.rx-programs-feature-image {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
}
.rx-programs-feature-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #e8e0d8 0%, #d4ccc0 100%);
border-radius: 12px;
position: absolute;
top: 0;
left: 0;
} .rx-programs-header {
margin-bottom: 32px;
}
.rx-programs-label {
display: block;
font-family: 'TASA Orbiter Regular', -apple-system, BlinkMacSystemFont, sans-serif;
color: #333;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 12px;
font-weight: 500;
font-size: 20px;
line-height: 100%;
}
.rx-programs-title {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
color: #333;
margin: 0;
letter-spacing: -0.5px;
font-weight: 700;
font-size: 42px;
line-height: 110.00000000000001%;
} .rx-programs-slider-wrapper {
position: relative;
margin-bottom: 22px;
flex-grow: 1; margin-right: -150px;
max-width: 920px;
} .rx-programs-slider {
margin: 0 -10px;
}
.rx-programs-slider .slick-list {
overflow: hidden;
padding: 10px 0;
}
.rx-programs-slider .slick-track {
display: flex;
align-items: stretch;
}
.rx-program-slide {
padding: 0 10px;
height: auto;
} .rx-program-card {
display: block;
text-decoration: none;
background-color: transparent;
transition: transform 0.3s ease;
position: relative;
}
.rx-program-card:hover {
transform: translateY(-4px);
}
.rx-program-image-wrapper {
position: relative;
width: 100%;
aspect-ratio: 3 / 4;
overflow: hidden;
background-color: #e8e0d8;
}
.rx-program-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.rx-program-card:hover .rx-program-image {
transform: scale(1.05);
}
.rx-program-image-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #e8e0d8 0%, #d4ccc0 100%);
} .rx-program-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: #ffffff;
padding: 15px 15px;
margin-right: 25px;
max-width: max-content;
}
.rx-program-title {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 20px;
font-weight: 500;
color: #1a1a1a;
margin: 0 0 4px 0;
line-height: 1.3;
}
.rx-program-description {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
font-weight: 400;
color: #6b6b6b;
margin: 0;
line-height: 1.4;
} .rx-programs-slider .slick-prev,
.rx-programs-slider .slick-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #ffffff;
border: 1px solid #e0e0e0;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.rx-programs-slider .slick-prev:hover,
.rx-programs-slider .slick-next:hover {
background-color: #f5f5f5;
border-color: #ccc;
}
.rx-programs-slider .slick-prev:before,
.rx-programs-slider .slick-next:before {
content: '';
display: block;
width: 24px;
height: 12px;
background-image: url(//www.celia-rx.com/wp-content/themes/rx-child/assets/images/icons/Vector.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.rx-programs-slider .slick-prev:before {
transform: none;
}
.rx-programs-slider .slick-next:before {
transform: scaleX(-1);
}
.rx-programs-slider .slick-prev {
left: -22px;
}
.rx-programs-slider .slick-next {
right: -22px;
}
.rx-programs-slider .slick-disabled {
opacity: 0.4;
cursor: not-allowed;
} .rx-programs-footer {
text-align: left;
margin-top: auto;
}
.rx-programs-btn {
display: inline-block;
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
font-weight: 500;
color: #1a1a1a;
background: linear-gradient(90deg, #FDCEBB -12.71%, #FFEDBF 100%);
padding: 14px 28px;
border: none;
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
}
.rx-programs-btn:hover {
background-color: #e8c89a;
color: #1a1a1a;
} .rx-showcase-section {
padding: 90px 0;
background: #f8f8f8;
} .rx-showcase-header {
text-align: center;
margin-bottom: 40px;
margin-left: auto;
margin-right: auto;
}
.rx-showcase-title {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 42px;
font-weight: 700;
color: #333;
line-height: 1.2;
margin: 0 0 16px 0;
}
.rx-showcase-description {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
font-weight: 400;
color: #333;
line-height: 1.6;
margin: 0;
} .rx-showcase-slider-wrapper {
position: relative;
margin-bottom: 30px;
}
.rx-showcase-slider {
margin: 0 -10px;
}
.rx-showcase-slider .slick-list {
overflow: hidden;
padding: 10px 0;
padding-bottom: 37px;
}
.rx-showcase-slider .slick-track {
display: flex;
align-items: stretch;
}
.rx-showcase-slide {
padding: 0 10px;
height: auto;
} .rx-showcase-card {
background-color: #FCF5EE;
border-radius: 14px;
overflow: hidden;
border: 1px solid #FCF5EE;
transition: box-shadow 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
padding: 20px;
}
.rx-showcase-card:hover {
background-color: #fff;
border: 1px solid #333;
transition: box-shadow 0.3s ease;
} .rx-showcase-image-wrapper {
position: relative;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 7px;
}
.rx-showcase-image-wrapper::before {
content: "";
position: absolute;
border-radius: 50%;
background: #F6EADC;
width: 170px;
height: 170px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 0;
}
.rx-showcase-image-link {
display: block;
text-decoration: none;
color: inherit;
}
.rx-showcase-image {
position: relative;
z-index: 1;
max-width: 100%;
max-height: 229px;
height: 229px;
width: 240px;
max-width: 200px;
object-fit: contain;
margin: 0 auto;
display: block;
}
.rx-showcase-image-placeholder {
width: 60%;
height: 60%;
background: rgba(0, 0, 0, 0.05);
border-radius: 50%;
} .rx-showcase-content {
text-align: center;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.rx-showcase-product-title {
font-family:'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 18px;
font-weight: 600;
color: #333;
margin: 0 0 8px 0;
line-height: 1.3;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.rx-showcase-product-title-link {
text-decoration: none;
color: inherit;
}
.rx-showcase-product-title-link:hover {
color: inherit;
text-decoration: underline;
}
.rx-showcase-product-description {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
font-weight: 400;
color: #333;
margin: 0 0 5px 0;
line-height: 1.4;
flex-grow: 1; display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
}
.rx-showcase-product-price {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 18px;
font-weight: 600;
color: #333;
margin: 0 0 16px 0;
}
.rx-showcase-product-btn {
display: inline-block;
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
font-weight: 500;
color: #333;
background: linear-gradient(90deg, #FDCEBB -12.71%, #FFEDBF 100%);
padding: 12px 24px;
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
max-width: max-content;
margin: 0 auto;
}
.rx-showcase-out-of-stock {
display: inline-block;
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
font-weight: 500;
color: #666;
background-color: #e0e0e0;
padding: 12px 24px;
border-radius: 30px;
text-decoration: none;
max-width: max-content;
margin: 0 auto;
pointer-events: none;
opacity: 0.6;
cursor: not-allowed;
} .rx-showcase-slider .slick-prev,
.rx-showcase-slider .slick-next {
position: absolute;
top: 40%;
transform: translateY(-50%);
z-index: 10;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #ffffff;
border: 1px solid #e0e0e0;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.rx-showcase-slider .slick-prev:hover,
.rx-showcase-slider .slick-next:hover {
background-color: #f5f5f5;
border-color: #ccc;
}
.rx-showcase-slider .slick-prev:before,
.rx-showcase-slider .slick-next:before {
content: '';
display: block;
width: 20px;
height: 12px;
background-image: url(//www.celia-rx.com/wp-content/themes/rx-child/assets/images/icons/Vector.svg);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}
.rx-showcase-slider .slick-prev:before {
transform: none;
}
.rx-showcase-slider .slick-next:before {
transform: scaleX(-1);
}
.rx-showcase-slider .slick-prev {
left: -25px;
}
.rx-showcase-slider .slick-next {
right: -25px;
}
.rx-showcase-slider .slick-disabled {
opacity: 0.4;
cursor: not-allowed;
} .rx-showcase-slider .slick-dots {
display: flex;
justify-content: center;
align-items: center;
list-style: none;
padding: 0;
margin: 20px 0 0 0;
gap: 8px;
}
.rx-showcase-slider .slick-dots li {
margin: 0;
}
.rx-showcase-slider .slick-dots li button {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #d4d4d4;
border: none;
padding: 0;
font-size: 0;
cursor: pointer;
transition: all 0.3s ease;
}
.rx-showcase-slider .slick-dots li.slick-active button {
background: linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%);
width: 12px;
height: 12px;
}
.rx-showcase-slider .slick-dots li button::before{
display: none;
} .rx-showcase-footer {
text-align: center;
padding-top: 15px;
}
.rx-showcase-btn {
display: inline-block;
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
font-weight: 500;
color: #ffffff;
background-color: #798377;
padding: 16px 50px;
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
} .rx-cta-wrapper {
padding: 77px 0;
background-color: #ffffff;
}
.rx-cta-banner {
position: relative;
width: 100%;
min-height: 700px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-color: #8b9298; display: flex;
align-items: center;
justify-content: center;
border-radius: 30px;
overflow: hidden;
}
.rx-cta-bg-media {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.rx-cta-bg-video {
object-fit: cover;
}
.rx-cta-bg-image {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.rx-cta-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
background-color: #686868;
opacity: 0.5;
}
.rx-cta-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 630px;
margin: 0 auto;
padding: 60px 40px;
}
.rx-cta-subtitle {
font-family: 'TASA Orbiter Regular', -apple-system, BlinkMacSystemFont, sans-serif;
color: #fff;
margin: 0 0 12px 0;
font-weight: 500;
font-size: 20px;
line-height: 100%;
}
.rx-cta-title {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 42px;
font-weight: 600;
color: #ffffff;
line-height: 1.2;
margin: 0 0 28px 0;
letter-spacing: -0.5px;
}
.rx-cta-btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
font-weight: 600;
line-height: 140%;
letter-spacing: 0.02em;
color: #333;
background: linear-gradient(90deg, #FDCEBB -12.71%, #FFEDBF 100%);
height: 40px;
padding: 0 20px;
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
border: none;
}
.rx-cta-btn:hover {
background: linear-gradient(90deg, #f5b9a3 -12.71%, #f5e0a3 100%);
color: #333;
}  .celia-product-testimonials {
padding: 0;
background-color: #ffffff;
}
.celia-testimonials-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 40px;
}
.celia-testimonials-title {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 42px;
font-weight: 700;
color: #333;
margin: 0;
line-height: 1.2;
}
.celia-testimonials-nav {
display: flex;
gap: 25px;
align-items: center;
}
.celia-testimonials-nav button {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #ffffff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
padding: 0;
}
.celia-testimonials-nav button img {
width: 37px;
height: 15px;
}
.celia-testimonials-nav button.slick-disabled {
opacity: 0.4;
cursor: not-allowed;
} .celia-testimonials-slider {
position: relative;
margin: 0; overflow: hidden;
}
.celia-testimonials-slider .slick-list {
margin-bottom: 40px;
}
.celia-testimonials-slider .slick-slide {
height: auto;
display: flex;
padding: 10px;
box-sizing: border-box;
align-items: center;
}
.celia-testimonials-slider .slick-slide > div {
width: 100%;
display: flex;
height: 100%;
align-items: center;
justify-content: center;
}
.celia-testimonials-slider .slick-center.celia-testimonial-item {
border: 1px solid #767676 !important;
padding: 10px !important;
box-sizing: border-box;
} .celia-testimonial-item {
background-color: #fff;
border-radius: 16px;
overflow: hidden;
transition: all 0.3s ease;
width: 300px;
height: 400px;
display: flex;
flex-direction: column;
border: 1px solid transparent;
margin: 0 auto;
} .celia-testimonial-image-wrapper {
position: relative;
width: 100%; border-radius: 16px;
overflow: hidden;
}
.celia-testimonial-image {
width: 100%;
height: 100%;
object-fit: cover;
max-height:400px;
min-height: 400px;
} .celia-testimonial-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 15px;
display: flex;
flex-direction: column;
z-index: 1;
background: linear-gradient(180deg, rgba(13, 13, 13, 0) 2.69%, rgba(13, 13, 13, 0.1) 12.04%, #0D0D0D 100%);
}
form.woocommerce-ResetPassword.lost_reset_password input {
min-width: 570px;
}
.woocommerce-page form .form-row input.input-text, .woocommerce-page form .form-row select, .woocommerce-page form .form-row textarea.input-text {
font-size: var(--wp--preset--font-size--small);
padding: .9rem 3rem .9rem 1.1rem !important;
}
.celia-quote-icon {
display: block;
font-size: 24px;
font-weight: 700;
color: #fff;
line-height: 1;
margin-bottom: 8px;
}
.celia-testimonial-quote {
margin: 0;
flex-grow: 1;
font-family: Inter Tight;
font-weight: 600;
font-size: 14px;
line-height: 150%;
color: #fff;
text-align: left;
}
.celia-testimonial-name {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
font-weight: 600;
color: #ffffff;
margin: 0;
} .celia-testimonials-slider .slick-dots {
position: relative;
bottom: 0;
margin-top: 20px;
display: flex !important;
justify-content: center;
list-style: none;
padding: 0;
}
.celia-testimonials-slider .slick-dots li {
width: auto;
height: auto;
margin: 0 4px;
}
.celia-testimonials-slider .slick-dots li button {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #d4d4d4;
border: none;
cursor: pointer;
padding: 0;
transition: all 0.3s ease;
text-indent: -9999px;
overflow: hidden;
}
.celia-testimonials-slider .slick-dots li button:before {
display: none;
}
.celia-testimonials-slider .slick-dots li.slick-active button {
background: linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%);
width: 12px;
height: 12px;
} .rx-split-wrapper {
padding: 88px 0;
background-color: #ffffff;
}
.rx-split-cta {
position: relative;
display: flex;
width: 100%;
height: 363px;
background-size: cover;
background-position: center right;
background-repeat: no-repeat;
background-color: #e8e0d8;
overflow: hidden;
border-radius: 30px;
border-radius: 20px;;
}
.home .rx-split-cta {
height: 560px;
} .rx-split-mobile-img {
display: none;
} .rx-split-content {
position: relative;
z-index: 2;
width: 50%;
display: flex;
align-items: center;
padding-left: 44px;
padding-top: 69px;
background-color: transparent;
padding-left: 50px;
padding-top: 66px;;
} .rx-split-content-right .rx-split-content {
margin-left: auto;
margin-right: 0;
} .rx-split-content-left .rx-split-content {
margin-left: 0;
margin-right: auto;
}
.rx-split-title {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
color: #333;
margin: 0 0 22px 0;
letter-spacing: 0.1px;
font-weight: 700;
font-size: 42px;
line-height: 100%;
}
.rx-split-description {
color: #333;
margin: 0 0 28px 0;
font-family: Inter Tight;
font-weight: 400;
font-size: 16px;
line-height: 160%;
}
.rx-split-btn {
display: inline-flex;
align-items: center;
justify-content: center;
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
font-weight: 600;
line-height: 140%;
letter-spacing: 0.02em;
text-transform: capitalize;
color: #333;
background: linear-gradient(90deg, #FDCEBB -12.71%, #FFEDBF 100%);
height: 40px;
padding: 0 20px;
border-radius: 30px;
text-decoration: none;
transition: all 0.3s ease;
border: none;
}
.rx-split-btn:hover {
background: linear-gradient(90deg, #f5b9a3 -12.71%, #f5e0a3 100%);
color: #333;
}  .rx-features-grid {
padding: 45px 0;
background-color: #ffffff;
}
.rx-features-wrapper {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 83px;
}
.rx-feature-card {
text-align: center; }
.rx-feature-icon {
width: 80px;
height: 80px;
margin: 0 auto 15px;
display: flex;
align-items: center;
justify-content: center;
}
.rx-feature-icon img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.rx-feature-title {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 20px;
font-weight: 600;
color: #1a1a1a;
margin: 0 0 10px 0;
line-height: 1.3;
}
.rx-feature-description {
font-family: 'TASA Orbiter Regular', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 14px;
font-weight: 400;
color: #6b6b6b;
line-height: 1.6;
margin: 0;
}  .rx-programs-evolve-slider {
display: block;
padding: 0;
} .rx-programs-evolve-slider .slick-list {
padding: 0 0 0 20px;
margin: 0;
}
.rx-programs-evolve-slider .slick-track {
display: flex;
align-items: stretch;
}
.rx-programs-evolve-slider .rx-health-program-card {
margin: 0 5px;
flex-shrink: 0;
} @media screen and (min-width: 769px) {
.rx-programs-evolve-slider {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin: 0 auto 40px;
}
.rx-programs-evolve-slider .rx-health-program-card {
margin: 0;
}
} .rx-product-catalog-section {
padding: 90px 0;
background-color: #ffffff;
}
.rx-product-catalog-header {
text-align: left;
margin-bottom: 60px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}
.rx-product-catalog-title {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 42px;
font-weight: 700;
color: #333;
margin: 0 0 20px 0;
letter-spacing: -0.5px;
line-height: 1.2;
text-align: center;
}
.rx-product-catalog-description {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
font-weight: 400;
color: #333;
line-height: 1.6;
margin: 0;
} .rx-product-catalog-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin: 0 auto 40px;
} .rx-product-catalog-footer {
text-align: center;
margin-top: 40px;
}
.rx-product-catalog-load-more-btn {
display: inline-block;
padding: 14px 32px;
background-color: #798377;
border-radius: 30px;
color: #ffffff;
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
font-weight: 600;
text-decoration: none;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.rx-product-catalog-load-more-btn:hover {
background-color: #1a1a1a;
transform: translateY(-2px);
}  .rx-how-to-get-started-section {
padding: 90px 0;
background-color: #ffffff;
}
.rx-how-to-get-started-header {
text-align: center;
margin-bottom: 40px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
padding: 0 20px;
}
.rx-how-to-get-started-title {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 42px;
font-weight: 700;
color: #333;
margin: 0 0 27px 0;
letter-spacing: 0.5px;
line-height: 32px;
}
.rx-how-to-get-started-description {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
font-weight: 400;
color: #333;
line-height: 1.6;
margin: 0 auto;
max-width: 730px;
} .rx-how-to-get-started-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 25px 30px;
margin: 0 auto;
position: relative;
max-width: 1300px;;
grid-template-columns: 635px 304px 301px;
grid-template-columns: 48.85% 23.38% 23.1%;
} .rx-get-started-step-card.step-1 {
grid-column: 1;
grid-row: 1 / -1;
min-height: 580px;
padding: 34px;
padding-left: 40px;
} .rx-get-started-step-card.step-2 {
grid-column: 2;
grid-row: 1;
padding: 18px 31px;
max-height: 278px;
margin: 0;
} .rx-get-started-step-card.step-3 {
grid-column: 2;
grid-row: 2;
max-height: 278px;
padding: 15px 30px;
} .rx-get-started-step-card.step-4 {
grid-row: 1 / -1;
align-items: flex-end;
padding: 23px 34px;
padding-right: 30px;
} .rx-get-started-step-card {
position: relative;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-radius: 12px;
padding: 32px 28px;
min-height: 278px;
display: flex;
align-items: flex-start;
overflow: hidden;
z-index: 2;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.rx-get-started-step-content {
position: relative;
z-index: 2;
width: 100%;
}
.rx-get-started-step-number { font-size: 54px;
font-size: 50px;
font-weight: 600;
color: #999;
line-height: 1;
opacity: 0.6;
margin-bottom: 7px;
}
.rx-get-started-step-card.step-3 .rx-get-started-step-number{font-family: 'TASA Orbiter';font-size: 54px;margin-bottom: 5px;}
.rx-get-started-step-title { font-size: 30px;
font-weight: 700;
color: #333;
margin: 0 0 12px 0;
line-height: 34px;
letter-spacing: 0px;
max-width: 300px;
line-height: 110%;;
}
@media (max-width:1024px) {
.rx-get-started-step-title{font-size: 24px;}
.rx-get-started-step-description{font-size: 14px;}
}
.rx-get-started-step-description {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 15px;
font-weight: 400;
color: #333;
line-height: 1.6;
margin: 0;
max-width: 400px;
letter-spacing: 0.02em;
line-height: 160%;
font-size: 16px;;
}
.rx-get-started-step-card.step-3 .rx-get-started-step-description{letter-spacing: 0;}  .rx-health-programs-section {
padding-top: 80px;
padding-bottom: 2px;
background: linear-gradient(180deg, #F8F8F8 0%, #FFFFFF 100%);
}
.rx-health-programs-header {
text-align: center;
margin-bottom: 38px;
max-width: 950px;
margin-left: auto;
margin-right: auto;
padding: 0 20px;
}
.rx-health-programs-title { font-size: 42px;
font-weight: 700;
color: #333;
margin: 0 0 17px 0;
letter-spacing: 0.5px;
letter-spacing: 0;
line-height: 1.2;
}
.rx-health-programs-description {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
font-weight: 400;
color: #333;
line-height: 1.6;
margin: 0;
} .rx-health-programs-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin: 0 auto 40px; } .rx-health-program-card {
display: block;
text-decoration: none;
position: relative; overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rx-health-program-image-wrapper {
position: relative;
width: 100%;
aspect-ratio: 1.15 / 1;
overflow: hidden;
margin-bottom: 10px;
border-radius: 10px;
}
.rx-health-program-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.rx-health-program-image-placeholder {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #e8e0d8 0%, #d4ccc0 100%);
} .rx-health-program-content-wrapper {
position: relative;
padding: 20px 18px 18px;
background-color: #ffffff;
min-height: 140px;
border: 1px solid #d9d9d9;
border-radius: 10px;
border-bottom-right-radius: 53px;
letter-spacing: -0.5px;
}
.rx-health-program-content {
flex: 1;
}
.rx-health-program-title {
font-family: 'TASA Orbiter Medium', -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 20px;
font-weight: 600;
color: #333;
margin: 0 0 7px 0;
line-height: 1.3;
letter-spacing: 0.02em;
}
.rx-health-program-description {
font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 400;
color: #666;
line-height: 24px;
line-height: 150%;
margin: 0;
max-width: 230px;
}
.curve-image{
background-image: url(//www.celia-rx.com/wp-content/themes/rx-child/assets/images/Vector-curve.png);
position: absolute;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
justify-content: center;
align-items: center;
width: 50px;
height: 50px;
display: flex;
right: 0;
bottom: 0;
border-top: 1px solid #d9d9d9;
border-left: 1px solid #d9d9d9;
border-radius: 0 10px 0 10px;
background: #ffffff;
}
.rx-health-program-arrow {
bottom: 20px;
right: 20px;
width: 40px;
height: 40px;
background-color: #728486;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
transition: transform 0.3s ease, background-color 0.3s ease;
}
.rx-health-program-arrow svg {
width: 20px;
height: 20px;
} .rx-health-programs-footer {
text-align: center;
margin-top: 40px;
}
.rx-health-programs-load-more-btn {
display: inline-block;
padding: 14px 32px;
background: linear-gradient(90deg, #FDCEBB -12.71%, #FFEDBF 100%);
color: #333; font-size: 16px;
font-weight: 600;
text-decoration: none;
border-radius: 8px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-radius: 30px;
padding: 10xp 20px;
font-size: 14px;
}
.main-footer li a{
position: relative;
}
.main-footer li a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary-gradient, linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%));
transition: width 0.3s ease;
}
.main-footer .link-box li a:hover::after {
width: 100%;
}
.main-footer .link-box li a:hover {
color: var(--primary-color, #E28C69);
} .affwp-form.affwp-login-form {
padding: 100px 0;
margin: var(--spacing-2xl) auto;
background: var(--bg-primary);
border: 2px solid var(--border-color);
border-radius: var(--radius-lg);
padding: var(--spacing-2xl);
box-shadow: var(--shadow-md);
}
.affwp-form legend {
font-size: 32px;
margin-bottom: 1em;
}
.affwp-form label {
cursor: pointer;
font-weight: 600;
margin-bottom: 0;
display: block;
font-size: 14px;
color: var(--text-primary);
letter-spacing: 0.02em;
font-family: "Inter Tight", sans-serif;
width: auto;
float: none;
margin-bottom: 10px;
margin-top: 20px;
}
.affwp-form.affwp-login-form input.button {
display: inline-block;
padding: 14px 32px;
font-size: 14px;
font-weight: 600;
font-family: "Inter Tight", sans-serif;
border-radius: var(--radius-full);
transition: all var(--transition-base);
cursor: pointer;
text-decoration: none;
text-align: center;
line-height: 1.5;
border: none;
min-width: 140px;
background: var(--primary-gradient);
color: var(--text-primary);
box-shadow: var(--shadow-sm);
}
.affwp-lost-password a {
color: var(--primary-color);
text-decoration: none;
font-size: 14px;
margin-top: 20px;
}
div#affwp-affiliate-dashboard {
padding: 100px 0;
} #affwp-affiliate-dashboard-tabs {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 40px;
padding: 0;
list-style: none;
border-bottom: 2px solid var(--border-light, #F0EBE7);
padding-bottom: 20px;
}
#affwp-affiliate-dashboard-tabs li {
margin: 0;
padding: 0;
list-style: none;
}
.affwp-affiliate-dashboard-tab {
position: relative;
}
.affwp-affiliate-dashboard-tab a {
display: inline-block;
padding: 12px 24px;
font-family: "Inter Tight", sans-serif;
font-size: 14px;
font-weight: 500;
color: var(--text-secondary, #666666);
text-decoration: none;
background: transparent;
border: 1px solid transparent;
transition: all var(--transition-base, 0.3s ease);
letter-spacing: 0.02em;
position: relative;
white-space: nowrap;
}
.affwp-affiliate-dashboard-tab a:hover {
color: var(--primary-color, #E28C69);
background: var(--bg-secondary, #F6F2EF);
border-color: var(--border-light, #F0EBE7);
transform: translateY(-2px);
box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.04));
}
.affwp-affiliate-dashboard-tab.active a {
background: linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%);
color: var(--text-primary, #333333);
font-weight: 600;
border-color: transparent;
box-shadow: var(--shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.04));
}
.affwp-affiliate-dashboard-tab.active a:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.08));
color: var(--text-primary, #333333);
} .affwp-affiliate-dashboard-tab:last-child a {
color: var(--text-secondary, #666666);
border: 1px solid var(--border-color, #DBD6D1);
background: var(--bg-primary, #FFFFFF);
}
.affwp-affiliate-dashboard-tab:last-child a:hover {
color: var(--error-color, #dc3545);
border-color: var(--error-color, #dc3545);
background: var(--bg-primary, #FFFFFF);
transform: translateY(-2px);
} @media screen and (max-width: 768px) {
#affwp-affiliate-dashboard-tabs {
gap: 8px;
padding-bottom: 15px;
}
.affwp-affiliate-dashboard-tab a {
padding: 10px 16px;
font-size: 13px;
}
}
@media screen and (max-width: 480px) {
#affwp-affiliate-dashboard-tabs {
flex-direction: column;
gap: 8px;
}
.affwp-affiliate-dashboard-tab {
width: 100%;
}
.affwp-affiliate-dashboard-tab a {
width: 100%;
text-align: center;
padding: 12px 20px;
}
}
.affwp-tab-content {
border: 1px solid rgba(17, 24, 39, .05);
box-shadow: transparent 0 0 0 0, transparent 0 0 0 0, rgba(0, 0, 0, .1) 0 1px 3px 0, rgba(0, 0, 0, .1) 0 1px 2px -1px;
padding: 20px;
}
.affwp-form input[type="submit"] {
background: linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%);
padding: 15px 20px;
border-radius: 30px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.02em;
font-weight: 600;
} input[type="text"]::placeholder {
color: var(--text-muted, #999999);
opacity: 1;
}
input[type="text"]:focus {
border-color: var(--primary-color, #E28C69);
box-shadow: 0 0 0 3px rgba(226, 140, 105, 0.1);
outline: none;
background-color: var(--bg-primary, #FFFFFF);
}
input[type="text"]:hover:not(:focus) {
border-color: var(--border-color, #DBD6D1);
}
span#affwp-generator-submit-notices  input#affwp-generator-submit-btn{
border: none;
}
input#affwp-url {
border-radius: 20px;
padding: 5px;
}
@media screen and (min-width: 1399px) {
.rx-about-image-col{
min-height: 530px; 
min-width: 530px;
}
} @media screen and (max-width: 1200px) { .content-wrapper{
gap: 50px;
}
.rx-about-product-image {
width: 80px;
right: -20px;
} .rx-program-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background-color: #ffffff;
padding: 15px 10px;
margin-right: 30px;
} .rx-split-content {
width: 50%;
}
.rx-showcase-slider .slick-prev {
left: 0;
}
.rx-showcase-slider .slick-next {
right: 0;
}
.home .rx-split-cta {
height: auto;
}   
} @media screen and (max-width: 1100px) {
.rx-hero-content{
width: 50%;
}
.rx-hero-slider .slick-next {
right: 20px;
}
.rx-hero-slider .slick-prev{
left: 20px;
}
.rx-showcase-title {
font-size: 36px;
}
.rx-programs-left{
padding-left: 20px;
}
} @media screen and (max-width: 992px) {
.rx-hero-slide {
min-height: 480px;
}
.rx-hero-content {
width: 55%;
padding: 40px;
}
.rx-hero-logo-img {
max-width: 240px;
}
.rx-hero-tagline {
font-size: 24px;
letter-spacing: 3px;
text-align: center;
}
.rx-hero-slider .slick-prev,
.rx-hero-slider .slick-next {
width: 42px;
height: 42px;
}
.rx-hero-slider .slick-prev {
left: 16px;
}
.rx-hero-slider .slick-next {
right: 16px;
} .rx-about-section {
padding: 50px 0;
}
.rx-about-content-col {
flex: 1;
max-width: 100%;
text-align: left;
}
.rx-about-title {
font-size: 32px;
}
.rx-about-content p {
font-size: 15px;
}
.rx-about-image{
height: 100%;
}
.rx-about-product-image {
width: 80px;
right: -20px;
} .rx-programs-section {
padding: 30px 0;
}
.rx-programs-left{
padding: 50px 20px;
}
.rx-programs-slider .slick-prev {
left: 10px;
}
.rx-programs-slider .slick-next {
right: 10px;
} .rx-cta-wrapper {
padding: 50px 0;
}
.rx-cta-banner {
min-height: 380px;
border-radius: 12px;
}
.rx-cta-overlay {
border-radius: 20px;
}
.rx-cta-content {
padding: 50px 30px;
}
.rx-cta-title {
font-size: 32px;
} .celia-product-testimonials {
padding: 30px 0;
}
.celia-testimonials-title {
font-size: 28px;
} .rx-split-wrapper {
padding: 30px 0;
}
.rx-split-cta {
min-height: 450px;
}
.rx-split-content {
width: 50%;
padding: 50px 40px;
}
.rx-split-title {
font-size: 28px;
}
.rx-split-description {
font-size: 12px;
} .rx-features-wrapper {
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.rx-features-grid {
padding: 30px 0;
} .rx-product-catalog-section {
padding: 60px 0;
}
.rx-product-catalog-title {
font-size: 32px;
}
.rx-product-catalog-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
} .rx-how-to-get-started-section {
padding: 60px 0;
}
.rx-how-to-get-started-title {
font-size: 32px;
}
.rx-how-to-get-started-grid {
gap: 20px;
}
.rx-get-started-step-card {
padding: 30px 20px;
min-height: 240px;
}
.rx-get-started-step-number {
font-size: 28px;
}
.rx-get-started-step-title {
font-size: 18px;
font-size: 24px;
} .rx-health-programs-section {
padding: 60px 0;
}
.rx-health-programs-title {
font-size: 32px;
}
.rx-health-programs-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.rx-showcase-slider {
display: grid !important;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin: 0;
width: 100% !important;
box-sizing: border-box;
}
}
@media screen and (max-width: 768px) {
.celia-testimonial-image{
max-height: 300px;
min-height: 300px;
}
} @media screen and (max-width: 768px) {
.rx-hero-banner {
border-radius: 0 0 20px 20px;
}
.rx-hero-slider {
border-radius: 0;
overflow: visible;
}
.rx-hero-slide {
min-height: auto;
flex-direction: column;
background-image: none !important;
background-color: transparent;
} .rx-hero-mobile-img {
display: block !important;
width: 100%;
max-height: 300px;
aspect-ratio: 13 / 12;
object-fit: cover;
object-position: center top;
}
.rx-hero-content {
width: 100%;
margin-left: 0;
padding: 26px 20px 0;
padding-left: 27px;
background: #E5D7D2;
align-items: center;
justify-content: center;
}
.rx-hero-content-inner {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.rx-hero-logo-img {
min-width: auto;
max-width: 194px;
margin-bottom: 12px;
}
.rx-hero-tagline {
font-size: 20px;
letter-spacing: 1.6px;
margin-bottom: 17px;
} .rx-hero-slider .slick-prev,
.rx-hero-slider .slick-next {
display: none !important;
} .rx-hero-slider .slick-dots {
position: relative;
bottom: auto;
left: auto;
transform: none;
justify-content: center;
padding: 20px 0 20px;
background: #E5D7D2;
}
.rx-hero-slider .slick-dots li button {
background-color: #d4ccc0;
}
.rx-hero-slider .slick-dots li button:hover {
background-color: #c4b8a8;
} .rx-about-section {
padding: 40px 0;
}
.content-wrapper{
flex-direction: column;
gap: 20px;
}
.rx-about-image{
width: 100%;
}
.rx-about-image-col {
flex: 0 0 100%;
max-width: 100%;
}
.rx-about-content-col {
flex: 1;
max-width: 100%;
text-align: left;
}
.rx-about-subtitle{
margin:0;
font-size: 16px;
margin-bottom:7px;
}
.rx-about-title {
font-size: 24px;
margin:0;
margin-bottom: 20px;
}
.rx-about-content p {
font-size: 14px;
margin-bottom:20px;
}
.rx-about-btn {
padding: 12px 24px;
}
.rx-about-product-image {
width: 45px;
right: 7px;
bottom: -20px;
} .rx-programs-layout {
flex-direction: column;
gap: 0;
}
.rx-programs-left {
flex: 0 0 100%;
max-width: 100%;
padding-left: 20px;
padding-right: 20px;
}
.rx-programs-slider-wrapper {
margin-right: 0;
margin-bottom: 12px;
}
.rx-programs-right {
display: none;
}
.rx-programs-section::before {
display: block;
}
.rx-programs-section {
padding: 20px 0;
}
.rx-programs-header {
margin-bottom: 5px;
}
.rx-programs-title {
font-size: 24px;
}
.rx-programs-right {
min-height: 350px;
}
.rx-programs-slider .slick-prev,
.rx-programs-slider .slick-next {
width: 38px;
height: 38px;
}
.rx-programs-slider .slick-prev {
left: 5px;
}
.rx-programs-slider .slick-next {
right: 5px;
}
.rx-program-description {
font-size: 13px;
}
.rx-program-content {
padding: 12px 14px;
margin-right: 30px;
}
.rx-programs-btn {
padding: 12px 24px;
font-size: 13px;
} .rx-showcase-section {
padding: 50px 0;
overflow: hidden;
} .rx-showcase-slider-wrapper {
overflow: visible;
margin-bottom: 20px;
}
.rx-showcase-slider {
display: grid !important;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin: 0;
width: 100% !important;
box-sizing: border-box;
}
.rx-showcase-slide {
padding: 0 !important;
width: 100% !important;
min-width: 0;
box-sizing: border-box;
}
.rx-showcase-card {
width: 100%;
min-width: 0;
} .rx-showcase-slide:nth-child(n+5) {
display: none !important;
}
.rx-showcase-card {
width: 100%;
}
.rx-showcase-title {
font-size: 28px;
text-align: left;
}
.rx-showcase-description {
text-align: left;
}
.rx-showcase-header {
text-align: left;
margin-left: 0;
}
.rx-showcase-product-title {
font-size: 16px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.rx-showcase-product-description {
font-size: 13px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.rx-showcase-product-price {
font-size: 16px;
margin-bottom: 12px;
}
.rx-showcase-product-btn {
font-size: 12px;
padding: 10px 20px;
}
.rx-showcase-btn {
width: 100%;
max-width: max-content;
}
.rx-showcase-image-wrapper img{
min-height: 120px;
max-height: 120px;
height: 120px;
width: auto;
max-width: 100px;
object-fit: contain;
object-position: center;
margin: 0 auto;
display: block;
margin-bottom: 14px;
}
.rx-showcase-image-wrapper::before {
width: 90px;
height: 90px;
}
.rx-showcase-footer{
padding-top: 14px;
} .padding-0{
padding:0 !important; 
}
.rx-split-wrapper {
padding: 20px 0;
}
.rx-split-cta {
flex-direction: column;
min-height: auto;
background-image: none !important;
background-color: transparent;
border-radius: 8px;
height: auto;overflow: hidden;;
} .rx-split-mobile-img {
display: block;
width: 100%;
max-height: 336px;
aspect-ratio: 13 / 14;
object-fit: cover;
object-position: center top;
}
.rx-split-content {
width: 100%;
max-width: 100%;
padding: 26px 24px;
background: #E4d5d0;
}
.rx-split-content-inner {
max-width: 100%;padding-top: 7px;
}
.rx-split-title {
font-size: 24px;
margin-bottom: 12px;
}
.rx-split-description {
font-size: 14px;
letter-spacing: 0.01em;
}
.rx-split-btn {
padding: 0 22px;
} .rx-features-wrapper {
display: block;
}
.rx-features-grid {
padding: 40px 0;
}
.rx-feature-card {
padding: 16px;
}
.rx-feature-icon {
width: 60px;
height: auto;
margin-bottom: 16px;
}
.rx-feature-title {
font-size: 20px;
}
.rx-feature-description {
font-size: 13px;
} .rx-features-slider .slick-dots {
display: flex !important;
justify-content: center;
gap: 8px;
padding: 20px 0 0;
margin: 0;
list-style: none;
}
.rx-features-slider .slick-dots li {
width: auto;
height: auto;
margin: 0;
padding: 0;
}
.rx-features-slider .slick-dots li button {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #d4ccc0;
border: none;
cursor: pointer;
transition: all 0.3s ease;
padding: 0;
}
.rx-features-slider .slick-dots li button:before {
display: none;
}
.rx-features-slider .slick-dots li button:hover {
background-color: #c4b8a8;
}
.rx-features-slider .slick-dots li.slick-active button {
background: linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%);
}
.rx-features-slider.slick-dotted.slick-slider {
margin-bottom: 0;
} .rx-product-catalog-section {
padding: 40px 0;
}
.rx-product-catalog-header {
margin-bottom: 40px;
}
.rx-product-catalog-title {
font-size: 24px;
text-align: left;
}
.rx-product-catalog-description {
font-size: 14px;
}
.rx-product-catalog-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
} .rx-how-to-get-started-section { padding: 32px 0 39px;
}
.rx-how-to-get-started-header {
margin-bottom: 37px;
margin-bottom: 17px; padding: 0;
}
.rx-how-to-get-started-title {
font-size: 24px;
letter-spacing: 0;
margin-bottom: 11px;
}
.rx-how-to-get-started-description {
font-size: 14px;
} .rx-how-to-get-started-grid {
display: block;
padding: 0;
} .rx-how-to-get-started-grid .slick-list { padding: 0;
margin: 0;
}
.rx-how-to-get-started-grid .slick-track {
display: flex;
align-items: stretch;
}
.rx-get-started-step-card.step-1 {
min-height: 290px;padding: 21px;
padding-left: 19px;
}
.rx-get-started-step-card {
padding: 25px 20px;
min-height: 290px;
margin: 0 0px;margin-right: 20px;
flex-shrink: 0;
}
.rx-get-started-step-number {
font-size: 30px;margin-bottom: 1px;
}
.rx-get-started-step-title {
font-size: 18px;font-size: 24px;margin-bottom: 9px;
}
.rx-get-started-step-description {
font-size: 14px;
} .rx-how-to-get-started-grid .slick-dots {
display: flex !important;
justify-content: center;
align-items: center;
gap: 10px;
margin-top: 24px;
padding: 0;
list-style: none;
position: static;
}
.rx-how-to-get-started-grid .slick-dots li {
width: auto;
height: auto;
margin: 0;
padding: 0;
}
.rx-how-to-get-started-grid .slick-dots li button {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #d4ccc0;
border: none;
cursor: pointer;
transition: all 0.3s ease;
padding: 0;
font-size: 0;
text-indent: -9999px;
}
.rx-how-to-get-started-grid .slick-dots li button:before {
display: none;
}
.rx-how-to-get-started-grid .slick-dots li button:hover {
background-color: #c4b8a8;
}
.rx-how-to-get-started-grid .slick-dots li.slick-active button {
background: linear-gradient(90deg, #E28C69 -12.71%, #EED187 100%);
width: 12px;
height: 12px;
} .rx-health-programs-section {
padding: 35px 0;
}
.rx-health-programs-header {
margin-bottom: 18px;
padding: 0 10px;
}
.rx-health-programs-title {
font-size: 24px;margin-bottom: 11px;
}
.rx-health-programs-description {
font-size: 14px;line-height: 160%;
}
.rx-health-programs-grid {
grid-template-columns: repeat(2, 1fr);
gap: 14px 10px;
margin-bottom: 23px;
}
.rx-health-program-content-wrapper {
padding: 10px 12px;
min-height: 97px;
}
.rx-health-program-title {
font-size: 16px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-family: inherit;
margin-bottom: 4px;
line-height: 130%;;
}
.rx-health-program-description {
font-size: 12px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1.5;
max-height: calc(1.5em * 3);
line-height: 130%;
}
.rx-health-programs-load-more-btn {
padding: 9px 20px;
font-size: 14px;
}
}
@media screen and (max-width: 576px) { .rx-cta-wrapper {
padding: 40px 0;
}
.rx-cta-banner {
min-height: 390px;
border-radius: 0px;
}
.rx-cta-content {
padding: 40px 24px;
}
.rx-cta-subtitle {
font-size: 16px;
}
.rx-cta-title {
font-size: 24px;
margin-bottom: 20px;
}
.rx-cta-btn {
padding: 12px 24px;
font-size: 12px;
}
} @media screen and (max-width: 480px) {
.rx-programs-section {
padding: 20px 0;
}
.rx-programs-title {
font-size: 24px;
}
.rx-programs-label {
font-size: 16px;
}
.rx-programs-right {
min-height: 300px;
}
.rx-programs-left{
padding: 17px 20px;
padding-right: 0;
} .rx-programs-slider .slick-prev,
.rx-programs-slider .slick-next {
display: none !important;
}
.rx-programs-slider .slick-list {
overflow: hidden;
}
.rx-program-description {
font-size: 12px;
} .rx-showcase-section {
padding: 56px 0 32px 0;
}
.rx-showcase-header{
margin-bottom: 20px;
}
.rx-showcase-image-wrapper{
margin-bottom: 6px;
}
.rx-showcase-product-title{
margin-bottom: 13px;
}
.rx-showcase-product-description{
margin-bottom: 8px;
}
.rx-showcase-slider-wrapper{
margin-bottom: 0px;
}
.rx-cta-wrapper{
padding: 0;
}
.rx-cta-subtitle{
margin: 0 0 7px 0;
}
.rx-showcase-title {
font-size: 24px;
margin-bottom: 10px;
}
.rx-showcase-description {
font-size: 14px;
}
.rx-showcase-slider {
gap: 12px;
grid-template-columns: repeat(1, 1fr);
}
.rx-showcase-product-title {
font-size: 14px;
}
.rx-showcase-product-description {
font-size: 12px;
}
.rx-showcase-product-price {
font-size: 14px;
}
.rx-showcase-product-btn {
font-size: 11px;
padding: 8px 16px;
}
.rx-showcase-image-wrapper img {
min-height: 120px;
max-height: 120px;
height: 120px;
width: auto;
max-width: 100px;
object-fit: contain;
object-position: center;
margin: 0 auto;
display: block;
}
.rx-program-slide {
padding: 0 15px;
height: auto;
} .celia-product-testimonials {
padding: 40px 0;
}
.celia-testimonials-title {
font-size: 24px;
}
.celia-testimonials-header {
flex-direction: column;
align-items: flex-start;
gap: 20px;
}
.celia-testimonials-nav {
display: none;
}
.celia-testimonial-image{
max-height: 370px;
min-height: 370px;
} .rx-split-wrapper {
padding: 6px 20px 40px;overflow: hidden;;
}
.rx-split-mobile-img {
max-height: 301px;
}
.rx-split-content {
padding: 15px 20px 25px;
text-align: center;
}
.rx-split-title {
font-size: 24px;
margin-bottom: 12px;
}
.rx-split-description {
font-size: 14px;
letter-spacing: 0.01em;
margin: 0 0 12px 0;
}
.rx-feature-icon {
margin-bottom: 18px;
}
.rx-feature-card{
padding: 0;
}
.rx-health-programs-footer{margin-top: 20px;}
}
@media (max-width:768px) {
.rx-health-program-arrow{width: 24px;height: 24px;border-radius: 5px;}
.curve-image{width: 24px;height: 24px;border-radius: 0 5px 0 5px;top: -1px;right: -1px;;}
.rx-health-program-arrow{width: 24px;height: 24px;border-radius: 5px;;}
.rx-health-program-content-wrapper{border-radius: 8px !important;}
}
.page-template-Program_detail .rx-about-image-col{
flex: 0 0 47.8%;
max-width: 47.8%;
min-height: 1px;
aspect-ratio: 62 / 50;
}
.page-template-Program_detail .rx-about-section{padding: 90px 0 40px;}
.page-template-Program_detail .rx-about-content h3{
font-size: 20px;font-weight: 600;letter-spacing: 0.02em;line-height: 150%;font-family: inherit;margin-top: 28px;margin-bottom: 13px;;
}
.page-template-Program_detail .rx-about-content{margin-bottom: 48px;}
.page-template-Program_detail .rx-about-content-col{padding-top: 28px;}
.page-template-Program_detail .rx-product-catalog-section{padding: 40px 0;}
.page-template-Program_detail .rx-product-catalog-header{max-width: 1000px;margin-bottom: 37px;}
.page-template-Program_detail .rx-product-catalog-title{letter-spacing: 0;margin-bottom: 17px;}
.page-template-Program_detail  .rx-product-catalog-description{text-align: center;}
.page-template-Program_detail .rx-showcase-image-wrapper{margin-bottom: 13px;}
.page-template-Program_detail .rx-product-catalog-grid{gap:30px 24px}
.page-template-Program_detail .rx-product-catalog-footer{margin-top: 42px;}
.page-template-Program_detail .rx-product-catalog-load-more-btn{font-size: 18px;padding: 13px 36px;}
.page-template-Program_detail .rx-product-catalog-section{padding: 40px 0 88px;}
.page-template-Program_detail .rx-health-programs-load-more-btn{padding: 10px 19px;}
.page-template-Program_detail .rx-health-programs-section{padding-top: 80px;padding-bottom: 89px;}
.page-template-Program_detail .content-wrapper{gap: 79px;}
@media (max-width:767px) {
.page-template-Program_detail .rx-about-section{padding: 40px 0 40px;}
.page-template-Program_detail .rx-about-image-col{flex: 0 0 100%;max-width: 100%;;}
.page-template-Program_detail .content-wrapper{gap:0;}
.page-template-Program_detail .rx-about-content-col{padding-top: 15px;}
.page-template-Program_detail .rx-about-title{margin-bottom: 15px;}
.page-template-Program_detail .rx-about-content h3{font-size: 16px;margin-top: 10px;margin-bottom: 10px;}
.page-template-Program_detail .rx-about-content h3 br{display: none;}
.page-template-Program_detail .rx-about-content p{margin-bottom: 10px;}
.page-template-Program_detail .rx-about-content ul li{margin-bottom: 5px;}
.page-template-Program_detail .rx-about-content{margin-bottom: 18px;}
.page-template-Program_detail .rx-about-btn{padding: 12px 20px;}
.page-template-Program_detail .rx-about-section{padding:40px 0 20px;}
.page-template-Program_detail .rx-product-catalog-description{text-align: center;}
.page-template-Program_detail .rx-product-catalog-title{margin-bottom: 11px;}
.page-template-Program_detail .rx-product-catalog-header{margin-bottom: 18px;}
.page-template-Program_detail .rx-product-catalog-grid{gap: 15px 15px;}
.page-template-Program_detail .rx-showcase-image-wrapper{margin-bottom: 6px;}
.page-template-Program_detail .rx-showcase-card{border-radius: 6px;;}
.page-template-Program_detail .rx-product-catalog-load-more-btn{padding: 8px 41px;font-size: 16px;}
.page-template-Program_detail .rx-product-catalog-section{padding: 13px 0 40px;} .page-template-Program_detail .rx-health-programs-header{padding: 0;}
.page-template-Program_detail .rx-programs-evolve-slider .slick-list{padding: 0;}
.page-template-Program_detail .rx-health-programs-section{padding-bottom: 45px;}
.page-template-Program_detail .rx-product-catalog-description{text-align: left;}
} section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses{
display: flex;
gap: 20px;
}
.woocommerce-column--billing-address, .woocommerce-column--shipping-address{
width: 100% !important;
float: none !important;
}
.woocommerce-page .woocommerce-customer-details address{
width: 100% !important;
}
@media (max-width: 768px) {
section.woocommerce-columns.woocommerce-columns--2.woocommerce-columns--addresses.col2-set.addresses{
flex-direction: column;
}
}
.flex.checkbox a {
color: blue !important;
text-decoration: underline ! IMPORTANT;
}
span.woocommerce-Price-amount.amount, span.rx-per-month-price, span.rx-per-doses-text{
font-size: 16px;
font-weight: 600;
color: #333;
margin-bottom: 5px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
display: flex !important;
align-items: center;
gap: 6px;
}
form.woocommerce-form.woocommerce-form-register.register p {
margin-bottom: 10px;
}
.woocommerce-form-row, .woocommerce form .form-row {
margin-bottom: var(--spacing-lg) !important;
}
.woocommerce form .form-row{
padding: 0 !important;
}