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

:root {
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --accent-gold: #d4a574;
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --paper-bg: #f9f6f1;
    --border-subtle: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--primary-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c99a63;
}

#datetime-display {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--accent-gold);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    z-index: 9999;
    letter-spacing: 1px;
}

.navbar {
    background: rgba(26, 26, 26, 0.95);
    position: sticky;
    top: 40px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-gold);
}

.cart-link {
    position: relative;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    margin: 4px 0;
    transition: 0.3s;
}

.hero-full {
    width: 100%;
    height: calc(100vh - 100px);
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 700px;
    z-index: 10;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--primary-dark);
    font-size: 14px;
    text-transform: uppercase;
}

.cta-button-secondary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.editor-note {
    background: var(--paper-bg);
    padding: 100px 0;
}

.editor-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-gold);
}

.editor-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.editor-date {
    font-size: 13px;
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
}

.editor-note h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--secondary-dark);
}

.editor-note p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-dark);
}

.editor-signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.why-checkpoint {
    padding: 120px 0;
    background: white;
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.section-header-center h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--paper-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent-gold);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 0;
    border-top: 2px solid var(--border-subtle);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.about-editions {
    padding: 100px 0;
    background: var(--paper-bg);
}

.about-editions h2 {
    font-size: 42px;
    margin-bottom: 35px;
}

.about-editions p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--secondary-dark);
}

.featured-issues {
    padding: 120px 0;
    background: white;
}

.section-header-left {
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.section-header-left p {
    font-size: 18px;
    color: var(--text-muted);
}

.products-editorial {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-card-editorial {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.product-card-editorial:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.product-card-editorial:nth-child(even) .product-image-link {
    order: 2;
}

.product-image-link {
    display: block;
    overflow: hidden;
}

.product-image-link img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.product-details-editorial h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.product-details-editorial h3 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.product-details-editorial h3 a:hover {
    color: var(--accent-gold);
}

.product-excerpt {
    font-size: 17px;
    line-height: 1.8;
    color: var(--secondary-dark);
    margin-bottom: 30px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-gold);
}

.product-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-dark);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.product-link:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.reviews-section {
    margin: 120px 0;
}

.reviews-dark {
    background: var(--primary-dark);
    padding: 100px 0;
}

.section-header-left-light {
    margin-bottom: 60px;
}

.section-header-left-light h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.section-header-left-light p {
    font-size: 18px;
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.review-card {
    background: var(--secondary-dark);
    overflow: hidden;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.review-content {
    padding: 30px;
}

.review-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.review-score {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-gold);
}

.review-author {
    font-size: 13px;
    color: var(--text-muted);
    font-family: 'Arial', sans-serif;
}

.review-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.85);
}

.behind-scenes {
    margin: 120px 0;
}

.behind-scenes-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    min-height: 600px;
}

.behind-image {
    background-size: cover;
    background-position: center;
}

.behind-content {
    background: var(--paper-bg);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
}

.behind-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.behind-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--secondary-dark);
}

.community-spotlight {
    padding: 120px 0;
    background: white;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.community-card {
    background: var(--paper-bg);
    overflow: hidden;
}

.community-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.community-card h4 {
    font-size: 24px;
    margin: 30px 30px 10px;
}

.community-author {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 30px 15px;
    font-family: 'Arial', sans-serif;
}

.community-card p:last-child {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary-dark);
    padding: 0 30px 30px;
}

.newsletter-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.newsletter-box {
    background: var(--secondary-dark);
    padding: 70px 60px;
    text-align: center;
}

.newsletter-box h2 {
    font-size: 42px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.newsletter-box > p:first-of-type {
    font-size: 17px;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 35px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-note {
    font-size: 13px;
    color: var(--text-muted);
}

.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.7);
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(245, 245, 245, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 0;
    border-top: 1px solid rgba(212, 165, 116, 0.3);
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-dark);
    padding: 30px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-light);
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.cookie-accept:hover {
    background: #c99a63;
}

.cookie-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .product-card-editorial,
    .product-card-editorial:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .product-card-editorial:nth-child(even) .product-image-link {
        order: 0;
    }

    .behind-scenes-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 20px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        bottom: 40px;
    }

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

    .section-header-center h2,
    .section-header-left h2 {
        font-size: 32px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

.product-detail-page {
    padding: 120px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.product-image-main {
    position: sticky;
    top: 140px;
    height: fit-content;
}

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

.product-info-main h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-price-large {
    font-size: 42px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 30px;
}

.product-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--secondary-dark);
}

.product-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}

.btn-buy-now {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-buy-now:hover {
    background: #c99a63;
}

.product-features {
    background: var(--paper-bg);
    padding: 40px;
    margin-bottom: 40px;
}

.product-features h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.product-features ul {
    list-style: none;
}

.product-features ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 16px;
}

.product-features ul li:last-child {
    border-bottom: none;
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 10001;
    display: none;
    font-weight: 600;
}

.notification.show {
    display: block;
    animation: slideIn 0.3s;
}

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

.cart-page {
    padding: 120px 0;
    min-height: 60vh;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.cart-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
}

.cart-empty {
    text-align: center;
    padding: 80px 0;
}

.cart-empty p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.cart-items {
    margin-bottom: 50px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 30px;
    padding: 30px;
    background: var(--paper-bg);
    margin-bottom: 20px;
    align-items: center;
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.cart-item-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 20px;
    color: var(--accent-gold);
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-control button {
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary-dark);
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.quantity-control button:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}

.quantity-control span {
    font-size: 18px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: transparent;
    border: none;
    color: #c0392b;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.remove-item:hover {
    color: #922b21;
}

.cart-summary {
    background: var(--paper-bg);
    padding: 40px;
    max-width: 400px;
    margin-left: auto;
}

.cart-summary h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-subtle);
}

.cart-total-price {
    color: var(--accent-gold);
}

.checkout-page {
    padding: 120px 0;
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.checkout-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
}

.checkout-form {
    background: var(--paper-bg);
    padding: 50px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-subtle);
    font-size: 16px;
    font-family: 'Georgia', serif;
}

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

.order-summary-checkout {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid var(--border-subtle);
}

.order-summary-checkout h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.order-total-checkout {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--primary-dark);
}

.success-page {
    padding: 120px 0;
    min-height: 60vh;
}

.success-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: var(--primary-dark);
}

.success-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.success-page p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.contact-page {
    padding: 120px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

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

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--secondary-dark);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 24px;
    color: var(--accent-gold);
    margin-top: 5px;
}

.contact-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-item-content p {
    font-size: 16px;
    margin: 0;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.about-page {
    padding: 120px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-page h1 {
    font-size: 48px;
    margin-bottom: 30px;
}

.about-intro {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 60px;
    color: var(--secondary-dark);
}

.about-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 80px;
    color: var(--secondary-dark);
}

.about-content p {
    margin-bottom: 20px;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.team-member p:first-of-type {
    font-size: 16px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-member p:last-of-type {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .product-image-main {
        position: static;
    }

    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 20px;
    }

    .cart-item img {
        width: 100px;
        height: 100px;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

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

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-detail-grid {
        padding: 0 20px;
    }

    .product-info-main h1 {
        font-size: 36px;
    }

    .product-buttons {
        flex-direction: column;
    }

    .cart-container,
    .checkout-container,
    .success-container,
    .contact-container,
    .about-container {
        padding: 0 20px;
    }

    .checkout-form {
        padding: 30px 20px;
    }

    .team-member img {
        height: 300px;
    }
}