/* shop.css */
.shop-memberships,
.shop-packages {
    background: #101010;
    padding: 30px 0;
    font-family: 'Open Sans', sans-serif;
}

.shop-memberships .memberships-intro {
    max-width: 60%;
}

.packages-section .memberships-intro {
    max-width: 60%;
}

.memberships-intro {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.18px;
    font-weight: 300;
    max-width: 90%;
    margin: 0 auto;
}

.memberships-intro p {
    text-align: center;
    margin-bottom: 30px;
    /* Match margin from skin-concerns.css */
}

.memberships-title,
.packages-title {
    font-size: 35px;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.memberships-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: #23121A;
    /* Slightly lighter/darker depending on preference, to match the UI box */
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.membership-card {
    display: flex;
    gap: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    align-items: center;
}

.membership-card.reverse {
    flex-direction: row-reverse;
}

.membership-img img {
    border-radius: 20px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.membership-img {
    flex: 0 0 447px;
}

.membership-info {
    flex: 1;
    color: white;
}

.membership-info h3 {
    font-size: 30px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 20px;
}

.membership-info p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
    font-weight: 300;
}

.membership-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-bottom: 40px;
}

.membership-features span {
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
}

.membership-features span svg {
    flex-shrink: 0;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 6px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-learn-more:hover {
    background: #A6718A;
    border-color: #A6718A;
    color: #fff;
}


.package-card {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    width: 100%;
    max-width: 394.544px;
    height: auto;
    aspect-ratio: 108/131;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.package-card::after {
    content: "";
    position: absolute;
    top: -110%;
    left: -210%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.13) 0%,
            rgba(255, 255, 255, 0.13) 77%,
            rgba(255, 255, 255, 0.5) 92%,
            rgba(255, 255, 255, 0.0) 100%);
    z-index: 3;
}

.package-card:hover:after {
    opacity: 1;
    top: -30%;
    left: -30%;
    transition-property: left, top, opacity;
    transition-duration: 2.7s, 2.7s, 2.15s;
    transition-timing-function: ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.package-card:hover .card-bg {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(356deg, #000 -28.74%, rgba(102, 102, 102, 0) 50%);
    z-index: 2;
}

.package-info {
    position: relative;
    padding: 30px;
    color: white;
    z-index: 4;
    border: none !important;
}

.package-info .card-title {
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}

.package-info .card-sessions {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 300;
    opacity: 0.9;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    width: fit-content;
}

.btn-view-more svg {
    transition: transform 0.3s ease;
}

.btn-view-more:hover {
    background: rgba(0, 0, 0, 0.50);
}

.btn-view-more:hover svg {
    transform: translateX(5px);
}


.inner-page-banner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.inner-banner-desc {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    min-height: 200px;
}

.inner-banner-desc::before {
    content: " ";
    opacity: 0.56;
    background: #151619;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.inner-banner-desc h1 {
    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 26px;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 5.98px;
    text-transform: uppercase;
    margin: 0;
    z-index: 1;
}

.inner-banner-desc p {
    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    margin: 10px 0 0;
    z-index: 1;
}

.banner-margin-padding {
    margin: 0 !important;
    padding: 0 !important;
}

@media screen and (min-width: 768px) {
    .inner-banner-desc {
        min-height: 16vw;
    }

    .inner-banner-desc h1 {
        font-size: 1.81vw;
        letter-spacing: 0.42vw;
    }

    .inner-banner-desc p {
        font-size: 1.1vw;
        margin-top: 0.7vw;
    }
}

@media screen and (min-width: 1600px) {
    .inner-banner-desc {
        min-height: 311px;
    }

    .inner-banner-desc h1 {
        font-size: 26px;
        letter-spacing: 5.98px;
    }

    .inner-banner-desc p {
        font-size: 18px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 991px) {
    .inner-page-banner {
        padding-top: 76px;
    }
}

@media screen and (max-width: 767px) {
    .inner-page-banner {
        padding-top: 78px;
        overflow: hidden;
    }

    .inner-page-banner .inner-container {
        padding: 0 !important;
    }

    .inner-banner-desc {
        min-height: 200px;
        background-position: center;
    }

    .inner-banner-desc h1 {
        font-size: 24px;
        word-break: break-word;
    }
}


/* ── Plans Section ────────────────────────────────────── */
.membership-plans-section {
    background: #101010;
    padding: 80px 40px;
    font-family: 'Open Sans', sans-serif;
}

.memberships-intro {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 60px;
    letter-spacing: 0.3px;
}

.memberships-intro p {
    margin-bottom: 0px;
}

.membership-plans-inner {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.membership-plans-inner.has-slider {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding-bottom: 20px;
    justify-content: flex-start;
    cursor: grab;
}

.membership-plans-inner.has-slider:active {
    cursor: grabbing;
}

.membership-plans-inner.has-slider::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* ── Plan Card ────────────────────────────────────────── */
.mem-card {
    flex: 1 1 300px;
    max-width: 420px;
    background: #311725;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.has-slider .mem-card {
    flex: 0 0 100%;
    min-width: 100%;
}

@media screen and (min-width: 946px) {
    .has-slider .mem-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 300px;
    }
}

@media screen and (min-width: 1220px) {
    .has-slider .mem-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 300px;
    }
}

.mem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(166, 113, 138, 0.15);
}

.mem-card__title {
    font-size: 25px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    text-transform: capitalize;
}

/* ── Points List ──────────────────────────────────────── */
.mem-card__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.mem-card__points li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 0.2px;
}

.point-text {
    flex: 1;
    position: relative;
    padding-left: 18px;
    padding-right: 15px;
}

.point-text::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
}

.point-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 76px;
}

.point-right svg {
    display: block;
}

.point-price {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}

/* ── Footer ───────────────────────────────────────────── */
.mem-card__footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.mem-card__price {
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
}

/* ── CTA Button ───────────────────────────────────────── */
.mem-card__btn {
    display: block;
    text-align: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6.11px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 160px;
}

.mem-card__btn:hover {
    background: #A6718A;
    border-color: #A6718A;
    color: #fff;
}

/* ── Dots ────────────────────────────────────────────── */
.membership-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #A6718A;
    transform: scale(1.2);
}

/* ── Form + Image Section ─────────────────────────────── */
.membership-form-section {
    padding: 40px;
    font-family: 'Open Sans', sans-serif;
}

.membership-form-inner {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background: #171717;
    padding: 40px;
    border-radius: 20px;
}

.membership-form-content {
    flex: 1;
    color: #fff;
}

.membership-form-heading {
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #fff;
}

.membership-form-sub {
    font-size: 16px;
    font-weight: 300;
    color: #bbb;
    margin-bottom: 40px;
}


.membership-cf7-wrap .input-row {
    margin-bottom: 20px;
}

.membership-cf7-wrap .wpcf7-form p:not(.membership-form-sub) {
    margin: 0;
}

.membership-cf7-wrap input[type="text"],
.membership-cf7-wrap input[type="email"],
.membership-cf7-wrap input[type="tel"],
.membership-cf7-wrap select,
.membership-cf7-wrap textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 16px 20px;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.membership-cf7-wrap textarea {
    min-height: 80px;
    resize: vertical;
}

.membership-cf7-wrap input[type="text"]:focus,
.membership-cf7-wrap input[type="email"]:focus,
.membership-cf7-wrap input[type="tel"]:focus,
.membership-cf7-wrap select:focus,
.membership-cf7-wrap textarea:focus {
    border-color: #A6718A;
}

.membership-cf7-wrap input[type="text"]::placeholder,
.membership-cf7-wrap input[type="email"]::placeholder,
.membership-cf7-wrap input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.membership-cf7-wrap textarea::placeholder {
    color: #fff;
    opacity: 0.6;
    /* optional: prevents faded placeholder in some browsers */
}

.membership-cf7-wrap select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

.membership-cf7-wrap select option {
    background: #171717;
    color: #fff;
}

.membership-cf7-wrap .form-consent {
    margin: 30px 0;
}

.membership-cf7-wrap .wpcf7-list-item {
    margin: 0;
}

.membership-cf7-wrap .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.membership-cf7-wrap .wpcf7-list-item-label {
    font-size: 13px;
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
    margin-top: -2px;
}

.membership-cf7-wrap input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 2px;
}

.membership-cf7-wrap input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.membership-cf7-wrap fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.membership-cf7-wrap .submit-row {
    margin-top: 10px;
}

.membership-cf7-wrap input[type="submit"] {
    display: inline-block;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.membership-cf7-wrap input[type="submit"]:hover {
    background: #A6718A;
    border-color: #A6718A;
}

.membership-cf7-wrap .wpcf7-not-valid-tip {
    font-size: 15px;
    color: #A6718A;
    margin-top: 5px;
    display: block;
}

.membership-cf7-wrap div.wpcf7-response-output {
    margin: 20px 0 0 0;
    font-size: 15px;
    font-weight: 300;
}

.membership-form-image {
    flex: 0 0 480px;
}

.membership-form-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* === Shop Menu Dropdown Styling === */
.menu-item-1362 .sub-menu {
    background-color: #000 !important;
    border-radius: 0px !important;
    padding: 0 !important;
}

.menu-item-1362 .sub-menu li {
    padding: 0 !important;
    margin: 0 !important;
}

.menu-item-1362 .sub-menu li a {
    color: #fff !important;
    display: block !important;
    padding: 12px 25px !important;
    transition: all 0.3s ease;
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 25.95px !important;
    letter-spacing: 6.106px !important;
    text-transform: uppercase !important;
}

.menu-item-1362 .sub-menu li a:hover,
.menu-item-1362 .sub-menu li.current-menu-item a {
    background-color: #A6718A !important;
    color: #fff !important;
}


/* Responsive Adjustments */

/* Mobile Overrides (below 768px) */
@media screen and (max-width: 767px) {

    .shop-memberships,
    .shop-packages {
        padding: 40px 15px;
    }

    .memberships-title,
    .packages-title {
        font-size: 22px;
        margin-bottom: 15px;
        text-align: left;
    }

    .memberships-intro {
        font-size: 15px;
        line-height: 1.6;
    }

    .memberships-intro p {
        margin-bottom: 15px;
        text-align: left;
    }

    .membership-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .membership-info p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .membership-features {
        gap: 15px;
        margin-bottom: 20px;
    }

    .membership-features span {
        font-size: 15px;
    }

    .package-card {
        width: 100%;
        height: auto;
        aspect-ratio: 108/131;
    }

    .package-info .card-title {
        font-size: 24px;
    }

    .btn-learn-more,
    .btn-purchase {
        font-size: 15px;
        padding: 10px;
        letter-spacing: 2px;
    }


    .memberships-wrapper {
        padding: 20px;
        border-width: 0px;
        gap: 20px;
    }

    .membership-card,
    .membership-card.reverse {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .membership-img {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .membership-img img {
        width: 100%;
        height: auto;
    }

    .btn-purchase,
    .btn-select {
        width: 100%;
    }

    .membership-plans-section,
    .membership-form-section {
        padding: 50px 20px;
    }

    .membership-plans-inner.has-slider {
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 0;
        cursor: default;
    }

    .has-slider .mem-card {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: none;
    }

    .membership-dots {
        display: none !important;
    }

    .mem-card__title {
        font-size: 22px;
    }

    .mem-card__price {
        font-size: 18px;
    }

    .mem-card__btn,
    .membership-cf7-wrap input[type="submit"] {
        font-size: 15px;
    }

    .memberships-intro,
    .mem-card__points li,
    .membership-form-sub {
        font-size: 15px;
    }

    .membership-cf7-wrap input[type="text"],
    .membership-cf7-wrap input[type="email"],
    .membership-cf7-wrap input[type="tel"],
    .membership-cf7-wrap select,
    .membership-cf7-wrap textarea,
    .membership-cf7-wrap .wpcf7-list-item-label {
        font-size: 15px;
    }

    .membership-form-inner,
    .membership-plans-inner,
    .memberships-intro,
    .packages-section .memberships-intro,
    .shop-memberships .memberships-intro {
        max-width: 100%;
    }

    .membership-form-image {
        display: none !important;
    }

    .menu-item-1362 .sub-menu {
        border: none !important;
        box-shadow: none !important;
    }

    .menu-item-1362 .sub-menu li a {
        font-size: 16px !important;
        letter-spacing: 4.106px !important;
        line-height: normal !important;
        background-color: #fff !important;
        color: #000 !important;
        padding: 10px 15px !important;
    }

    .menu-item-1362 .sub-menu li a:hover,
    .menu-item-1362 .sub-menu li.current-menu-item a {
        background-color: #fff !important;
        color: #A6718A !important;
    }

}


/* Tablet & Desktop VW overrides (768px to 1599px) */
@media screen and (min-width: 768px) and (max-width: 1599px) {

    .shop-memberships,
    .shop-packages {
        padding: 4.17vw 1.39vw;
    }

    .membership-form-heading {
        font-size: 2.08vw;
    }

    .mem-card__btn,
    .membership-cf7-wrap input[type="submit"] {
        font-size: 1vw;
    }

    .menu-item-1362 .sub-menu li a {
        font-size: 1.04vw !important;
        line-height: 1.8vw !important;
        letter-spacing: 0.29vw !important;
    }

    .memberships-intro,
    .mem-card__points li,
    .membership-form-sub {
        font-size: 1.1vw;
    }

    .membership-cf7-wrap input[type="text"],
    .membership-cf7-wrap input[type="email"],
    .membership-cf7-wrap input[type="tel"],
    .membership-cf7-wrap select,
    .membership-cf7-wrap textarea,
    .membership-cf7-wrap .wpcf7-list-item-label {
        font-size: 1.1vw;
    }

    .memberships-intro p {
        margin-bottom: 2.08vw;
    }

    .memberships-title,
    .packages-title {
        font-size: 2.08vw;
        margin-bottom: 2.08vw;
    }

    .membership-info h3 {
        font-size: 1.53vw;
        margin-bottom: 1.39vw;
    }

    .membership-info p {
        font-size: 1.1vw;
        margin-bottom: 2.08vw;
    }

    .membership-features {
        gap: 1.39vw 2.08vw;
        margin-bottom: 2.78vw;
    }

    .membership-features span {
        font-size: 1.1vw;
        gap: 0.69vw;
    }

    .package-info .card-title {
        font-size: 1.8vw;
    }

    .package-card {
        max-width: 100%;
    }

    .btn-learn-more,
    .btn-purchase {
        font-size: 1vw;
        padding: 0.8vw;
    }

    .memberships-wrapper {
        padding: 2.78vw;
        gap: 2.08vw;
        border-radius: 1.39vw;
    }

    .membership-card {
        padding: 2.78vw;
        gap: 2.78vw;
        border-radius: 1.39vw;
    }

    .membership-img {
        flex: 0 0 31vw;
    }

    .membership-img img {
        border-radius: 1.39vw;
    }

    .package-info {
        padding: 2.08vw;
    }
}


@media screen and (max-width: 1100px) {
    .membership-form-inner {
        flex-direction: column;
    }

    .membership-form-image {
        flex: 1;
        width: 100%;
    }
}

@media screen and (min-width: 1600px) {

    .memberships-intro,
    .mem-card__points li,
    .membership-form-sub {
        font-size: 18px;
    }

    .mem-card__btn,
    .membership-cf7-wrap input[type="submit"] {
        font-size: 14px;
    }

    .membership-cf7-wrap input[type="text"],
    .membership-cf7-wrap input[type="email"],
    .membership-cf7-wrap input[type="tel"],
    .membership-cf7-wrap select,
    .membership-cf7-wrap textarea,
    .membership-cf7-wrap .wpcf7-list-item-label {
        font-size: 18px;
    }
}