/* ==========================================================================
   Reset & Global Styles
   ========================================================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

:root {
    --primary-purple: #6b2c91;
    --primary-pink: #ff1493;
    --text-dark: #333;
    --text-light: #fff;
    --success-green: #37c137;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
}

body {
    min-height: 100vh;
    background-color: var(--gray-light);
}

/* ==========================================================================
   Typography
   ========================================================================== */
.logo-font {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */
.main-content {
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 15px;
}

.product-section {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.announcement-bar {
    background-color: var(--primary-purple);
    color: var(--text-light);
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.header {
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    text-align: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
}

.logo-link {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.user-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.account-icon, .cart-icon {
    text-decoration: none;
    position: relative;
    font-size: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-purple);
    color: var(--text-light);
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: none;
}

.nav-separator {
    color: var(--primary-purple);
    font-size: 18px;
    margin: 0 5px;
}

.simple-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
    text-align: center;
    position: relative;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.simple-header-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.01em;
    margin: 0 auto;
    display: inline-block;
    line-height: 1.1;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.cta-button,
.cta-button-large,
.form-button,
.submit-reading {
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-button:hover,
.cta-button-large:hover,
.form-button:hover,
.submit-reading:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cta-button {
    padding: 12px 24px;
    font-size: 16px;
}

.cta-button-large {
    padding: 15px 40px;
    font-size: 18px;
}

.form-button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.submit-reading {
    width: 100%;
    padding: 15px 25px;
    background: #888;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.submit-reading.active {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    cursor: pointer;
    opacity: 1;
}

.submit-reading.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 44, 145, 0.2);
}

.secondary-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-purple);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.secondary-button:hover {
    background-color: #5a2480;
}

.show-more-reviews-btn {
    font-size: 1.3em;
    padding: 16px 36px;
    margin-top: 15px;
    border-radius: 14px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: background 0.2s;
}

/* ==========================================================================
   Product Images & Carousel
   ========================================================================== */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
}

.carousel-track {
    display: flex;
    position: relative;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex: 0 0 100%;
    transition: width 0.4s, flex-basis 0.4s;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: var(--primary-pink);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.best-seller-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-pink);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

@keyframes bounce-twice {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    25% {
        transform: translateY(-50%) scale(1.2);
    }
    50% {
        transform: translateY(-50%) scale(1);
    }
    75% {
        transform: translateY(-50%) scale(1.2);
    }
}

.carousel-arrow.next.bounce-twice {
    animation: bounce-twice 1s ease-in-out;
}

/* ==========================================================================
   Product Info
   ========================================================================== */
.product-title {
    color: var(--primary-purple);
    font-size: 28px;
    margin-bottom: 15px;
}

.pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 20px;
}

.discount-badge {
    background: var(--primary-pink);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.product-description {
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* ==========================================================================
   Reviews & Ratings
   ========================================================================== */
.reviews {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 15px;
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FFD700;
    text-align: center;
    margin: 0 auto 10px auto
}

.review-count {
    color: var(--text-dark);
    margin-left: 5px;
}

.testimonials-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--primary-purple);
    cursor: pointer;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.testimonials-btn:hover {
    background: var(--gray-light);
}

.rating {
    margin-bottom: 15px;
}

.stars i {
    color: #FFD700;
    font-size: 32px;
}

.stars i.half-alt {
    position: relative;
}

.stars i.half-alt:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 85%;
    background: var(--gray-light);
    opacity: .7;
}

.rating p {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

/* ==========================================================================
   Features & Service Info
   ========================================================================== */
.features {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 5px;
    background: white;
    border-radius: 12px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 0 5px;
    position: relative;
    flex: 1;
}

.feature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: 2px;
    border-right: 2px dotted #e0e0e0;
}

.feature i {
    font-size: 28px;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-purple);
    margin: 0;
    line-height: 1.3;
}

.service-description {
    margin-bottom: 30px;
}

.service-description p {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-description h3 {
    color: var(--primary-purple);
    text-align: left;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    list-style: none;
    position: relative;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    font-size: 18px;
    padding: 15px 5px;
    position: relative;
}

.service-features li:nth-child(-n+4) {
    border-bottom: 2px dotted #e0e0e0;
}

.service-features li:nth-child(odd) {
    border-right: 2px dotted #e0e0e0;
    padding-right: 20px;
}

.service-features li:nth-child(even) {
    padding-left: 20px;
}

.service-features i {
    color: var(--primary-purple);
    font-size: 24px;
    min-width: 24px;
}

.emoji {
    font-size: 24px;
    min-width: 24px;
    margin-right: 8px;
    display: inline-block;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial {
    background: var(--gray-light);
    border-radius: 8px;
    padding: 20px;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial blockquote {
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    font-size: 14px;
}

.testimonial cite {
    display: block;
    margin-top: 8px;
    color: var(--primary-purple);
    font-style: normal;
    font-weight: 500;
}

.testimonials {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    text-align: center;
}

.testimonials h2 {
    color: var(--primary-purple);
    font-size: 36px;
    margin-bottom: 10px;
}

.testimonial-grid {
    column-count: 2;
    column-gap: 15px;
    margin: 0 0 15px 0;
}

.testimonial-tile {
    display: flex;
    background: #fff8fa;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 8px 8px;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 15px;
    break-inside: avoid;
}

.testimonial-left {
    flex: 2 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 1.15em;
    color: #2d1a1a;
}

.verified-icon {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px 2px 4px;
    font-weight: 500;
    font-size: 0.98em;
    background: #e6e6e6;
    border-radius: 16px;
}

.verified-icon i {
    color: #2ecc40;
    margin-right: 4px;
    font-size: 1em;
}

.testimonial-date {
    display: block;
    font-size: 0.98em;
    color: #b08c8c;
    font-weight: 400;
    margin-bottom: 6px;
    margin-top: 0;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.1em;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-align: left;
}

.testimonial-text {
    color: #3a2323;
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 0;
    text-align: left;
}

.testimonial-right {
    width: 33%;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    min-width: 0;
    padding: 0;
    height: 100%;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: 6px;
    object-fit: cover;
    margin-left: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    display: block;
}

.reviews-placeholder {
    margin-top: 1.2em;
    font-style: italic;
    color: #7b3fe4;
    font-size: 1.05em;
    background: none;
    border-radius: 0;
    padding: 0.7em 0;
    text-align: center;
}

.privacy-choices {
    font-size: .9em;
    margin-top: 20px;
    text-align: center;
}
 
.privacy-choices, .privacy-choices a {
    color:#222;
}

.privacy-choices img, .privacy-icon {
    vertical-align: middle;
    margin-right: 4px;
    height: .8em;
    display: inline-block;
    position: relative;
    top: -0.1em;
}

/* ==========================================================================
   Forms & Modals
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--primary-purple);
    font-size: 16px;
    margin-bottom: 8px;
}

.birth-date-selects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.birth-date-selects select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    font-size: 16px;
    color: #333;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 35px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.birth-date-selects select:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 15px;
    color: #666;
    min-height: 100px;
    resize: vertical;
}

/* Reading Modal */
.reading-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    background: white;
    width: 450px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    animation: slideIn 0.3s ease-out;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

@keyframes slideIn {
    from {
        transform: translateX(450px);
    }
    to {
        transform: translateX(0);
    }
}

.modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.modal-header h2 {
    color: var(--primary-purple);
    font-size: 24px;
    margin: 0;
}

.modal-header h3 {
    color: var(--primary-purple);
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-purple);
    cursor: pointer;
    padding: 5px;
}

.modal-body {
    padding: 20px;
    flex: 1;
}

.modal-body h3 {
    color: var(--primary-purple);
    font-size: 18px;
    margin-bottom: 20px;
}

/* Express Reading Option */
.express-reading-option {
    background: linear-gradient(to right, #fdfbf6, #fff);
    border-radius: 16px;
    padding: 20px;
    margin: 25px 0;
    position: relative;
    border: 1px solid rgba(107, 44, 145, 0.1);
    box-shadow: 0 2px 12px rgba(107, 44, 145, 0.05);
    overflow: hidden;
}

.express-reading-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    opacity: 0.3;
}

.express-reading-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.express-reading-icon {
    background: rgba(107, 44, 145, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.express-reading-icon img {
    width: 28px;
    height: 28px;
    opacity: 0.8;
}

.express-reading-content {
    flex: 1;
}

.express-reading-content h4 {
    color: var(--primary-purple);
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.express-reading-price {
    color: var(--primary-purple);
    font-size: 20px;
    font-weight: 700;
    margin-top: 4px;
}

/* Toggle Switch */
.switch {
    position: relative;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-pink));
    opacity: 0.3;
    transition: opacity 0.2s ease;
    border-radius: 34px;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: transform 0.2s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}

input:checked + .slider {
    opacity: 1;
}

input:checked + .slider:before {
    transform: translateX(22px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Payment Methods
   ========================================================================== */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 15px;
}

.payment-methods img {
    height: 20px;
    width: auto;
}

.payment-icon {
    color: var(--text-dark);
    font-size: 24px;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    text-align: center;
}

.how-it-works h2 {
    color: var(--primary-purple);
    font-size: 36px;
    margin-bottom: 30px;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    gap: 10px;
}

.step {
    flex: 1;
    margin-bottom: 10px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: white;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
}

.step-number:after {
    content: attr(data-number);
    position: absolute;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.step h3 {
    color: var(--primary-purple);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.step-divider {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.step-divider .line {
    flex: 1;
    height: 2px;
    background: var(--primary-pink);
    opacity: 0.3;
}

.limited-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-purple);
}

.limited-slots i {
    font-size: 20px;
}

.limited-slots p {
    font-size: 14px;
}

/* ==========================================================================
   Right Choice Section
   ========================================================================== */
.right-choice {
    padding: 60px 20px;
    text-align: center;
    background: white;
}

.right-choice h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.for-column {
    background: #f8f5fb;
    padding: 40px;
    border-radius: 20px;
}

.not-for-column {
    background: #fff5f5;
    padding: 40px;
    border-radius: 20px;
}

.for-column h3, .not-for-column h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #6b2c91;
    font-weight: 600;
}

.not-for-column h3 {
    color: #ff4444;
}

.check-list, .cross-list {
    list-style: none;
    text-align: left;
}

.check-list li, .cross-list li {
    padding: 15px 0;
    position: relative;
    padding-left: 40px;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    border: none;
}

.check-list li:before {
    content: "✓";
    color: #37c137;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.cross-list li:before {
    content: "✕";
    color: #ff4444;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.rating {
    margin-top: 10px;
    text-align: center;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 60px 20px;
    background: var(--gray-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: "+";
    font-size: 24px;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.faq-question.active {
    color: var(--primary-purple);
}

.faq-question.active:after {
    content: "+";
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    display: none;
}

.faq-answer.show {
    padding: 0 20px 20px;
    display: block;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.contact-cta {
    text-align: center;
    margin-top: 40px;
}

.contact-cta h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: white;
    padding: 60px 20px 20px;
    border-top: 1px solid var(--gray-medium);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 10px;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: -3px;
    padding: 0;
}

.footer-logo-text span {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-purple);
    color: white;
}

.footer-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.footer-cta h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-cta p {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-links {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-dark);
}

.fine-print {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.fine-print p {
    font-size: 12px;
    line-height: 1.5;
    margin: 10px 0;
    color: #777;
    font-style: italic;
}

/* ==========================================================================
   Collapsible & Extra Content
   ========================================================================== */
.reading-extra-info {
    margin-top: 1.5em;
    border-radius: 0;
    background: none;
    box-shadow: none;
    padding: 0;
}

.collapsible-section {
    margin-bottom: 1em;
}

.collapsible-toggle {
    width: 100%;
    background: #7b3fe4;
    color: #fff;
    font-weight: bold;
    font-size: 1.15em;
    border: none;
    border-radius: 8px;
    padding: 15px 24px;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 0.5em;
    letter-spacing: 0.01em;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collapsible-toggle:after {
    content: '\25BC';
    font-size: 1.1em;
    margin-left: auto;
    transition: transform 0.2s;
    color: #fff;
}

.collapsible-toggle.active:after {
    transform: rotate(-180deg);
}

.collapsible-toggle.active {
    background: #5a2ca0;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    background: #f7f7fa;
    border-radius: 10px;
    box-shadow: none;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
    padding: 0 0.7em;
    font-size: 0.97em;
    line-height: 1.6;
}

.collapsible-content.open {
    padding: 1em 0.7em 1.2em 0.7em;
    max-height: 1200px;
    background: #f7f7fa;
    border-radius: 10px;
}

.collapsible-content h4 {
    font-size: 1.13em;
    margin-bottom: 0.6em;
    color: #6b2c91;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.collapsible-content p {
    margin-bottom: 1em;
    line-height: 1.6;
    font-size: 0.97em;
}

.collapsible-content ul {
    margin: 0.8em 0 1em 1.1em;
    padding: 0;
    line-height: 1.6;
}

.collapsible-content li {
    margin-bottom: 0.5em;
    font-size: 0.97em;
    line-height: 1.6;
}

.collapsible-content b {
    font-weight: 700;
    color: #7b3fe4;
    font-size: 1em;
}

.service-description .reading-extra-info .faq-container .faq-item:nth-child(-n+2) .faq-answer ul {
    margin-left: 0.5em;
    padding-left: 1.2em;
}

.service-description .reading-extra-info .faq-container .faq-item:nth-child(-n+2) .faq-answer ul li {
    padding-left: 0.2em;
    margin-bottom: 0.7em;
    line-height: 1.45;
}

.service-description .reading-extra-info .faq-container .faq-item:nth-child(-n+2) .faq-answer p {
    line-height: 1.42;
    margin-bottom: 1.1em;
    margin-top: 0.2em;
}

.service-description .reading-extra-info .faq-container .faq-item:nth-child(-n+2) .faq-answer h4 {
    margin-bottom: 0.9em;
    line-height: 1.18;
    font-size: 1.13em;
    font-weight: 700;
}

/* ==========================================================================
   Utilities & Helpers
   ========================================================================== */
.ask-questions-link {
    margin-top: .5em;
    text-align: center;
}

.disclaimer {
    color: #757575;
    font-size: 14px;
    text-align: center;
    margin-top: 0.5em;
}

.disclaimer a {
    color: #757575;
    text-decoration: underline;
}

.center {
    text-align: center;
}

.reserve-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 36px 0 28px 0;
}

.reserve-center .cta-button-large {
    margin-bottom: 18px;
}

.reserve-center .limited-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 24px 10px 0 10px;
}

.about-section .about-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.about-section .about-img {
    flex: 0 0 320px;
    text-align: center;
}

.about-section .about-img img {
    max-width: 320px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    margin: 0 auto;
    display: block;
}

.about-section .about-content {
    flex: 1 1 0;
    font-size: 1.15rem;
    line-height: 1.6;
}

.about-section .italic {
    font-style: italic;
    color: #6a4e2a;
    margin-bottom: 12px;
    font-size: 1.18rem;
}

.about-section .about-block.reverse {
    flex-direction: row-reverse;
}

/* ==========================================================================
   Help Section
   ========================================================================== */
.help {
    max-width: 700px;
    margin: 0 auto;
    padding: 36px 10px 0 10px;
}

.help h2 {
    text-align: center;
    color: #7a5a2a;
    margin-bottom: 18px;
    font-size: 2rem;
    font-weight: 700;
}

.help p {
    font-size: 1.13rem;
    margin-bottom: 22px;
    line-height: 1.7;
}

.help a {
    text-decoration: underline;
}

.help h1 {
    font-size: 1.3rem;
    color: #b07d2c;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 18px;
    text-align: center;
}

/* ==========================================================================
   Media Queries - Tablet (1024px and below)
   ========================================================================== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .image-container {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Media Queries - Mobile (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
    /* Buttons */
    .cta-button {
        padding: 10px 20px;
        font-size: 15px;
    }

    .cta-button-large {
        padding: 12px 30px;
        font-size: 16px;
    }

    .submit-reading {
        padding: 18px;
        font-size: 16px;
    }

    /* Features */
    .features {
        padding: 5px 5px 10px 5px;
        gap: 10px;
    }

    .feature {
        padding: 0 5px;
    }

    .feature i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .feature h3 {
        font-size: 14px;
    }

    .feature:not(:last-child)::after {
        right: -5px;
    }

    /* Service Features */
    .service-features {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-features li {
        font-size: 16px;
        padding: 15px 5px;
        border-right: none !important;
    }

    .service-features li:not(:last-child) {
        border-bottom: 2px dotted #e0e0e0;
    }

    .service-features li:nth-child(-n+4) {
        border-bottom: 2px dotted #e0e0e0;
    }

    .service-features li:nth-child(odd) {
        padding-right: 5px;
    }

    .service-features li:nth-child(even) {
        padding-left: 5px;
    }

    .service-features i {
        font-size: 20px;
        min-width: 20px;
    }
    
    .emoji {
        font-size: 20px;
        min-width: 20px;
    }

    /* Product Section */
    .product-section {
        padding: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .carousel-arrow.prev {
        left: 10px;
    }
    
    .carousel-arrow.next {
        right: 10px;
    }

    .product-title {
        font-size: 24px;
    }

    .current-price {
        font-size: 28px;
    }

    .original-price {
        font-size: 18px;
    }

    .testimonial {
        display: none;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .reviews {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    /* How It Works */
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step {
        margin-bottom: 0;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 8px;
        border-radius: 50%;
        border: 2px solid var(--primary-pink);
        color: var(--primary-pink);
    }

    .step h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .step p {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .step-divider {
        width: 2px;
    }

    .step-divider .line {
        width: 2px;
        height: 100%;
    }

    .how-it-works h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .testimonials h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    /* Comparison Section */
    .comparison {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .for-column, .not-for-column {
        padding: 30px 20px;
    }

    .for-column h3, .not-for-column h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .check-list li, .cross-list li {
        font-size: 16px;
        padding: 12px 0;
        padding-left: 35px;
    }

    .rating {
        margin-top: 10px;
    }

    .stars i {
        font-size: 28px;
    }

    .rating p {
        font-size: 20px;
    }

    /* Header & Navigation */
    .header {
        padding: 10px 15px;
    }

    .nav-container {
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .desktop-nav {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .logo {
        display: none;
    }

    .mobile-nav {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-nav .logo {
        display: block;
        text-align: left;
    }

    .logo-text {
        font-size: 18px;
        font-weight: 400;
        color: var(--text-dark);
        margin: 0;
    }

    .mobile-nav .logo h1 {
        font-size: 18px;
    }

    .mobile-links {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .nav-separator {
        font-size: 16px;
        margin: 0 3px;
    }

    .mobile-nav .nav-link {
        font-size: 14px;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        align-items: center;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
    }

    /* Modal */
    .modal-content {
        width: 100%;
        animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .submit-reading {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 18px;
        border-radius: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    
    .modal-body {
        padding-bottom: 80px;
    }

    /* Express Reading */
    .express-reading-text {
        gap: 15px;
    }
    
    .express-reading-icon {
        width: 40px;
        height: 40px;
    }
    
    .express-reading-icon img {
        width: 24px;
        height: 24px;
    }
    
    .express-reading-content h4 {
        font-size: 16px;
    }
    
    .express-reading-price {
        font-size: 18px;
    }

    /* Testimonials */
    .testimonial-grid {
        column-count: 1;
        column-gap: 0;
        margin: 0 0 0 0;
    }

    .testimonial-right {
        width: 30%;
    }

    .testimonial-text {
        color: #3a2323;
        font-size: .9em;
        line-height: 1.4;
        margin-bottom: 0;
        text-align: left;
    }

    /* About Section */
    .about-section .about-block,
    .about-section .about-block.reverse {
        flex-direction: column;
        gap: 0;
        margin-bottom: 32px;
        align-items: stretch;
    }

    .about-section .about-img, .about-section .about-content {
        width: 100%;
        max-width: 100%;
        flex: unset;
        text-align: center;
    }

    .about-section .about-img img {
        max-width: 98vw;
        min-width: 180px;
        margin-bottom: 12px;
    }

    .about-section .about-content {
        text-align: left;
        padding-bottom: 18px;
    }
}

/* ==========================================================================
   Media Queries - Small Mobile (600px and below)
   ========================================================================== */
@media (max-width: 600px) {
    .nav-container {
        gap: 10px;
        grid-template-columns: 1fr auto;
    }

    .logo-text {
        font-size: 16px;
    }

    .mobile-nav {
        gap: 8px;
    }

    .mobile-nav .logo h1 {
        font-size: 16px;
    }

    .mobile-links {
        gap: 12px;
    }

    .nav-separator {
        font-size: 14px;
        margin: 0 2px;
    }

    .mobile-nav .nav-link {
        font-size: 13px;
    }

    .simple-header {
        padding: 12px 0;
    }

    .simple-header-text {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Media Queries - Extra Small (480px and below)
   ========================================================================== */
@media (max-width: 480px) {
    .about-section {
        padding: 8px 2vw 0 2vw;
    }

    .about-section .about-img img {
        max-width: 98vw;
        min-width: 120px;
    }
}

/* ==========================================================================
   Media Queries - Tiny (400px and below)
   ========================================================================== */
@media (max-width: 400px) {
    .mobile-nav .nav-link, .mobile-nav .logo-text {
        font-size: 12px;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Media Queries - Medium Desktop (900px and below)
   ========================================================================== */
@media (max-width: 900px) {
    .about-section {
        padding: 12px 2vw 0 2vw;
    }

    .about-section .about-img {
        flex-basis: 180px;
    }

    .about-section .about-img img {
        max-width: 180px;
    }
}