/* ============================================
   COOKIE SETTINGS PAGE STYLES
   ============================================ */

.cookie-settings-wrapper {
    min-height: 100vh;
}

.cookie-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #f3f3f3;
    padding: 60px 20px;
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cookie-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.cookie-hero-content {
    position: relative;
    z-index: 1;
}

.cookie-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px;
    letter-spacing: -1px;
}

.cookie-subtitle {
    font-size: 20px;
    opacity: 0.95;
    margin: 0;
}

.cookie-settings-content {
    padding: 60px 20px;
    background: #f9f9f9;
}

.cookie-settings-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-settings-left {
    display: flex;
    align-items: flex-start;
}

.intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    position: sticky;
    top: 20px;
}

.cookie-category {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #667eea;
}

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

.category-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.category-icon {
    font-size: 20px;
    display: inline-block;
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.required {
    background: #e8f5e9;
    color: #2e7d32;
}

.category-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.category-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 28px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #667eea;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

.toggle-switch.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

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

.cookie-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    min-width: 150px;
}

.cookie-info {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #999;
}

.cookie-info a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.cookie-info a:hover {
    text-decoration: underline;
}

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

    .cookie-title {
        font-size: 32px;
    }

    .intro-text {
        position: static;
    }
}

/* ============================================
   OUR STORY PAGE STYLES
   ============================================ */

.our-story-wrapper {
    background: #fff;
}

.story-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.story-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.story-hero-content {
    position: relative;
    z-index: 1;
}

.story-hero-title {
    font-size: 64px;
    font-weight: 800;
    margin: 0 0 20px;
    letter-spacing: -2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.story-hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.story-timeline {
    padding: 80px 20px;
    background: #fff;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 30px;
    color: #333;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 0 auto;
    border-radius: 2px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #e0e0e0;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-marker {
    left: calc(50% - 75px);
}

.timeline-item:nth-child(even) .timeline-marker {
    left: calc(50% + 25px);
}

.timeline-marker {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #667eea;
    border: 4px solid white;
    border-radius: 50%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-year {
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #333;
}

.timeline-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.story-values {
    padding: 80px 20px;
    background: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-icon {
    margin-bottom: 20px;
}

.icon-circle {
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    font-size: 40px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.story-team {
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #e0e0e0;
}

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

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
}

.member-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    color: #333;
}

.member-role {
    display: block;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.story-cta {
    padding: 60px 20px;
    text-align: center;
}

.story-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
}

.story-cta p {
    font-size: 18px;
    margin: 0;
    opacity: 0.95;
}

.section-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .story-hero-title {
        font-size: 42px;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: -25px !important;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 30px);
        margin-left: 30px !important;
        margin-right: auto !important;
    }

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

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

.single-product-wrapper {
    background: #fff;
    min-height: 100vh;
}

.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: #999;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #764ba2;
}

.separator {
    color: #ddd;
}

.product-main {
    padding: 40px 20px;
}

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

.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    font-weight: 600;
}

.social-link:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #333;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

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

.rating-count {
    color: #999;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.price-label {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

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

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

.price-discount {
    background: #ff6b6b;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-short-desc {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.product-specs {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.product-specs h3 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    font-size: 14px;
}

.spec-label {
    min-width: 100px;
    font-weight: 600;
    color: #333;
}

.spec-value {
    color: #666;
}

.spec-value.in-stock {
    color: #28a745;
    font-weight: 600;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.product-select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.product-select:hover,
.product-select:focus {
    border-color: #667eea;
    outline: none;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    width: fit-content;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #f0f0f0;
}

#product-quantity {
    width: 50px;
    height: 36px;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.btn-large {
    padding: 14px 30px;
    font-size: 16px;
    min-height: 50px;
}

.btn-icon {
    margin-right: 8px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.badge-icon {
    font-size: 24px;
}

.product-details-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.tabs {
    max-width: 1400px;
    margin: 0 auto;
}

.tab-headers {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-header {
    padding: 15px 20px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #999;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    bottom: -2px;
}

.tab-header:hover {
    color: #333;
}

.tab-header.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tab-body {
    background: white;
    padding: 40px;
    border-radius: 8px;
}

.tab-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #333;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td {
    padding: 15px 0;
}

.spec-name {
    font-weight: 600;
    color: #333;
    width: 30%;
}

.spec-value {
    color: #666;
}

.reviews-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
}

.review-rating {
    color: #ffc107;
}

.review-date {
    color: #999;
    margin-left: auto;
}

.review-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.related-products {
    padding: 60px 20px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px;
    text-align: center;
    color: #ffffff;
}

.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

    .product-header h1 {
        font-size: 24px;
    }

    .price-amount {
        font-size: 24px;
    }

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

    .tab-headers {
        gap: 0;
    }

    .tab-header {
        padding: 12px 15px;
        font-size: 14px;
    }

    .tab-body {
        padding: 20px;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

.blog-post-wrapper {
    background: #fff;
}

.article-header {
    position: relative;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.article-category a {
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s;
}

.article-category a:hover {
    background: #764ba2;
}

.article-date time {
    color: #666;
}

.article-read-time {
    color: #999;
}

.article-title {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
    color: #333;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin: 20px 0 0;
    max-width: 600px;
}

.article-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    gap: 20px;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 14px;
    color: #333;
}

.author-name strong {
    font-weight: 700;
}

.author-bio {
    font-size: 12px;
    color: #999;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.article-featured-image {
    margin-top: 40px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.article-content {
    padding: 60px 20px;
    background: #fff;
}

.article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.article-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #333;
}

.article-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #333;
}

.article-body p {
    margin: 20px 0;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin: 10px 0;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.article-widget {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list a {
    display: block;
    color: #667eea;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.3s;
    border-left: 3px solid transparent;
    padding-left: 12px;
}

.toc-list a:hover {
    color: #764ba2;
    border-left-color: #667eea;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 6px 12px;
    border: 1px solid #667eea;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.tag:hover {
    background: #667eea;
    color: white;
}

.widget-text {
    color: #666;
    font-size: 14px;
    margin: 0 0 15px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.related-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: color 0.3s;
    font-size: 14px;
}

.related-post-link:hover {
    color: #764ba2;
}

.related-date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.article-footer {
    background: #f9f9f9;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.author-box {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.author-box-image {
    flex-shrink: 0;
}

.author-box-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-box-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #333;
}

.author-box-bio {
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px;
    font-size: 14px;
}

.author-box-links {
    display: flex;
    gap: 15px;
}

.author-link {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.author-link:hover {
    color: #764ba2;
}

.related-articles {
    padding: 60px 20px;
    background: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.article-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e0e0e0;
}

.article-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.article-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #667eea;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-card-content {
    padding: 25px;
}

.article-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.4;
}

.article-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.article-card-title a:hover {
    color: #667eea;
}

.article-card-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px;
}

.article-card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.article-comments {
    padding: 60px 20px;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }

    .article-header-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-share {
        width: 100%;
    }

    .article-featured-image {
        height: 300px;
    }

    .article-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-sidebar {
        display: none;
    }
}
/* =========================
   HERO – YOUTUBE BACKGROUND
   ========================= */

.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

/* Keeps iframe filling screen */
.hero-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 ratio */
    transform: translate(-50%, -50%);
}

/* YouTube iframe */
.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* prevents clicks */
}

/* ============================================
   HOME PAGE SECTIONS (Section 1-8)
   ============================================ */

/* Base Section Styles */
.home-section {
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.home-section.section-two,
.home-section.section-three,
.home-section.section-four {
    background-color: #000000;
}
/* =========================
   SECTION 2 – HERO IMAGE
   ========================= */

.section-two {
    position: relative;
    width: 100%;
    height: 760px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: #000;
}

/* =========================
   TITLE – ABOVE BOTTLE CAPS
   ========================= */

.section-two-title {
    position: absolute;
    top: 60px;              /* slightly ABOVE bottle caps */
    left: 70px;
    max-width: 500px;       /* forces 2-line wrap */
    z-index: 3;
	font-size:3rem;
}

.section-two-title h2 {
    margin: 0;
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   BLACK BASE AREA (RIGHT)
   ========================= */

.section-two-desc-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    height: 45%;
    background-color: #000000;
    z-index: 2;

    display: flex;
    align-items: center;
    padding: 60px 70px;
}

/* =========================
   DESCRIPTION – EMBOSSED
   ========================= */

.section-two-description {
    color: #d6d6d6;
    font-size: 14px;
    line-height: 1.75;

    /* Embossed / pressed effect */
    text-shadow:
        0 1px 0 rgba(0, 0, 0, 0.9),
        0 -1px 0 rgba(255, 255, 255, 0.06);
}

.section-two-description p {
    margin: 0 0 14px;
}

.section-two-description a {
    color: #caa24d; /* subtle gold accent */
    text-decoration: none;
    font-weight: 600;
}

.section-two-description a:hover {
    text-decoration: underline;
}

/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 1024px) {
    .section-two {
        height: 640px;
    }

    .section-two-title {
        top: 70px;
        left: 40px;
        max-width: 360px;
    }

    .section-two-title h2 {
        font-size: 44px;
    }

    .section-two-desc-wrap {
        width: 55%;
        height: 45%;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .section-two {
        height: auto;
        padding-bottom: 40px;
    }

    .section-two-title {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        padding: 40px 20px 20px;
    }

    .section-two-title h2 {
        font-size: 32px;
    }

    .section-two-desc-wrap {
        position: relative;
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }
}
/* =========================
   SECTION 3 – STORY LAYOUT
   ========================= */

.section-three {
    background: #000;
    color: #fff;
}

.section-three-inner {
    display: flex;
    align-items: flex-start; /* IMPORTANT */
    padding: 10px 0 10px; /* top & bottom breathing space */
}

/* =========================
   LEFT – TEXT AREA
   ========================= */

.section-three-text {
    width: 50%;
    padding-left: 80px;
    padding-right: 40px;
}

.section-three-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 30px;
    max-width: 75%;
}

/* Embossed description */
.section-three-description {
    font-size: 14px;
    line-height: 1.8;
    color: #d0d0d0;
    max-width: 520px;

    text-shadow:
        0 1px 0 rgba(0,0,0,0.9),
        0 -1px 0 rgba(255,255,255,0.05);
}

.section-three-description p {
    margin: 0 0 16px;
}

/* =========================
   RIGHT – IMAGE (NOT FULL HEIGHT)
   ========================= */

.section-three-image {
    width: 50%;
    margin-top: 40px;       /* space above image */
    max-height: 420px;      /* image does NOT fill section */
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 1024px) {
    .section-three-inner {
        padding: 90px 0 80px;
    }

    .section-three-text {
        padding-left: 50px;
    }

    .section-three-title {
        font-size: 42px;
    }

    .section-three-image {
        max-height: 360px;
    }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {
    .section-three-inner {
        flex-direction: column;
        padding: 60px 0;
    }

    .section-three-text,
    .section-three-image {
        width: 100%;
    }

    .section-three-text {
        padding: 0 20px 30px;
    }

    .section-three-image {
        height: 300px;
        max-height: none;
        margin-top: 0;
        background-position: center;
    }

    .section-three-title {
        font-size: 30px;
    }
}
/* ======================================
   SECTION 4 – WHY NITROGEN CHANGES EVERYTHING
   ====================================== */

.section-four {
    background: #000;
    color: #fff;
}

/* MAIN WRAPPER */
.section-four-inner {
    padding: 10px 80px;
}

/* ======================================
   ROW 1 – TITLE (LEFT) + IMAGE (RIGHT)
   ====================================== */

.section-four-row--top {
    display: flex;
    align-items: center;
}

/* LEFT – TITLE */
.section-four-title-col {
    width: 55%;
}

.section-four-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
    max-width: 90%;
}

/* RIGHT – IMAGE */
.section-four-image-col {
    width: 45%;
    display: flex;
    justify-content: center;
}

.section-four-image-col img {
    max-width: 100%;
    height: auto;
    max-height: 520px;
    display: block;
}

/* ======================================
   ROW 2 – ICONS + EXTRA DESCRIPTION (LEFT ONLY)
   ====================================== */

.section-four-row--bottom {
    display: flex;
}

.section-four-icons-col {
    width: 55%;
}

/* ICON GRID */
.section-four-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* SINGLE ICON */
.section-four-icon img {
    width: 46px;
    height: auto;
    margin-bottom: 16px;
}

.section-four-icon h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
}

.section-four-icon p {
    font-size: 13px;
    line-height: 1.6;
    color: #cfcfcf;
}

/* EXTRA DESCRIPTION BELOW ICONS */
.section-four-extra-description {
    margin-top: 40px;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.8;
    color: #d0d0d0;

    /* Embossed / premium effect */
    text-shadow:
        0 1px 0 rgba(0,0,0,0.9),
        0 -1px 0 rgba(255,255,255,0.05);
}

.section-four-extra-description p {
    margin: 0 0 16px;
}

/* ======================================
   TABLET (≤1024px)
   ====================================== */

@media (max-width: 1024px) {
    .section-four-inner {
        padding: 90px 50px;
    }

    .section-four-title {
        font-size: 42px;
    }

    .section-four-icons {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-four-image-col img {
        max-height: 420px;
    }
}

/* ======================================
   MOBILE (≤768px)
   ====================================== */

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

    .section-four-row--top,
    .section-four-row--bottom {
        flex-direction: column;
    }

    .section-four-title-col,
    .section-four-image-col,
    .section-four-icons-col {
        width: 100%;
        text-align: center;
    }

    .section-four-image-col {
        margin-top: 30px;
    }

    .section-four-title {
        font-size: 30px;
        max-width: 100%;
    }

    .section-four-icons {
        grid-template-columns: 1fr;
    }

    .section-four-extra-description {
        max-width: 100%;
    }
}
/* ======================================
   SECTION 5
   ====================================== */
.section-five {
    position: relative;
    background-color: #000;
    color: #fff;
    overflow: visible;
	padding: 50px 100px
}

.section-five-overlay {
    position: relative;
}

/* ================= TITLE ================= */

.section-five-title {
    position: absolute;
    top: -60px;
    left: 2%;
    z-index: 3;
	width: 60%;
}

.section-five-title h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    margin: 0;
}

/* Push second line visually onto image */
.section-five-title h2 span {
    display: block;
    margin-top: 20px;
}

/* ================= IMAGE ================= */

.section-five-image-col {
    position: relative;
    z-index: 1;
    text-align: left;
}

.section-five-image-col img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
}

/* ================= DESCRIPTION ================= */

.section-five-description {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    margin-top: -160px;  /* This creates 40% overlap */
    padding: 40px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
    z-index: 2;
}
@media (max-width: 992px) {

    .section-five-title {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 30px;
    }

    .section-five-title h2 {
        font-size: 32px;
    }

    .section-five-description {
        margin-top: 40px;
        max-width: 100%;
    }
}
/* ======================================
   SECTION 6 & 7 – IMAGE LEFT / TEXT RIGHT
   ====================================== */

.split-image-text {
    background: #000;
    color: #fff;
}

/* MAIN LAYOUT */
.split-inner {
    display: flex;
    align-items: center;
    min-height: 620px;
    padding: 10px 80px;
}

/* IMAGE LEFT */
.split-image {
    width: 50%;
    display: flex;
    justify-content: center;
}

.split-image img {
    max-width: 100%;
    height: auto;
    max-height: 520px;
    display: block;
}

/* TEXT RIGHT */
.split-text {
    width: 50%;
    padding-left: 80px;
}

.split-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.split-description {
    font-size: 14px;
    line-height: 1.8;
    color: #d0d0d0;

    /* subtle embossed look */
    text-shadow:
        0 1px 0 rgba(0,0,0,0.9),
        0 -1px 0 rgba(255,255,255,0.05);
}

.split-description p {
    margin: 0 0 14px;
}

/* ======================================
   TABLET
   ====================================== */

@media (max-width: 1024px) {
    .split-inner {
        padding: 80px 50px;
    }

    .split-text {
        padding-left: 50px;
    }

    .split-title {
        font-size: 34px;
    }
}

/* ======================================
   MOBILE
   ====================================== */

@media (max-width: 768px) {
    .split-inner {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
    }

    .split-image,
    .split-text {
        width: 100%;
        padding-left: 0;
    }

    .split-image {
        margin-bottom: 30px;
    }

    .split-title {
        font-size: 28px;
    }
}
