@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 0;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Announcement Bar */
.announcement-bar {
    background: #667eea;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    font-size: 14px;
    font-weight: 500;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-transparent {
    background: transparent;
    border-bottom: none;
}

.navbar-scrolled {
    background: white;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.logo {
    height: 80px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    order: 2;
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-transparent .nav-links a {
    color: white;
}

.navbar-transparent .nav-links a:hover {
    color: #f0f0f0;
}

.navbar-scrolled .nav-links a {
    color: #666;
}

.nav-links a:hover {
    color: #2c3e50;
}

/* Nav Icons (Cart & Burger) */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    order: 3;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    width: 30px;
    height: 24px;
    position: relative;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #2c2c2c;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
}

.navbar-transparent .burger-menu span {
    background: white;
}

.burger-menu span:nth-child(1) {
    top: 0;
}

.burger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-menu span:nth-child(3) {
    bottom: 0;
}

.burger-menu.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.burger-menu.active span {
    background: #2c2c2c !important;
}

.menu-logo {
    display: none;
}

.cart-icon {
    color: #666;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 5px;
    position: relative;
}

.cart-icon:hover {
    color: #2c3e50;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}

.navbar-transparent .cart-icon {
    color: white;
}

.navbar-transparent .cart-icon:hover {
    color: #f0f0f0;
}


/* Cart Slide-in Panel */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 2001;
    display: flex;
    flex-direction: column;
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.cart-header h2 {
    font-size: 24px;
    color: #2c2c2c;
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: #2c2c2c;
}

.shipping-progress-inline {
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #eee;
}

.shipping-text-inline {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
    color: #666;
}

.suggestions-header {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.suggestions-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggestion-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.suggestion-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

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

.suggestion-details {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    font-size: 13px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-price {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
}

.suggestion-price-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

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

.suggestion-discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.2;
}

.suggestion-add {
    padding: 8px 16px;
    background: #667eea;
    color: white;
    border: 1px solid #667eea;
    border-radius: 0;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.suggestion-add:hover {
    background: #5568d3;
    border-color: #5568d3;
}

.shipping-bar-container {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.shipping-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
    width: 0%;
}

.cart-items {
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    color: #999;
    padding: 40px 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-details {
    flex: 1;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 4px;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease;
    padding: 0;
}

.quantity-btn:hover {
    background: #f0f0f0;
    border-color: #999;
}

.quantity-value {
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.cart-item-title {
    font-size: 16px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 600;
    color: #667eea;
    flex-shrink: 0;
}

.cart-item-price-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

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

.cart-item-discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.2;
}

.cart-item-remove {
    position: absolute;
    top: 20px;
    right: 0;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    padding: 0 5px;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
}

.checkout-button {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: white;
    border: 1px solid #667eea;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.checkout-button:hover {
    background: #5568d3;
    border-color: #5568d3;
}

/* Cart badge on cart icon */
.cart-icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #e74c3c;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
        right: -100%;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 100px 0;
    background: url('esilehele.jpg') center calc(50% + 40px)/cover no-repeat;
    color: white;
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 450px;
    text-align: left;
}

.hero h2 {
    font-size: clamp(36px, 7vw, 64px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid white;
}

.cta-button::after {
    content: '→';
    margin-left: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: #2c2c2c;
}

.cta-button:hover::after {
    transform: translateX(4px);
}

/* Book Feature Section */
.book-feature {
    padding: 0;
    background: #fffcf1;
    overflow-x: hidden;
}

.book-feature-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
    max-width: 100vw;
}

.book-feature-image {
    display: flex;
    align-items: stretch;
}

.book-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    align-self: stretch;
}

.book-feature-content {
    padding: 100px min(280px, 15vw) 100px max(60px, (100vw - 1400px) / 2 + 60px);
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-category {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-decoration: underline;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.book-feature-content h2 {
    font-size: clamp(36px, 7vw, 64px);
    margin-bottom: 40px;
    color: #2c2c2c;
    line-height: 1.2;
}

.book-feature-subtitle {
    font-size: clamp(12px, 3vw, 18px);
    line-height: 1.5;
    color: #2c2c2c;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #2c2c2c;
    align-self: flex-start;
}

.btn-secondary::after {
    content: '→';
    margin-left: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-secondary:hover {
    background: #2c2c2c;
    color: white;
}

.btn-secondary:hover::after {
    transform: translateX(4px);
}

/* Brand Statement Section */
.brand-statement {
    padding: 100px 0;
    background: #fffcf1;
}

.brand-statement-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-statement-logo {
    display: flex;
    justify-content: center;
    padding-left: 60px;
}

.brand-statement-logo img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.brand-statement-text h2 {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.4;
    color: #2c2c2c;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 200px 0 100px 0;
    background: #fffcf1;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 40px;
    color: #2c2c2c;
}

.btn-cta {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #2c2c2c;
    align-self: flex-start;
    margin-bottom: 40px;
}

.btn-cta::after {
    content: '→';
    margin-left: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    background: #2c2c2c;
    color: white;
}

.btn-cta:hover::after {
    transform: translateX(4px);
}

/* Shop Section */
.shop {
    padding: 200px 0 60px 0;
}

.shop h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer !important;
    padding-bottom: 20px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.product-card *,
.product-card h3,
.product-card img,
.product-card div,
.product-card span {
    cursor: pointer !important;
    user-select: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.new-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #e74c3c;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    z-index: 10;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.featured-book-image .new-badge {
    padding: 8px 14px;
    font-size: 12px;
    top: 1+px;
    left: 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: #2c3e50;
}

.product-rating {
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-count {
    color: #666;
    font-size: 14px;
}

.price-container {
    padding: 0 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    color: #667eea;
}

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

.discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.button {
    display: block;
    margin: 0 20px 20px;
    padding: 12px;
    background: #667eea;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.button:hover {
    background: #5568d3;
}

/* Product Detail */
.product-detail {
    padding: 280px 0 60px 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
    align-self: start;
}

@media (max-width: 768px) {
    .product-gallery {
        position: static;
    }
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #f5f5f5;
    position: relative;
    touch-action: pan-y pinch-zoom;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
}

.product-main-image:hover .image-nav {
    opacity: 1;
}

.image-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.image-nav.prev {
    left: 10px;
}

.image-nav.next {
    right: 10px;
}

@media (max-width: 768px) {
    .image-nav {
        display: none;
    }
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.thumbnail {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: #667eea;
}

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

.product-image-large {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.product-info h2 {
    font-size: 48px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 5px;
    line-height: 1.2;
}

.product-author {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 0;
    font-style: italic;
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars-large {
    color: #FFD700;
    font-size: 20px;
    letter-spacing: 2px;
}

.review-count-large {
    color: #666;
    font-size: 16px;
}

.product-quote {
    font-size: 18px;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-left: 3px solid #667eea;
    border-radius: 4px;
}

.product-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 500;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.note-icon {
    font-size: 16px;
}

.price-container-large {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-large {
    font-size: 32px;
    font-weight: 600;
    color: #667eea;
}

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

.discount-badge-large {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    align-self: center;
}

.description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.page-count {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.shipping-info {
    margin-bottom: 25px;
}

.shipping-text {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.product-options {
    margin-bottom: 30px;
}

.purchase-row {
    display: flex;
    gap: 15px;
    align-items: stretch;
    margin-bottom: 30px;
}

.quantity-selector {
    margin-bottom: 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
}

.quantity-control-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #2c2c2c;
    color: #2c2c2c;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control-btn:hover {
    background: #2c2c2c;
    color: white;
}

.quantity-control-btn.decrease {
    border-radius: 0;
    border-right: none;
}

.quantity-control-btn.increase {
    border-radius: 0;
    border-left: none;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #2c2c2c;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.option-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.option-buttons {
    display: flex;
    gap: 10px;
}

.option-btn {
    flex: 1;
    height: 40px;
    padding: 0 16px;
    background: transparent;
    border: 1px solid #667eea;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-btn:hover {
    background: #667eea;
    color: white;
}

.option-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.buy-button {
    flex: 1;
    height: 40px;
    padding: 0 48px;
    background: #667eea;
    color: white;
    border: 1px solid #667eea;
    border-radius: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.buy-button:hover {
    background: #5568d3;
    border-color: #5568d3;
}

/* Reviews Section */
.reviews-section {
    padding: 0 0 60px;
    background: white;
}

.reviews-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    transition: max-height 0.5s ease;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-item {
    background: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.review-item:hover {
    border-color: #667eea;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-author {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
}

.review-stars {
    color: #ffc107;
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.reviews-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.reviews-wrapper.fully-expanded .reviews-gradient {
    opacity: 0;
}

.show-more-reviews {
    display: block;
    margin: 0 auto;
    padding: 12px 32px;
    background: transparent;
    color: #667eea;
    border: 1px solid #667eea;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.show-more-reviews:hover {
    background: #667eea;
    color: white;
}

.reviews-count-text {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 20px 0 10px 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
}

/* Featured Books Section */
.featured-books-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.featured-books-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-align: center;
}

.featured-books-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.featured-book-card {
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.featured-book-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
}

.featured-book-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.featured-book-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.featured-book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-book-info {
    padding: 20px;
}

.featured-book-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.featured-book-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.featured-price {
    font-size: 20px;
    font-weight: 600;
    color: #667eea;
}

.featured-discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .featured-books-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-books-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .featured-books-grid {
        grid-template-columns: 1fr;
    }
}


/* Checkout Page */
.checkout-main {
    padding: 220px 0 60px;
    min-height: 70vh;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-form-section h1 {
    font-size: 32px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 40px;
}

.checkout-section {
    margin-bottom: 30px;
}

.checkout-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.shipping-method-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.shipping-method-card {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-method-card:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.03);
}

.shipping-method-card:has(input:checked) {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.shipping-method-card input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.shipping-method-card input[type="radio"]:checked ~ .shipping-method-content {
    color: #667eea;
}

.shipping-method-content {
    flex: 1;
}

.shipping-method-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.shipping-method-desc {
    font-size: 13px;
    color: #666;
}

.parcel-locker-section {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.parcel-locker-section .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    color: #2c2c2c;
}

/* Compact customer info section */
#customer-info-section {
    margin-bottom: 20px;
}

#customer-info-section h2 {
    margin-bottom: 12px;
}

#customer-info-section .form-group {
    margin-bottom: 12px;
}

#customer-info-section .form-group label {
    margin-bottom: 5px;
}

#customer-info-section .form-group input {
    padding: 10px;
}

.form-group select {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    color: #2c2c2c;
    background-color: white;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group select optgroup {
    font-weight: 600;
    font-size: 14px;
    color: #2c2c2c;
    background-color: #f5f5f5;
    font-style: normal;
}

.form-group select option {
    font-weight: 400;
    color: #2c2c2c;
    padding-left: 8px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
}

.regular-shipping-notice {
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
}

.regular-shipping-notice p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.checkout-submit-btn {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 30px;
}

.checkout-submit-btn:hover {
    background: #5568d3;
}

.checkout-summary-section {
    background: #f9f9f9;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-summary-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 60px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.checkout-item-image-placeholder {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 4px;
}

.checkout-item-quantity {
    font-size: 13px;
    color: #666;
}

.checkout-item-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 6px;
}

.quantity-btn-checkout {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.quantity-btn-checkout:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.quantity-btn-checkout.decrease {
    border-right: none;
}

.quantity-btn-checkout.increase {
    border-left: none;
}

.quantity-value-checkout {
    width: 36px;
    height: 24px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #666;
}

.checkout-item-price {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    margin-left: auto;
}

.checkout-item-price-wrapper {
    margin-left: auto;
    text-align: right;
}

.checkout-item-original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.checkout-item-price-current {
    font-size: 15px;
    font-weight: 600;
    color: #667eea;
}

.checkout-item-remove {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.checkout-item-remove:hover {
    color: #e74c3c;
}

.checkout-totals {
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: #2c2c2c;
}

.checkout-total-final {
    font-size: 18px;
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
    margin-top: 12px;
    color: #667eea;
}

@media (max-width: 968px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .checkout-summary-section {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .checkout-main {
        padding: 40px 0;
    }

    .checkout-form-section h1 {
        font-size: 28px;
    }

    .shipping-method-options {
        grid-template-columns: 1fr;
    }

    .shipping-method-card {
        padding: 14px;
    }
}


/* Coming Soon Section */
.coming-soon {
    padding: 240px 0 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #f9fafb 100%);
}

.coming-soon .container {
    max-width: 800px;
    text-align: center;
}

.coming-soon-icon {
    margin: 0 auto 30px;
    color: #667eea;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.coming-soon h1 {
    font-size: 56px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 400;
}

.coming-soon-subtitle {
    font-size: 22px;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 500;
}

.coming-soon-description {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.launch-date {
    display: inline-block;
    background: white;
    padding: 20px 40px;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.launch-label {
    display: block;
    font-size: 14px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.launch-value {
    display: block;
    font-size: 28px;
    color: #667eea;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.notify-form-container {
    background: white;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    max-width: 600px;
    margin: 0 auto;
}

.notify-form-container h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 400;
}

.notify-subtitle {
    font-size: 16px;
    color: #718096;
    margin-bottom: 30px;
}

.notify-input-group {
    display: flex;
    gap: 12px;
}

.notify-input-group input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.notify-input-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.notify-button {
    padding: 16px 32px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.notify-button:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.notify-button:active {
    transform: translateY(0);
}

.notify-success-message {
    text-align: center;
    padding: 20px;
}

.success-icon-small {
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease-out;
}

.notify-success-message h3 {
    font-size: 28px;
    color: #27ae60;
    margin-bottom: 12px;
    font-weight: 400;
}

.notify-success-message p {
    font-size: 16px;
    color: #4a5568;
}

/* Writers Page */
.writers-hero {
    padding: 200px 0 80px 0;
    background: white;
    color: #2c3e50;
    text-align: center;
}

.writers-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.writers-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.publication-process {
    padding: 80px 0;
    background: #f9f9f9;
}

.publication-process h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 20px;
}

.process-arrow {
    display: none;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.writers-cta {
    padding: 100px 0;
    background: white;
    color: #2c3e50;
    text-align: center;
}

.writers-cta p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 200px 0 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f9fafb 100%);
}

.contact-section h1 {
    font-size: 56px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 400;
}

.contact-section .subtitle {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 400;
}

.contact-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.contact-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.contact-item a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-item a:hover {
    color: #667eea;
}

.contact-form-container {
    background: white;
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a202c;
    font-weight: 400;
}

.contact-form {
    background: transparent;
    padding: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a202c;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    display: inline-block;
    padding: 14px 40px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    margin-top: 8px;
}

.submit-button::after {
    content: '→';
    margin-left: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-button:hover::after {
    transform: translateX(4px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .book-feature-content {
        padding: 80px 60px;
    }

    .book-feature-content h2 {
        font-size: clamp(32px, 5vw, 48px);
    }

    .book-feature-subtitle {
        font-size: clamp(14px, 2vw, 16px);
    }
}


@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    html {
        overflow-x: hidden;
    }

    .announcement-bar {
        font-size: 13px;
        padding: 8px 0;
    }

    .navbar {
        top: 36px;
    }

    .container {
        padding: 0 20px;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-icons {
        order: 0;
        margin-left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 280px;
        max-width: 280px;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        padding-top: 100px;
        padding-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
        font-size: 18px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        margin: 0;
        order: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        color: #2c2c2c !important;
        font-size: 20px;
        font-weight: 500;
    }

    .menu-logo {
        display: block;
        margin-top: auto;
        padding-top: 40px;
    }

    .menu-logo img {
        width: 120px;
        height: auto;
        opacity: 0.7;
    }

    .hero {
        min-height: 600px;
        padding: 140px 0 35px 0;
        background-position: 65% calc(50% + 36px);
        align-items: flex-end;
    }

    .hero-content {
        max-width: 280px;
        margin-bottom: 40px;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 15px;
        width: auto;
    }

    .book-feature {
        padding: 60px 0;
    }

    .book-feature-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        position: relative;
    }

    .book-feature-content {
        padding: 40px 20px 0 20px;
        order: 1;
    }

    .book-feature-subtitle {
        margin-bottom: 30px;
    }

    .book-feature-image {
        order: 2;
        position: relative;
        padding-bottom: 80px;
    }

    .brand-statement {
        padding: 20px 0 60px 0;
    }

    .brand-statement-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-statement-logo {
        padding-left: 0;
    }

    .brand-statement-logo img {
        max-width: 200px;
        margin: 0 auto;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        margin-bottom: 30px;
    }

    .btn-cta {
        padding: 14px 36px;
        font-size: 15px;
    }

    .book-feature-image::before {
        content: '';
        position: absolute;
        bottom: 80px;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
        pointer-events: none;
        z-index: 5;
    }

    .book-feature-content .btn-secondary {
        padding: 14px 36px;
        font-size: 15px;
        position: absolute;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        background: transparent;
        color: white;
        border-color: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .book-feature-content .btn-secondary:hover {
        background: white;
        color: #2c2c2c;
    }

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

    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .coming-soon {
        padding: 180px 0 80px 0;
        min-height: 70vh;
    }

    .coming-soon h1 {
        font-size: 40px;
    }

    .coming-soon-subtitle {
        font-size: 18px;
    }

    .coming-soon-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .launch-date {
        padding: 16px 32px;
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .launch-value {
        font-size: 24px;
    }

    .notify-form-container {
        padding: 35px 25px;
    }

    .notify-form-container h2 {
        font-size: 24px;
    }

    .notify-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .notify-input-group {
        flex-direction: column;
        gap: 12px;
    }

    .notify-input-group input {
        width: 100%;
        padding: 14px 16px;
    }

    .notify-button {
        width: 100%;
        padding: 14px 24px;
    }

    .notify-success-message h3 {
        font-size: 24px;
    }

    .notify-success-message p {
        font-size: 15px;
    }

    .writers-hero h1 {
        font-size: 36px;
    }

    .writers-subtitle {
        font-size: 18px;
    }

    .publication-process h2 {
        font-size: 32px;
    }

    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .step-number {
        display: none;
    }

    .process-arrow {
        display: block;
        text-align: center;
        font-size: 36px;
        color: #999;
        margin: 5px 0;
    }

    .process-step {
        padding: 20px;
    }

    .writers-cta p {
        font-size: 18px;
    }

    .contact-section {
        padding: 150px 0 60px 0;
    }

    .contact-section h1 {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .contact-section .subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .contact-info h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .contact-form-container h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 15px;
    }

    .form-group textarea {
        min-height: 90px;
    }

    .submit-button {
        width: 100%;
        padding: 14px 32px;
    }

    .contact-form {
        padding: 0;
    }

    .logo {
        height: 60px;
    }
}

/* Success Page */
.success-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 20px 60px;
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #27ae60;
}

.success-message {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.success-details {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #667eea;
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .success-section {
        padding: 160px 20px 60px;
    }

    .success-content h1 {
        font-size: 36px;
    }

    .success-message {
        font-size: 18px;
    }

    .success-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
