@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #060608;
    --bg-card: rgba(18, 18, 24, 0.7);
    --bg-card-hover: rgba(28, 28, 38, 0.85);
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-light: rgba(255, 255, 255, 0.1);
    
    --color-gold: #e5be49;
    --color-gold-hover: #c9a334;
    --color-crimson: #b81d1d;
    --color-crimson-hover: #d12424;
    --color-text-primary: #f8f8fa;
    --color-text-secondary: #c8c8d0;
    --color-text-muted: #8d8d96;
    --color-success: #2ec4b6;
    --color-danger: #ff4d5e;
    
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-gold: 0 12px 40px rgba(212, 175, 55, 0.18);
    --shadow-red: 0 12px 40px rgba(184, 29, 29, 0.25);
    --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) var(--bg-main);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(184, 29, 29, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 65%, rgba(229, 190, 73, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(184, 29, 29, 0.06) 0%, transparent 50%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-hover);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gold {
    color: var(--color-gold);
}

.text-crimson {
    color: var(--color-crimson);
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 1rem auto 0;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border-gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-gold), #aa882c);
    color: #000;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
    background: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.nav-cta:active {
    transform: translateY(0);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 9rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 40%, var(--color-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-author {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-crimson);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-description {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Countdown Timer */
.countdown-container {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-gold);
    max-width: 500px;
}

.countdown-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem 0.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 0.3rem;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-crimson), #6c0909);
    color: #fff;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-crimson-hover), var(--color-crimson));
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(163, 29, 29, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

/* Hero Visual / Mockups */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-glow {
    position: absolute;
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(163, 29, 29, 0.25) 40%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
}

.main-mockup {
    width: 100%;
    max-width: 420px;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    transition: var(--transition-smooth);
    border-radius: 12px;
    animation: floatMockup 6s ease-in-out infinite;
}

.main-mockup:hover {
    transform: translateY(-8px) scale(1.03) rotate(0.5deg);
    filter: drop-shadow(0 35px 55px rgba(229, 190, 73, 0.3));
}

@keyframes floatMockup {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(-0.8deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Synopsis Section */
.synopsis {
    position: relative;
}

.synopsis-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.synopsis-image {
    position: relative;
}

.synopsis-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-light);
}

.synopsis-text p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.synopsis-text p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 3rem;
    float: left;
    margin-right: 0.5rem;
    line-height: 1;
    color: var(--color-gold);
    font-weight: 700;
}

.quote-block {
    border-left: 3px solid var(--color-crimson);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.5;
}

/* Features Section */
.features {
    background: rgba(15, 15, 15, 0.5);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Carousel/Gallery Showcase */
.showcase-slider {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-dark);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    display: block;
    height: auto;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2.5rem 2rem 1.5rem;
    color: #fff;
}

.slide-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.slide-caption p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 3rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pricing-card.featured {
    border: 1px solid var(--color-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.03);
}

.pricing-card.featured::after {
    content: 'NAJPOPULÁRNEJŠIE';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    background: var(--bg-card-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.pricing-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.pricing-price span {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.pricing-price del {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    margin-right: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.8rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 900;
}

.pricing-features li.disabled {
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.pricing-features li.disabled::before {
    content: '✕';
    color: var(--color-text-muted);
}

/* Checkout Form Section */
.checkout-section {
    background: rgba(15, 15, 15, 0.7);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.checkout-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 3rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.checkout-title-step {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-num {
    background: var(--color-gold);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.form-group input, .form-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    padding: 0.9rem 1.2rem;
    border-radius: 4px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    background: rgba(0, 0, 0, 0.6);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
}

.form-group .error-msg {
    color: var(--color-danger);
    font-size: 0.75rem;
    margin-top: 0.35rem;
    display: none;
}

.form-group.has-error input, .form-group.has-error select {
    border-color: var(--color-danger);
}

.form-group.has-error .error-msg {
    display: block;
}

/* Custom Checkbox Design */
.checkbox-group {
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--color-gold);
    margin-top: 0.1rem;
    cursor: pointer;
}

.checkbox-label-text {
    font-size: 0.9rem;
    color: var(--color-text-primary);
}

.checkbox-label-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

/* Book Excerpt / Preview Container */
.book-excerpt-container {
    max-width: 800px;
    margin: 3rem auto 0;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    background: rgba(15, 15, 15, 0.9);
    box-shadow: var(--shadow-gold);
    overflow: hidden;
}

.book-excerpt-header {
    background: rgba(0,0,0,0.5);
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.book-excerpt-header h4 {
    font-size: 1.1rem;
    color: var(--color-gold);
}

.book-excerpt-body {
    max-height: 400px;
    overflow-y: scroll;
    padding: 2.5rem 3rem;
    font-family: Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e3e3e5;
    text-align: justify;
    scrollbar-width: thin;
    scrollbar-color: var(--color-gold) rgba(0,0,0,0.3);
}

.book-excerpt-body::-webkit-scrollbar {
    width: 6px;
}
.book-excerpt-body::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
}
.book-excerpt-body::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

.book-excerpt-body p {
    margin-bottom: 1.5rem;
    text-indent: 1.5rem;
}

.book-excerpt-body p:first-of-type {
    text-indent: 0;
}

.book-excerpt-body h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
}

.book-excerpt-footer {
    padding: 1.25rem 2rem;
    background: rgba(0,0,0,0.5);
    border-top: 1px solid var(--border-light);
    text-align: center;
}

/* Enhanced Modern Glass Card Styling */
.synopsis-text, .book-excerpt-container, .pricing-card, .checkout-box, .summary-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Store Link Dropdown / Buttons */
.store-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.store-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #1e1e1e;
    border: 1px solid var(--border-light);
    color: #fff;
    transition: var(--transition-smooth);
}

.store-btn:hover {
    background: #2a2a2a;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.store-btn img {
    height: 18px;
}

/* Radio Group (Shipping/Payment Selection) */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.radio-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-light);
    padding: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.radio-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255,255,255,0.02);
}

.radio-card.selected {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.04);
}

.radio-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.radio-card.selected .radio-circle {
    border-color: var(--color-gold);
}

.radio-card.selected .radio-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
}

.radio-text h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.15rem;
}

.radio-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.radio-price {
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1rem;
}

/* Order Summary Box */
.summary-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem;
    position: sticky;
    top: 110px;
    box-shadow: var(--shadow-dark);
}

.summary-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.75rem;
    color: #fff;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.summary-item-name {
    color: var(--color-text-secondary);
}

.summary-item-price {
    font-weight: 600;
    color: #fff;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background: var(--color-gold);
    color: #000;
}

.qty-val {
    font-size: 0.9rem;
    width: 15px;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    padding: 0.75rem 0;
    border-top: 1px dashed var(--border-light);
}

.summary-total {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.summary-total .total-val {
    color: var(--color-gold);
    font-family: var(--font-heading);
}

.checkout-submit-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 1.2rem;
}

/* Author Section */
.author-note {
    background-image: 
        linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
        url('../images/38C29F28-5A75-4482-9FC1-5A2942C082AD.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.author-note-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.author-quote {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 400;
}

.handwritten {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 1px;
    margin-top: 1.5rem;
}

.author-signature {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    color: var(--color-text-secondary);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

.faq-icon {
    transition: var(--transition-smooth);
    font-size: 1.2rem;
    color: var(--color-gold);
}

.faq-item.active {
    border-color: var(--border-gold);
    background: var(--bg-card-hover);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 0.5rem;
}

/* Success Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-modal {
    background: #111;
    border: 1px solid var(--color-gold);
    border-radius: 12px;
    width: 90%;
    max-width: 580px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--shadow-gold);
    text-align: center;
    transform: scale(0.85);
    transition: var(--transition-smooth);
}

.modal-overlay.active .success-modal {
    transform: scale(1);
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(46, 196, 182, 0.1);
    border: 2px solid var(--color-success);
    color: var(--color-success);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse-success 2s infinite;
}

@keyframes pulse-success {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(46, 196, 182, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

.success-modal h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.success-modal p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.order-details-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.order-details-box h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.details-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.details-row span:last-child {
    font-weight: 600;
    color: #fff;
}

.close-modal-btn {
    width: 100%;
}

/* Footer Section */
footer {
    background: #060606;
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem;
    color: var(--color-text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-info p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-contact h4 {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--color-gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* Legal pages content styling */
.legal-content {
    padding: 8rem 0 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.legal-content p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Disabled Card & Notice Ribbon */
.pricing-card.disabled-card {
    border: 1px dashed rgba(230, 57, 70, 0.4);
    background: rgba(18, 18, 18, 0.6);
    opacity: 0.85;
    overflow: hidden;
}

.pricing-card.disabled-card:hover {
    transform: none;
    border-color: rgba(230, 57, 70, 0.6);
    background: rgba(18, 18, 18, 0.7);
    box-shadow: none;
}

.disabled-notice-ribbon {
    background: var(--color-crimson);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    padding: 0.6rem 0.75rem;
    margin: -3rem -2rem 1.5rem -2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Packeta Branch Selector & Modal Styles */
.packeta-branch-box {
    transition: var(--transition-smooth);
}

.packeta-modal {
    background: #141414;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    animation: modalAppear 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.packeta-modal-header {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal-x {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.close-modal-x:hover {
    color: #fff;
}

.packeta-modal-search {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-light);
}

.packeta-modal-search input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #0a0a0a;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    color: #fff;
    font-size: 0.95rem;
}

.packeta-modal-search input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.packeta-modal-branches {
    padding: 1rem 1.5rem;
    overflow-y: auto;
    max-height: 55vh;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.packeta-branch-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.packeta-branch-item:hover, .packeta-branch-item.active {
    border-color: #e31837;
    background: rgba(227, 24, 55, 0.1);
    transform: translateX(4px);
}

.packeta-branch-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.packeta-branch-street {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: 0.2rem;
}

.packeta-branch-select-btn {
    background: #e31837;
    color: #fff;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

/* Responsive Grid / Breakpoints */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .pricing-grid {
        gap: 1.5rem;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .summary-box {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobile menu logic in JS can expand this */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 1px solid var(--border-gold);
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-description, .countdown-container {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .synopsis-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .checkout-box {
        padding: 2rem 1.5rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
