/* Ensure header stays fixed at top */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: #fffcf1;
}

/* Pre-Drop Landing Page Overlay */
.pre-drop-overlay {
    position: fixed;
    top: 0; /* Start from very top */
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    min-height: 100vh; /* Ensure minimum full height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1rem;
    background: #fffcf1; /* Match the sections background */
    z-index: 10;
    overflow-y: auto; /* Allow vertical scrolling */
    margin: 0; /* Remove any margin */
}

.pre-drop-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fffcf1; /* Match the sections background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.pre-drop-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fffcf1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 80px; /* Push content below header */
    gap: 2rem; /* Reduced spacing between elements */
    padding-top: 12vh; /* Reduced padding for more compact hero section */
    padding-bottom: 4rem; /* Reduced bottom padding */
    min-height: 70vh; /* Reduced minimum height for hero section */
}

.pre-drop-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem; /* Reduced spacing between logo and countdown */
    margin-top: -4vh; /* Moved logo higher in the section */
}

.pre-drop-logo img {
    width: 800px; /* Increased from 650px - massive size for desktop */
    height: auto;
    max-width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .pre-drop-overlay {
        min-height: 100vh; /* Ensure full height */
    }
    .pre-drop-content {
        padding-top: 12vh; /* Increased padding for bigger hero section */
        gap: 2rem; /* Increased gap for better spacing */
        padding-bottom: 4rem; /* Increased bottom padding */
    }
    .pre-drop-logo {
        margin-bottom: 2rem;
    }
    .pre-drop-logo img {
        width: 650px; /* Increased from 520px - massive size for tablet */
    }
}

@media (max-width: 480px) {
    .pre-drop-logo {
        margin-bottom: 1.5rem;
    }
    .pre-drop-logo img {
        width: 520px; /* Increased from 420px - massive size for mobile */
    }
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0; /* Remove margin, use gap instead */
}

.shop-closed-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    margin-top: 2rem;
    color: #000000;
    line-height: 1.1;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.countdown-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

.countdown-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.countdown-divider {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #000000;
    opacity: 0.4;
    margin: 0 0.15rem;
}

.waitlist-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: auto;
    width: 100%;
}

.btn-ghost {
    background: #ca0013;
    border: 2px solid #ca0013;
    color: #fffcf1;
    padding: 0.75rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-top: auto;
    width: 265px;
}

.btn-ghost:hover {
    background: #ca0013;
    color: #fffcf1;
}

.waitlist-form {
    background: rgba(0, 0, 0, 0.8);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
}

.waitlist-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #fffcf1;
}

.waitlist-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fffcf1;
    opacity: 0.9;
}

.sms-signup-form {
    margin-bottom: 1.5rem;
}

.sms-signup-form .form-group {
    margin-bottom: 1.5rem;
}

.sms-signup-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #fffcf1;
    background: transparent;
    color: #fffcf1;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.sms-signup-form input:focus {
    border-color: #ca0013;
}

.sms-signup-form input::placeholder {
    color: #fffcf1;
    opacity: 0.7;
}

.sms-signup-form .btn-primary {
    background: #ca0013;
    color: #fffcf1;
    border: none;
    padding: 1rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 100%;
}

.sms-signup-form .btn-primary:hover {
    background: #a0000f;
}

.legal-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #fffcf1;
    opacity: 0.7;
    margin-top: 1.5rem;
    text-align: left;
}

.form-success {
    color: #ca0013;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .pre-drop-overlay {
        padding: 1rem;
        overflow-y: auto; /* Ensure scrolling on mobile */
    }
    
    .pre-drop-logo {
        margin-bottom: 2rem;
    }
    
    .pre-drop-logo img {
        width: 280px; /* Increased from 200px */
    }
    
    .shop-closed-title {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-bottom: 0;
    }
    
    .countdown-timer {
        gap: 0.25rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-divider {
        margin: 0 0.1rem;
    }
    
    .waitlist-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .waitlist-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .waitlist-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-ghost {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pre-drop-overlay {
        overflow-y: auto; /* Ensure scrolling on mobile */
        min-height: 100vh; /* Ensure full height */
    }
    .pre-drop-content {
        padding: 0;
        padding-top: 18vh; /* Increased padding for bigger hero section on mobile */
        gap: 2rem; /* Increased gap for better spacing */
        padding-bottom: 6rem; /* Increased bottom padding for more height on mobile */
        min-height: 85vh; /* Increased minimum height for hero section on mobile */
    }
    
    .pre-drop-logo {
        margin-bottom: 0.5rem; /* Much tighter spacing between logo and countdown for mobile */
        margin-top: -4vh; /* Moved logo higher in the section */
    }
    
    .pre-drop-logo img {
        width: 400px; /* Increased size for mobile */
        max-width: 90vw; /* Ensure it doesn't overflow */
    }
    
    .shop-closed-title {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-top: 1rem;
    }
    
    .countdown-timer {
        gap: 0.2rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .countdown-divider {
        margin: 0 0.08rem;
    }
    
    .waitlist-container {
        margin-top: 2rem; /* Ensure CTA button is visible */
    }
    
    .btn-ghost {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.2rem;
        width: 100%;
        max-width: 220px;
    }
    
    .waitlist-form {
        padding: 1.5rem;
    }
    
    .waitlist-title {
        font-size: 1.25rem;
    }
    
    .waitlist-subtitle {
        font-size: 0.8rem;
    }
    
    .legal-text {
        font-size: 0.625rem;
    }
}

/* Shop Hero Section */
.shop-hero {
    color: #fff;
    padding: 3rem 1rem 0 1rem;
    text-align: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.shop-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay removed - background video/image now visible without dark overlay */

.shop-hero-content {
    position: relative;
    z-index: 2;
}

.shop-hero-content.left-align {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.shop-hero-titles {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-align: left;
}

.shop-hero-titles h1 {
    font-family: 'Anton', , sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #fffcf1;
    line-height: 1.1;
}

.shop-hero-titles .shop-hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fffcf1;
    opacity: 1;
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin-bottom: 0;
    max-width: 350px;
    text-align: left;
    line-height: 1.8;
}

/* Shop Sections */
.shop-section {
    padding: 3rem 0;
    background: #fffcf1;
}

/* Reduce spacing below 'What You Wear Matters' section */
.shop-section:first-of-type {
    padding-bottom: 1.5rem !important;
}

.shop-section-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.shop-section-header h2 {
    font-family: 'Anton', , sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-section-header p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.7;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Product Cards - Rounded Edge Design (matching "This Is Where Healing Begins" cards) */
.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card.featured {
    grid-column: span 2;
}

.product-image {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 380px;
    overflow: hidden;
    background: transparent;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    max-width: 360px;
}

.product-content h3 {
    font-family: 'Anton', , sans-serif;
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.product-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 250px;
    font-weight: 500;
}

.product-content .btn {
    margin-top: 0;
    align-self: center;
    min-width: 140px;
    padding: 0.7rem 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border-radius: 4px;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-trigger::after {
    display: none;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: #fffcf1;
    color: #ca0013;
}

/* Responsive Design */
@media (max-width: 900px) {
    .shop-hero-content.left-align {
        align-items: center;
        justify-content: flex-start;
    }
    .shop-hero-titles {
        margin-left: 3vw;
    }
    .shop-hero-titles h1 {
        font-size: 1.5rem;
    }
    .shop-hero-titles .shop-hero-subtitle {
        font-size: 1rem;
        max-width: 90vw;
    }
    
    .shop-section-header h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .product-card.featured {
        grid-column: span 1;
    }
    
    .product-image {
        max-width: 360px;
        height: 360px;
        border-radius: 10px;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown-menu a {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .shop-hero {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .shop-hero-content.left-align {
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 0;
    }
    .shop-hero-titles {
        margin-left: 2vw;
    }
    .shop-hero-titles h1 {
        font-size: 1.1rem;
    }
    .shop-hero-titles .shop-hero-subtitle {
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        line-height: 1.8 !important;
    }
    
    .shop-section {
        padding: 2rem 0;
    }
    
    .shop-section-header {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .shop-section-header h2 {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .shop-section-header p {
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        line-height: 1.8 !important;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-image {
        max-width: 340px;
        height: 340px;
        margin-bottom: 1.25rem;
        border-radius: 10px;
    }
    
    .product-content h3 {
        font-size: 1.5rem;
    }
    
    .product-tagline {
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        line-height: 1.8 !important;
        margin-bottom: 1.25rem;
    }
    
    .nav-dropdown-trigger::after {
        display: none;
    }
    
    .shop-hero {
        height: 250px;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
}

/* Accessibility */
.product-card:focus-within {
    outline: none;
}

.nav-dropdown-menu a:focus {
    background: #fffcf1;
    color: #ca0013;
    outline: none;
}

/* Print Styles */
@media print {
    .shop-hero {
        background: #fff !important;
        color: #000 !important;
    }
    
    .product-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .nav-dropdown-menu {
        display: none;
    }
} 

/* Slide-up Modal Styles */
.waitlist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.waitlist-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #000000;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
}

.waitlist-modal.active .modal-content {
    transform: translateY(0);
}

/* Desktop: Center modal */
@media (min-width: 769px) {
    .waitlist-modal {
        align-items: center;
    }
    
    .modal-content {
        transform: scale(0.8) translateY(20px);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    }
    
    .waitlist-modal.active .modal-content {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Mobile: Slide up from bottom */
@media (max-width: 768px) {
    .waitlist-modal {
        align-items: flex-end;
    }
    
    .modal-content {
        border-radius: 12px 12px 0 0;
        transform: translateY(100%);
    }
    
    .waitlist-modal.active .modal-content {
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fffcf1;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.waitlist-title {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #fffcf1;
    text-align: center;
}

.waitlist-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #fffcf1;
    opacity: 0.9;
    text-align: center;
}

.sms-signup-form {
    margin-bottom: 1.5rem;
}

.sms-signup-form .form-group {
    margin-bottom: 1.5rem;
}

.sms-signup-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #fffcf1;
    background: transparent;
    color: #fffcf1;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.sms-signup-form input:focus {
    border-color: #ca0013;
}

.sms-signup-form input::placeholder {
    color: #fffcf1;
    opacity: 0.7;
}

.sms-signup-form .btn-primary {
    background: #ca0013;
    color: #fffcf1;
    border: none;
    padding: 1rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: 100%;
}

.sms-signup-form .btn-primary:hover {
    background: #a0000f;
}

.legal-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #fffcf1;
    opacity: 0.7;
    margin-top: 1.5rem;
    text-align: left;
}

.form-success {
    color: #ca0013;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Mobile Responsive for Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        border-radius: 12px 12px 0 0;
    }
    
    .waitlist-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .waitlist-subtitle {
        font-size: 0.9rem;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.75rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 1rem;
    }
    
    .waitlist-title {
        font-size: 1.25rem;
    }
    
    .waitlist-subtitle {
        font-size: 0.8rem;
    }
    
    .legal-text {
        font-size: 0.625rem;
    }
} 

/* Hide main content when pre-drop overlay is active */
.pre-drop-overlay:not([style*="display: none"]) ~ main {
    display: none;
}

/* Ensure main content is visible when overlay is hidden */
main {
    display: block;
} 

/* Ensure proper body spacing with fixed header */
body {
    padding-top: 80px; /* Account for fixed header */
}

/* Ensure main content and footer are visible when overlay is hidden */
main, footer {
    display: block;
}

/* Healing With Purpose Section Styles */
.healing-purpose-section {
    background: transparent;
    padding: 10rem 0 4rem 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.healing-purpose-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding: 0 1rem;
}

.healing-purpose-text {
    text-align: left;
    max-width: 600px;
    margin: 0;
    flex: 1;
}

.healing-purpose-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    color: #ca0013;
    margin-bottom: 1rem;
    text-align: left;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.healing-purpose-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #000000;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.healing-purpose-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #000000;
    text-align: left;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.healing-purpose-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    justify-content: flex-start;
}

.btn-healing-primary {
    background: #ca0013;
    color: #fffcf1;
    border: 2px solid #ca0013;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
    width: 265px;
    line-height: 1.2;
    height: auto;
    min-height: 48px;
}

.btn-healing-primary:hover,
.btn-healing-primary:focus {
    background: #a00012;
    color: #fffcf1;
    border-color: #a00012;
}

.btn-healing-secondary {
    background: transparent;
    color: #ca0013;
    border: 2px solid #ca0013;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
    width: 265px;
    line-height: 1.2;
    height: auto;
    min-height: 48px;
}

.btn-healing-secondary:hover,
.btn-healing-secondary:focus {
    background: #ca0013;
    color: #fffcf1;
}

    .create-with-us-link {
        text-align: center;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    @media (max-width: 600px) {
        .create-with-us-link {
            margin-top: 2rem;
            margin-bottom: 1.5rem;
        }
    }

.create-with-us-question {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.create-with-us-text {
    color: #ca0013;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.create-with-us-text:hover {
    text-decoration: underline;
}

.healing-purpose-image {
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
}

.healing-purpose-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Real Impact Section Styles */
.real-impact-section {
    background: transparent;
    padding: 2rem 0 6rem 0;
    width: 100vw;
}

.real-impact-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.real-impact-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    color: #ca0013;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.real-impact-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 2rem;
}

.impact-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: none;
    border: 2px solid #ca0013;
    min-height: 320px;
    justify-content: center;
}

.step-icon {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 50%;
    background: #ca0013;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.step-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.7;
    margin: 0;
}

.mobile-break-title {
    display: none;
}

/* Mobile Responsive Styles */
/* Desktop Layout */
@media (min-width: 768px) {
    .impact-steps {
        flex-direction: row;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .impact-step {
        flex: 1;
        max-width: none;
    }
}

@media (max-width: 900px) {
    .healing-purpose-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .impact-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .impact-step {
        max-width: 600px;
    }
    
    .mobile-break-title {
        display: inline;
    }
}

@media (max-width: 600px) {
    .healing-purpose-section {
        padding: 4rem 0 2rem 0;
    }
    
    .healing-purpose-content {
        gap: 1.5rem;
    }
    
    .healing-purpose-text {
        text-align: center;
    }
    
    .healing-purpose-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }
    
    .healing-purpose-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .healing-purpose-body {
        font-size: 1.125rem !important;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .healing-purpose-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .btn-healing-primary,
    .btn-healing-secondary {
        width: 100%;
        max-width: 280px;
        font-size: 0.92rem !important;
        padding: 0.7rem 1.2rem;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .impact-steps {
        gap: 1.5rem;
    }
    
    .impact-step {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .real-impact-section {
        padding: 0.5rem 0 4rem 0;
    }
    
    .real-impact-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .real-impact-subtitle {
        font-size: 1.125rem !important;
        margin-bottom: 3rem;
    }
    
    .step-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .step-description {
        font-size: 1.125rem !important;
        font-weight: 500 !important;
        line-height: 1.5 !important;
    }
}

/* TEMPORARY: Simplified shop version - Hide only the numeric timer */
.countdown-timer {
    display: none !important;
}

.healing-purpose-section {
    display: none !important;
}

.real-impact-section {
    display: none !important;
}

.shop-closed-title {
    font-size: 1rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
} 