/* Front-office Styles */

/* Scroll offset for sticky navbar - prevents content from being hidden behind navbar */
html {
    scroll-padding-top: 80px; /* Height of navbar + small buffer */
}

@media (min-width: 992px) {
    html {
        scroll-padding-top: 90px; /* Slightly more for desktop */
    }
}

.form-step {
    display: none;
}
.form-step.active {
    display: block;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}
.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}
.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    transition: all 0.3s;
}
.step-item.active .step-circle {
    background: var(--bs-primary);
    color: white;
    transform: scale(1.1);
}
.step-item.completed .step-circle {
    background: var(--bs-success);
    color: white;
}
.step-label {
    font-size: 0.85rem;
    color: #666;
}
.step-item.active .step-label {
    color: var(--bs-primary);
    font-weight: bold;
}
.btn-check:checked + .btn-outline-primary {
    background-color: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
}
.btn-check:checked + .btn-outline-success {
    background-color: var(--bs-success);
    color: white;
    border-color: var(--bs-success);
}
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}
.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}
.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: bold;
    transition: all 0.3s;
}
.step-item.active .step-circle {
    background: var(--bs-primary);
    color: white;
    transform: scale(1.1);
}
.step-item.completed .step-circle {
    background: var(--bs-success);
    color: white;
}
.step-label {
    font-size: 0.85rem;
    color: #666;
}
.step-item.active .step-label {
    color: var(--bs-primary);
    font-weight: bold;
}

/* Validation Styles */
.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.invalid-feedback {
    background: #fee;
    border-left: 3px solid #dc3545;
    color: #721c24;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}
.invalid-feedback strong {
    color: #dc3545;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.shake {
    animation: shake 0.5s;
}

/* Special Box Styles */
.special-box {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 16px;
    padding: 1.75rem;
    color: white;
    position: relative;
}

.special-box-header {
    margin-bottom: 0;
}

.special-header-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    stroke-width: 2;
}

.special-header-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.special-header-desc {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
}

.special-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.special-toggle-btn {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.special-toggle-icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.special-toggle-btn:hover .special-toggle-icon-circle {
    background: rgba(255, 255, 255, 0.3);
}

.special-toggle-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.special-toggle-text {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    transition: text-decoration-color 0.2s;
}

.special-toggle-btn:hover .special-toggle-text {
    text-decoration-color: rgba(255, 255, 255, 1);
}

.special-chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.special-box.expanded .special-chevron {
    transform: rotate(180deg);
}
.special-content {
    display: none;
    margin-top: 1rem;
}
.special-content.show {
    display: block;
}
.special-content textarea {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #333;
}

/* Personal Message Box Styles */
.personal-message-box {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 16px;
    padding: 1.75rem;
    color: white;
    position: relative;
    margin-top: 1.5rem;
}

.personal-message-box-header {
    margin-bottom: 0;
}

.personal-message-header-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    stroke-width: 2;
}

.personal-message-header-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.personal-message-header-desc {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.5;
}

.personal-message-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.personal-message-toggle-btn {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.personal-message-toggle-icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.personal-message-toggle-btn:hover .personal-message-toggle-icon-circle {
    background: rgba(255, 255, 255, 0.3);
}

.personal-message-toggle-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.personal-message-toggle-text {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    transition: text-decoration-color 0.2s;
}

.personal-message-toggle-btn:hover .personal-message-toggle-text {
    text-decoration-color: rgba(255, 255, 255, 1);
}

.personal-message-chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.personal-message-box.expanded .personal-message-chevron {
    transform: rotate(180deg);
}

.personal-message-content {
    display: none;
    margin-top: 1rem;
}

.personal-message-content.show {
    display: block;
}

.personal-message-content textarea {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #333;
}

/* Magic Banner Styles */
.magic-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
}
.magic-icon {
    line-height: 1;
    flex-shrink: 0;
    color: white;
}
.magic-text h5 {
    font-weight: 700;
    font-size: 18px;
}
.magic-text p {
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Enhanced Textarea */
.enhanced-textarea {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.6;
}
.enhanced-textarea:focus {
    border-color: #f5576c;
    box-shadow: 0 0 0 0.2rem rgba(245, 87, 108, 0.15);
}

/* Description Footer */
.description-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0 0.25rem;
}

/* Premium Design Styles */
body {
    background: #f9fafb;
    min-height: 100vh;
}

.premium-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gradient-text {
    background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 33%, #a855f7 66%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-age {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.2s;
    padding: 0.75rem;
}

.btn-gender {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.2s;
    padding: 0.75rem;
}

.btn-age:hover,
.btn-gender:hover {
    background: white;
    border-color: #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-check:checked + .btn-age {
    background: linear-gradient(135deg, #eef2ff 0%, #f3e8ff 100%);
    border-color: #c7d2fe;
    color: #4338ca;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2), 0 0 0 2px #c7d2fe;
}

.btn-check:checked + .btn-gender-boy {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-color: #bfdbfe;
    color: #1e40af;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.2), 0 0 0 2px #bfdbfe;
}

.btn-check:checked + .btn-gender-girl {
    background: linear-gradient(135deg, #fce7f3 0%, #fce7f3 100%);
    border-color: #fbcfe8;
    color: #be185d;
    box-shadow: 0 4px 6px -1px rgba(236, 72, 153, 0.2), 0 0 0 2px #fbcfe8;
}

.btn-genre,
.btn-purpose {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.2s;
    padding: 0.75rem;
}

.btn-genre:hover,
.btn-purpose:hover {
    background: white;
    border-color: #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-check:checked + .btn-genre,
.btn-check:checked + .btn-purpose {
    background: linear-gradient(135deg, #eef2ff 0%, #f3e8ff 100%);
    border-color: #c7d2fe;
    color: #4338ca;
    box-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.2), 0 0 0 2px #c7d2fe;
}

.premium-input {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
}

.premium-input:focus {
    background: white;
    border-color: #c7d2fe;
    outline: none;
    box-shadow: 0 0 0 3px rgba(199, 210, 254, 0.5);
}

.premium-textarea {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
    min-height: 120px;
}

.premium-textarea:focus {
    background: white;
    border-color: #c7d2fe;
    outline: none;
    box-shadow: 0 0 0 3px rgba(199, 210, 254, 0.5);
}

.btn-premium-gradient {
    background: linear-gradient(to right, #4f46e5, #7c3aed, #ec4899);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
    transition: all 0.2s;
}

.btn-premium-gradient:hover {
    background: linear-gradient(to right, #4338ca, #6d28d9, #db2777);
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
    color: white;
}

/* Hide play icon on mobile CTA buttons */
@media (max-width: 767.98px) {
    .btn-premium-gradient.btn-lg i[data-lucide="play"],
    .btn-premium-gradient.btn-lg .lucide-20 {
        display: none !important;
    }

    .btn-premium-gradient.btn-lg {
        font-size: 0.92rem !important;
        padding: 0.75rem 1rem !important;
        white-space: nowrap;
    }

    /* Stack feature items - 2 in a row, 1 below on mobile */
    .hero-container .d-flex.gap-4.mt-4 {
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        justify-content: center !important;
    }

    .hero-container .d-flex.gap-4.mt-4 > div {
        flex: 0 0 calc(50% - 0.375rem) !important;
        max-width: calc(50% - 0.375rem) !important;
        justify-content: center !important;
    }

    .hero-container .d-flex.gap-4.mt-4 > div span {
        font-size: 0.875rem !important;
        white-space: nowrap;
    }

    .hero-container .d-flex.gap-4.mt-4 > div:nth-child(3) {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
    }

    /* Add more space between CTA button and trust badges in price block */
    .trust-badges {
        margin-top: 1.5rem !important;
    }
}

/* Green gradient for submit button */
#submit-btn.btn-premium-gradient {
    background: linear-gradient(to right, #22c55e, #16a34a, #15803d);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.4);
}

#submit-btn.btn-premium-gradient:hover {
    background: linear-gradient(to right, #16a34a, #15803d, #166534);
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.5);
    transform: scale(1.03);
}

.icon-container {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #eef2ff 0%, #f3e8ff 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gender-icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gender-icon-circle-boy {
    background: #dbeafe;
}

.gender-icon-circle-girl {
    background: #fce7f3;
}

#prev-btn {
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.5rem !important;
    font-weight: 500;
    display: none;
}

#submit-btn {
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.5rem !important;
    display: none;
}

.footer-sparkles {
    width: 0.75rem;
    height: 0.75rem;
    color: #a855f7;
    display: inline-block;
    vertical-align: middle;
}

/* Navigation Buttons Container */
.navigation-buttons {
    gap: 1rem;
}

@media (max-width: 767.98px) {
    .navigation-buttons {
        gap: 2rem;
    }
}

/* Mobile Navigation Buttons */
@media (max-width: 767.98px) {
    .mobile-next-btn {
        font-size: 1.2rem;
        padding: 0.9rem 1.5rem !important;
    }

    #prev-btn {
        font-size: 0.9rem;
        padding: 0.675rem 1.125rem !important;
    }

    /* Ensure all buttons in navigation-buttons container have full width on mobile */
    .navigation-buttons .btn {
        width: 100% !important;
        margin: 0 !important;
    }
}

.w-md-auto {
    width: 100%;
}

@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important;
    }
}

/* Required field asterisk */
.required-asterisk {
    color: #212529;
}

/* Header subtitle */
.header-subtitle {
    font-size: 1.155rem;
}

/* Header subtitle small (77% of header-subtitle) */
.header-subtitle-small {
    font-size: 0.88935rem;
}

/* Header question */
.header-question {
    font-size: 1.5625rem; /* 25px */
    margin-top: 0;
    margin-bottom: 0;
}

/* Icon Container Heights */
.icon-height-sm {
    height: 1.5rem;
}

.icon-height-md {
    height: 2rem;
}

/* Icon Sizes */
.icon-xs {
    width: 0.75rem;
    height: 0.75rem;
}

.icon-sm {
    width: 0.875rem;
    height: 0.875rem;
}

.icon-base {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-md {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-lg {
    width: 1.75rem;
    height: 1.75rem;
}

.icon-xl {
    width: 2rem;
    height: 2rem;
}

.icon-2xl {
    width: 2.5rem;
    height: 2.5rem;
}

.icon-3xl {
    width: 3rem;
    height: 3rem;
}

/* Text Colors */
.text-indigo {
    color: #6366f1;
}

.text-orange {
    color: #f97316;
}

.text-green {
    color: #10b981;
}

.text-blue {
    color: #2563eb;
}

.text-gray-dark {
    color: #1f2937;
}

.text-green-dark {
    color: #16a34a;
}

.text-pink {
    color: #ec4899;
}

.text-yellow {
    color: #eab308;
}

.text-purple {
    color: #a855f7;
}

/* Card Borders */
.card-border-gray {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
}

.card-border-green {
    border: 1px solid #d1fae5;
    border-radius: 0.75rem;
}

/* Background Colors & Gradients */
.bg-pink-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.bg-purple-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.bg-orange-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.bg-light-blue {
    background: #dbeafe;
}

.bg-orange-light {
    background: #fef3e7;
}

.bg-green-light {
    background: #f0fdf4;
}

.bg-gray-light {
    background: #f9fafb;
}

/* Rounded Circles */
.circle-sm {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-md {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Utility Classes */
.stroke-width-2 {
    stroke-width: 2;
}

.flex-shrink-none {
    flex-shrink: 0;
}

.color-white {
    color: white;
}

.rounded-lg {
    border-radius: 0.75rem;
}

.bg-green-primary {
    background: #16a34a;
}

/* Thank You Page Styles */
.bg-gray-50 {
    background-color: #f9fafb;
}

/* Thank You Book */
.thank-you-book {
    width: 192px;
    height: 224px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    border: 4px solid #ddd6fe;
}

.book-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.sparkle-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.book-bottom-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #a855f7, #ec4899, #a855f7);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Book sparkles */
.book-sparkle {
    position: absolute;
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.book-sparkle-1 {
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background-color: #fde047;
}

.book-sparkle-2 {
    bottom: -8px;
    left: -8px;
    width: 12px;
    height: 12px;
    background-color: #f9a8d4;
    animation-delay: 0.5s;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Voice waves container */
.voice-waves-container {
    margin-top: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 48px;
}

.voice-wave {
    width: 6px;
    background: linear-gradient(to top, #a855f7, #ec4899);
    border-radius: 9999px;
    transition: all 0.15s ease-in-out;
    animation: wave-random 1.5s ease-in-out infinite;
}

.voice-wave:nth-child(1) {
    animation-delay: 0s;
}

.voice-wave:nth-child(2) {
    animation-delay: 0.1s;
}

.voice-wave:nth-child(3) {
    animation-delay: 0.2s;
}

.voice-wave:nth-child(4) {
    animation-delay: 0.3s;
}

.voice-wave:nth-child(5) {
    animation-delay: 0.4s;
}

.voice-wave:nth-child(6) {
    animation-delay: 0.5s;
}

.voice-wave:nth-child(7) {
    animation-delay: 0.6s;
}

@keyframes wave-random {
    0%, 100% {
        height: 20%;
        opacity: 0.5;
    }
    50% {
        height: 70%;
        opacity: 1;
    }
}

/* Step numbers */
.step-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #f3e8ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 2px;
}

/* Payment Card Badges */
.payment-card-badge {
    padding: 8px 16px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    min-width: 70px;
    text-align: center;
    line-height: 1.2;
}

.payment-card-badge-sm {
    padding: 6px 12px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.7rem;
    min-width: 56px;
    text-align: center;
    line-height: 1.1;
}

/* Hide step-5-only sections by default using visibility */
.hidden-step {
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Form container max-width */
.form-container {
    max-width: 42rem;
}

/* Step headers hidden by default */
.step-header {
    display: none;
}

/* Lock icon styling */
.lock-icon {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

/* Secure checkout text sizes */
.secure-text {
    font-size: 0.9rem;
}

.secure-redirect-text {
    font-size: 0.7rem;
}

/* Payment icon images */
.payment-icon-img {
    width: 32px;
    height: 20px;
}

/* Bonus features title */
.bonus-title {
    font-size: 1.125rem;
}

/* Sparkle inline icon */
.sparkle-inline {
    display: inline-block;
    vertical-align: middle;
}

/* Review special details section */
.review-special-section {
    display: none;
    margin-top: 1rem;
}

/* Logo styles */
.navbar-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar-logo:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.navbar-brand-content {
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar-brand-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.navbar-brand-slogan {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 400;
    line-height: 1;
    margin-top: 2px;
}

/* Navbar z-index fix */
.navbar.sticky-top {
    z-index: 10000 !important;
}

/* Ensure navbar container doesn't clip content on mobile */
@media (max-width: 991.98px) {
    .navbar .container {
        overflow: visible !important;
    }

    .navbar {
        overflow: visible !important;
    }
}


/* Thank You page styles */
.success-checkmark-circle {
    width: 64px;
    height: 64px;
    background-color: #22c55e;
}

.success-checkmark-icon {
    width: 40px;
    height: 40px;
}

.thank-you-card-border {
    border-color: #e5e7eb !important;
}

.sparkle-icon-sm {
    width: 20px;
    height: 20px;
}

.sparkle-icon-md {
    width: 32px;
    height: 32px;
}

.book-gradient-bg {
    background: linear-gradient(to bottom right, #faf5ff 0%, #fce7f3 100%);
}

.secure-checkout-section {
    transform: scale(0.8);
    transform-origin: center;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.secure-checkout-section .d-inline-flex {
    white-space: nowrap;
}

@media (min-width: 768px) {
    .secure-checkout-section {
        transform-origin: right center;
        align-items: flex-end;
        margin-left: auto;
        width: auto;
    }
}

/* Submit Button Width - Match Secure Checkout */
@media (min-width: 768px) {
    #submit-btn {
        padding-left: 2.2rem !important;
        padding-right: 2.2rem !important;
    }
}

/* Lock Pulse Animation */
.lock-pulse {
    animation: lock-pulse-animation 2.5s ease-in-out infinite;
}

@keyframes lock-pulse-animation {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* Home Page Styles */
.hero-container {
    position: relative;
    z-index: 1;
}

.preview-card-scale {
    transform: scale(0.9);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(0.9) translateY(0);
    }
}

/* Modern Glassmorphism Card for Audio Player */
.glass-card {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Player Ribbon - Gift Style */
.player-ribbon {
    position: absolute;
    top: 48px;
    left: -56px;
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.5);
    z-index: 10;
    transform: rotate(-45deg);
    transform-origin: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.player-ribbon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #be185d transparent transparent;
}

.player-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #be185d transparent transparent transparent;
}

.glass-card:hover .player-ribbon {
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.6);
}

/* Mobile ribbon adjustment */
@media (max-width: 767px) {
    .player-ribbon {
        top: 44px;
        left: -48px;
        padding: 6px 32px;
        font-size: 0.65rem;
    }
}

/* New Audio Artwork Design */
.audio-artwork-wrapper {
    position: relative;
    display: inline-block;
}

.audio-artwork {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #312e81 100%);
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.5),
                0 0 0 1px rgba(96, 165, 250, 0.2) inset,
                0 0 40px rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Animated stars background */
.audio-artwork::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent);
    background-size: 100% 100%;
    background-position: 0 0;
    animation: twinkle 3s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}


.audio-artwork:hover {
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.7),
                0 0 0 1px rgba(96, 165, 250, 0.4) inset,
                0 0 60px rgba(59, 130, 246, 0.5);
    transform: scale(1.05);
}

.audio-artwork i,
.audio-artwork svg {
    position: relative;
    z-index: 2;
}

/* Time Overlay on Artwork */
.audio-time-overlay {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    font-size: 0.75rem;
    font-weight: 700;
    color: #1f2937;
    white-space: nowrap;
}

.audio-time-overlay .time-separator {
    margin: 0 4px;
    color: #9ca3af;
}

.audio-time-overlay .current-time {
    color: #8b5cf6;
}

.audio-time-overlay .total-time {
    color: #6b7280;
}

/* Audio Player Typography & Icons */
.glass-card h5 {
    font-weight: 700;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card .lucide-32 {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.glass-card .text-muted {
    font-weight: 500;
    color: #6b7280 !important;
}

/* Enhanced Badges with Modern Glassmorphism */
.badge-girl {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge-girl:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.35);
}

.badge-adventure {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge-adventure:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

.badge-boy {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge-boy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

.badge-discovery {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge-discovery:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

.badge-calming {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-calming::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.badge-calming:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35), 0 0 20px rgba(6, 182, 212, 0.2);
}

.badge-calming:hover::after {
    width: 300px;
    height: 300px;
}

.badge-space {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3), 0 0 15px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(147, 197, 253, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-space::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translate(-25%, -25%); opacity: 0.3; }
    50% { transform: translate(25%, 25%); opacity: 0.6; }
}

.badge-space:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.4), 0 0 25px rgba(59, 130, 246, 0.4);
}

.badge-adventure-new {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3), 0 0 15px rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(254, 243, 199, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-adventure-new::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.badge-adventure-new:hover::after {
    width: 300px;
    height: 300px;
}

.badge-adventure-new:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4), 0 0 25px rgba(251, 191, 36, 0.4);
}

.badge-age {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-age::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes slide-shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.badge-age:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.3);
}

.badge-age:hover::after {
    animation: slide-shine 1.5s ease-in-out infinite;
}

.badge-age-9 {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-age-9::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes slide-shine-age9 {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.badge-age-9:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4), 0 0 20px rgba(249, 115, 22, 0.3);
}

.badge-age-9:hover::after {
    animation: slide-shine-age9 1.5s ease-in-out infinite;
}

.badge-magic {
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge-magic:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.35);
}

.badge-friendship {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge-friendship::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.badge-friendship:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4), 0 0 20px rgba(236, 72, 153, 0.2);
}

.badge-friendship:hover::after {
    width: 300px;
    height: 300px;
}

.player-btn-sm {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.player-btn-sm:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Enhanced Play Button with Glow */
.player-btn-lg {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4),
                0 0 0 4px rgba(139, 92, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.player-btn-lg::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.player-btn-lg:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5),
                0 0 0 6px rgba(139, 92, 246, 0.15),
                0 0 60px rgba(139, 92, 246, 0.3);
}

.player-btn-lg:hover::before {
    opacity: 0.6;
}

.player-btn-lg:active {
    transform: scale(1.05);
}

/* New Progress Ring Design */
.player-progress-ring {
    position: relative;
    display: inline-block;
}

.progress-ring-svg {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(139, 92, 246, 0.1);
    stroke-width: 4;
}

.progress-ring-bar {
    fill: none;
    stroke: #8b5cf6;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5));
}

/* New Play Button in Center of Ring */
.player-btn-lg-new {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4),
                0 0 0 4px rgba(255, 255, 255, 0.9),
                0 0 0 5px rgba(139, 92, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.player-btn-lg-new::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    opacity: 0;
    filter: blur(16px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.player-btn-lg-new:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5),
                0 0 0 4px rgba(255, 255, 255, 1),
                0 0 0 6px rgba(139, 92, 246, 0.3),
                0 0 60px rgba(139, 92, 246, 0.3);
}

.player-btn-lg-new:hover::before {
    opacity: 0.6;
}

.player-btn-lg-new:active {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Subtle Pulse Animation for New Play Button */
@keyframes pulse-glow-new {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4),
                    0 0 0 4px rgba(255, 255, 255, 0.9),
                    0 0 0 5px rgba(139, 92, 246, 0.2);
    }
    50% {
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5),
                    0 0 0 4px rgba(255, 255, 255, 0.9),
                    0 0 0 7px rgba(139, 92, 246, 0.3);
    }
}

.player-btn-lg-new {
    animation: pulse-glow-new 3s ease-in-out infinite;
}

.player-btn-lg-new:hover {
    animation: none;
}

/* Audio Progress Bar */
.audio-progress-container {
    width: 100%;
    padding: 0 8px;
    margin-top: 8px;
}

.audio-progress-track {
    position: relative;
    height: 6px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-progress-track:hover {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
}

.audio-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 100px;
    transition: width 0.1s ease;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.audio-progress-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 0 2px #8b5cf6;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: grab;
}

.audio-progress-track:hover .audio-progress-thumb {
    opacity: 1;
}

.audio-progress-thumb:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Enhanced Progress Bar with Gradient */
.progress-bar-custom {
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    overflow: visible;
    position: relative;
}

.progress-bar-custom .progress-bar {
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.progress-bar-custom .progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4),
                0 0 0 3px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.progress-bar-custom:hover .progress-bar::after {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5),
                0 0 0 4px rgba(139, 92, 246, 0.3);
}

.progress-width-32 {
    width: 32%;
}

/* Enhanced Sample Cards with Glassmorphism */
.sample-card-purple {
    background: linear-gradient(135deg, rgba(238, 242, 255, 0.95) 0%, rgba(224, 231, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sample-card-purple::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sample-card-purple:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.sample-card-purple:hover::before {
    opacity: 1;
}

.sample-card-blue {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.95) 0%, rgba(191, 219, 254, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sample-card-blue::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sample-card-blue:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.sample-card-blue:hover::before {
    opacity: 1;
}

/* Enhanced Icon Wrappers */
.sample-icon-wrapper-purple {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.3s ease;
    position: relative;
}

.sample-icon-wrapper-purple i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.sample-card-purple:hover .sample-icon-wrapper-purple {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.sample-icon-wrapper-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.3s ease;
    position: relative;
}

.sample-icon-wrapper-blue i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.sample-card-blue:hover .sample-icon-wrapper-blue {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/* Enhanced Typography */
.sample-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #1f2937;
    transition: color 0.3s ease;
}

.sample-card-purple:hover .sample-title,
.sample-card-blue:hover .sample-title {
    color: #111827;
}

.sample-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    transition: color 0.3s ease;
}

.sample-card-purple:hover .sample-time,
.sample-card-blue:hover .sample-time {
    color: #4b5563;
}

/* Sample Card Content Z-index Fix */
.sample-card-purple > *,
.sample-card-blue > * {
    position: relative;
    z-index: 1;
}

/* Sample Play Buttons */
.sample-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    opacity: 0.6;
}

.sample-play-btn i {
    color: #8b5cf6;
    transition: all 0.3s ease;
    margin-left: 2px;
}

.sample-card-purple:hover .sample-play-btn,
.sample-card-blue:hover .sample-play-btn {
    opacity: 1;
    transform: scale(1.1);
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.sample-card-purple:hover .sample-play-btn i,
.sample-card-blue:hover .sample-play-btn i {
    color: white;
}

.sample-play-btn:active {
    transform: scale(0.95);
}

/* Stagger Animation for Sample Cards */
.sample-card-purple {
    animation: slideInRight 0.6s ease-out 0.2s both;
}

.sample-card-blue {
    animation: slideInRight 0.6s ease-out 0.4s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-card-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

/* Lucide Icon Sizes for Home Page */
.lucide-16 {
    width: 16px;
    height: 16px;
}

.lucide-20 {
    width: 20px;
    height: 20px;
}

.lucide-24 {
    width: 24px;
    height: 24px;
}

.lucide-28 {
    width: 28px;
    height: 28px;
}

.lucide-32 {
    width: 32px;
    height: 32px;
}

.lucide-36 {
    width: 36px;
    height: 36px;
}

.lucide-40 {
    width: 40px;
    height: 40px;
}

.lucide-48 {
    width: 48px;
    height: 48px;
}

/* Pricing Section */
.pricing-section-bg {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f7 100%);
}

.pricing-main-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.pricing-left-col {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-right: 1px solid #e5e7eb;
}

.pricing-right-col {
    background: white;
}

.special-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.founding-edition-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.urgency-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.urgency-pulse {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* Exclusive Offer Box */
.exclusive-offer-box {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 2px solid #fed7aa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.exclusive-header {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.exclusive-icon {
    width: 20px;
    height: 20px;
}

.exclusive-title {
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.exclusive-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.exclusive-date {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
}

.date-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #78716c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #9a3412;
}

.exclusive-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
}

.info-icon {
    width: 18px;
    height: 18px;
    color: #ea580c;
    flex-shrink: 0;
}

.info-text {
    font-size: 0.8125rem;
    color: #9a3412;
    font-weight: 500;
}

.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #dcfce7;
    color: #16a34a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.bg-gradient-pink {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.bg-gradient-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.guarantee-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid #bbf7d0;
}

@media (max-width: 991.98px) {
    .pricing-left-col {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
}

/* FAQ Section */
.faq-background {
    position: relative;
    background: #f9fafb;
    padding-bottom: 2rem !important;
}

.faq-background .container {
    position: relative;
    z-index: 2;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111827;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active .faq-chevron {
    transform: rotate(180deg);
    color: #4f46e5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    background:
        radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 40%, rgba(236, 72, 153, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        #fff7fc;
    padding: 4rem 0;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, transparent 100%);
    transform: rotate(15deg);
    pointer-events: none;
    z-index: 1;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 35%;
    height: 100%;
    background: linear-gradient(225deg, rgba(236, 72, 153, 0.08) 0%, transparent 100%);
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 1;
}


.final-cta-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.final-cta-icon-circle {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.final-cta-features {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-price {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 767.98px) {
    .final-cta-card {
        padding: 2rem 1.5rem;
    }
}

/* Footer Styles */
.footer-bg {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    box-shadow:
        0 8px 16px -2px rgba(139, 92, 246, 0.5),
        0 4px 8px -1px rgba(236, 72, 153, 0.4),
        0 0 0 2px rgba(139, 92, 246, 0.2),
        0 0 20px rgba(139, 92, 246, 0.3),
        inset 0 2px 4px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    pointer-events: none;
}

.footer-logo:hover {
    transform: translateY(-3px);
    box-shadow:
        0 16px 32px -4px rgba(139, 92, 246, 0.6),
        0 8px 16px -2px rgba(236, 72, 153, 0.5),
        0 0 0 3px rgba(139, 92, 246, 0.3),
        0 0 40px rgba(139, 92, 246, 0.5),
        inset 0 3px 6px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px 0 rgba(0, 0, 0, 0.3);
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-slogan {
    font-size: 0.75rem;
    color: #94a3b8;
}

.footer-description {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    color: #a78bfa;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #a78bfa;
}

.footer-divider {
    border-color: rgba(148, 163, 184, 0.2);
    opacity: 1;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #cbd5e1;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-badge i {
    color: #a78bfa;
}

/* Mobile Hamburger Menu */
.hamburger {
    padding: 10px 10px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 28px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 28px;
    height: 3px;
    background-color: #111827;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Hamburger Collapse Animation */
.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
    top: -16px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Navbar Desktop Styles - Ensure menu is visible on desktop */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        visibility: visible !important;
        height: auto !important;
        overflow: visible !important;
        position: static !important;
        transform: none !important;
        width: auto !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
}

/* Navbar Collapse Mobile Styles */
@media (max-width: 991.98px) {
    /* Position navbar-collapse as fullscreen overlay */
    .navbar-collapse {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        right: auto !important;
        bottom: 0 !important;
        background: white !important;
        padding: 2rem 0 !important;
        margin: 0 !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease-in-out !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .navbar-collapse.collapsing {
        height: auto !important;
        transform: translateX(-100%) !important;
    }

    .navbar-collapse.show {
        transform: translateX(0) !important;
    }

    /* Navbar items styling */
    .navbar-nav {
        width: 100% !important;
        flex-direction: column !important;
    }

    .navbar-nav .nav-item {
        margin: 0 !important;
        padding: 0.5rem 1.5rem !important;
        width: 100% !important;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 1.2375rem !important; /* 1.125 * 1.10 = 1.2375 */
        color: #111827 !important;
        border-bottom: 1px solid #f3f4f6;
        display: block !important;
        width: 100% !important;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none !important;
    }

    .btn-premium-gradient {
        margin: 1rem 1.5rem 0 1.5rem !important;
        width: calc(100% - 3rem) !important;
        padding: 0.75rem 1rem !important; /* Increased padding */
        font-size: 1.2rem !important; /* Increased from 1.09rem */
        justify-content: center !important;
        display: flex !important;
    }

    /* Mobile Social Icons */
    .mobile-social-icons {
        padding: 1.5rem 1.5rem 2rem 1.5rem;
        border-top: 1px solid #f3f4f6;
        margin-top: 1rem;
    }

    .mobile-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .mobile-social-link:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    }

    .mobile-social-link i {
        color: white !important;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }

    /* Force collapse to be visible when shown */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: block !important;
        visibility: visible !important;
    }
}

/* ========================================
   BOTTOM BADGE BAR SYSTEM
   ======================================== */

/* Base Badge Bar Structure */
.badge-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    z-index: 5;
}

/* Christmas/Holiday Badge */
.badge-bar-christmas {
    background: linear-gradient(135deg, #dc2626 0%, #16a34a 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 -2px 8px rgba(220, 38, 38, 0.3);
    animation: christmas-glow-bar 3s ease-in-out infinite;
}

@keyframes christmas-glow-bar {
    0%, 100% {
        box-shadow: 0 -2px 8px rgba(220, 38, 38, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 -4px 16px rgba(220, 38, 38, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

/* Limited Time Badge */
.badge-bar-limited {
    background: linear-gradient(135deg, #f97316 0%, #dc2626 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 -2px 8px rgba(249, 115, 22, 0.3);
    animation: urgent-pulse-bar 2s ease-in-out infinite;
}

@keyframes urgent-pulse-bar {
    0%, 100% {
        box-shadow: 0 -2px 8px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 -4px 16px rgba(220, 38, 38, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* New/Featured Badge */
.badge-bar-new {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 -2px 8px rgba(59, 130, 246, 0.3);
    animation: sparkle-shine-bar 3s ease-in-out infinite;
}

@keyframes sparkle-shine-bar {
    0%, 100% {
        box-shadow: 0 -2px 8px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 -4px 16px rgba(139, 92, 246, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* Sale/Hot Deal Badge */
.badge-bar-sale {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #ef4444 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 -2px 8px rgba(239, 68, 68, 0.3);
    animation: fire-flicker-bar 2.5s ease-in-out infinite;
}

@keyframes fire-flicker-bar {
    0%, 100% {
        background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #ef4444 100%);
        box-shadow: 0 -2px 8px rgba(239, 68, 68, 0.3);
    }
    50% {
        background: linear-gradient(135deg, #f97316 0%, #fbbf24 50%, #f97316 100%);
        box-shadow: 0 -4px 16px rgba(249, 115, 22, 0.6);
    }
}

/* Premium/VIP Badge */
.badge-bar-premium {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    font-weight: 700;
    box-shadow: 0 -2px 12px rgba(212, 175, 55, 0.4);
    animation: gold-shimmer-bar 3s ease-in-out infinite;
}

@keyframes gold-shimmer-bar {
    0%, 100% {
        background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
        box-shadow: 0 -2px 12px rgba(212, 175, 55, 0.4);
    }
    50% {
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
        box-shadow: 0 -4px 20px rgba(255, 215, 0, 0.7);
    }
}

/* Hover Effects */
.occasion-card:hover .badge-bar {
    padding: 0.6rem 1rem;
}

.badge-bar-christmas:hover {
    box-shadow: 0 -4px 20px rgba(220, 38, 38, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.badge-bar-limited:hover {
    box-shadow: 0 -4px 20px rgba(249, 115, 22, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.badge-bar-new:hover {
    box-shadow: 0 -4px 20px rgba(59, 130, 246, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.badge-bar-sale:hover {
    box-shadow: 0 -4px 20px rgba(239, 68, 68, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.badge-bar-premium:hover {
    box-shadow: 0 -6px 28px rgba(255, 215, 0, 0.9),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Card padding adjustment for badge bar */
.occasion-card:has(.badge-bar) {
    padding-bottom: 3.5rem;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .badge-bar {
        font-size: 0.7rem;
        padding: 0.45rem 0.85rem;
    }

    .occasion-card:has(.badge-bar) {
        padding-bottom: 3.25rem;
    }
}
