/*
Theme Name: MJM Press
Theme URI: https://michaeljmallen.com
Author: MNS
Description: Minimalist theme for horror/thriller author Michael J. Mallen
Version: 1.0
*/

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Playfair+Display:wght@700&family=Lora:ital,wght@0,400;0,700&display=swap');

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: "Lora", "Times New Roman", serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}
a {
    color: #d32f2f;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    margin: 0 0 1rem;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

/* === GLOBAL CONTAINER === */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* === HEADER === */
.site-header {
    background: #000;
}

/* Tier 1: Top Bar */
.top-bar {
    padding: 0.3rem 0;
    border-bottom: 1px solid #222;
    font-size: 0.85rem;
    color: #aaa;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-email {
    font-size: 0.95rem;
    color: #aaa;
    margin: 0;
}
.top-nav .top-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.2rem;
}
.top-nav .top-menu a {
    color: #aaa;
    text-decoration: none;
}
.top-nav .top-menu a:hover {
    color: #d32f2f;
}

/* Tier 2: Logo + Cart */
.brand-bar {
    padding: 0.8rem 0;
    border-bottom: 1px solid #222;
}
.brand-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-logo img {
    max-height: 50px;
    width: auto;
}
.cart-icon {
    font-size: 1.4rem;
}
.cart-link {
    color: #fff;
    text-decoration: none;
    position: relative;
}
.cart-count {
    background: #d32f2f;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Tier 3: Main Nav (LEFT-ALIGNED) */
.main-nav-bar {
    padding: 1.1rem 0;
    border-bottom: 1px solid #222;
}
.main-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.main-menu > li {
    position: relative;
}
.main-menu a {
    color: #ccc;
    text-decoration: none;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
}
.main-menu a:hover {
    color: #d32f2f;
}

/* Desktop Dropdown Menu */
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    margin-top: 0.5rem;
}
.main-menu > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-menu ul li {
    margin: 0;
}
.main-menu ul a {
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
    color: #ccc;
    font-family: "Lora", "Times New Roman", serif;
    font-weight: 400;
    border-bottom: 1px solid #2a2a2a;
}
.main-menu ul li:last-child a {
    border-bottom: none;
}
.main-menu ul a:hover {
    color: #d32f2f;
    background: #242424;
    padding-left: 1.5rem;
}

/* Nested dropdown */
.main-menu ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    margin: 0;
    margin-left: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
}
.main-menu ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* === HAMBURGER ICON (Hidden on Desktop) === */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ccc;
    transition: all 0.3s;
}

/* Product Payment Methods - Hide GPay */
.woocommerce-payment-methods .payment_method_google_pay {
    display: none !important;
}

.woocommerce-payment-methods ul.payment_methods li {
    margin-bottom: 1rem;
}

.woocommerce-payment-methods .payment_method_stripe .payment_box,
.woocommerce-payment-methods .payment_method_paypal .payment_box {
    display: inline-block;
    margin-right: 1rem;
}
@media (max-width: 768px) {
    /* Hide desktop header */
    .desktop-header {
        display: none;
    }

    /* Show mobile header */
    .mobile-header {
        display: block;
        background: #000;
        padding: 0.8rem 0;
        border-bottom: 1px solid #222;
        position: relative;
        z-index: 1002;
    }
    .mobile-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .mobile-header .site-logo {
        flex: 1;
    }
    .mobile-header .site-logo img {
        max-height: 40px;
        width: auto;
        display: block;
    }
    .mobile-controls {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .mobile-cart {
        color: #fff;
        text-decoration: none;
        font-size: 1.3rem;
        position: relative;
    }

    /* Show hamburger */
    .hamburger-menu {
        display: flex;
    }

    /* Hide original main menu */
    .main-nav-bar, .top-bar, .brand-bar {
        display: none;
    }

    /* Top email (if needed separately) */
    .top-email {
        font-size: 1rem;
    }

    /* === MOBILE SIDEBAR === */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: #000;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .mobile-sidebar.active {
        transform: translateX(0);
    }

    .sidebar-header {
        padding: 1rem;
        text-align: right;
    }
    .close-menu {
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
    }

    .sidebar-content {
        padding: 1rem;
        color: #ccc;
    }
    .sidebar-section {
        margin-bottom: 1.5rem;
    }
    .sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .sidebar-menu li {
        margin-bottom: 0.8rem;
    }
    .sidebar-menu a {
        color: #ccc;
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.2s;
    }
    .sidebar-menu a:hover {
        color: #d32f2f;
    }

    /* Mobile Dropdown Menu */
    .sidebar-menu ul {
        list-style: none;
        padding: 0;
        margin: 0.5rem 0 0 0;
        display: none;
        background: #0f0f0f;
        border-left: 2px solid #d32f2f;
        margin-left: 0;
        padding-left: 1rem;
    }
    .sidebar-menu li.active > ul {
        display: block;
    }
    .sidebar-menu ul li {
        margin-bottom: 0.6rem;
    }
    .sidebar-menu ul a {
        font-size: 0.95rem;
        color: #aaa;
        padding: 0.3rem 0;
    }
    .sidebar-menu ul a:hover {
        color: #d32f2f;
    }

    /* Overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* === DESKTOP (Default) === */
@media (min-width: 769px) {
    .desktop-header {
        display: block;
    }
    .mobile-header,
    .mobile-sidebar,
    .mobile-overlay {
        display: none;
    }
}

/* === FRONT PAGE === */

/* === HERO BANNER === */
.hero-banner {
    background: #000 url('assets/hero-banner.jpg') center center / cover no-repeat;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}


/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        height: auto;
        min-height: 400px;
        padding: 4rem 0;
        background: #000 url('assets/hero-banner-mobile.jpg') center center / cover no-repeat;
    }
}

/* --- Books Section --- */
.books-section {
    padding: 4rem 0;
    background: #0a0a0a;
}
.section-title {
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1200px;
}
.book-card {
    background: #121212;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s;
}
.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.book-cover {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
    border-radius: 4px;
}
.book-title {
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}
.book-title a {
    color: #fff;
    text-decoration: none;
}
.book-title a:hover {
    text-decoration: underline;
}
.book-button {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    margin-top: 0.8rem;
}
.book-button:hover {
    background: #b71c1c;
}

/* === ABOUT MICHAEL SECTION === */
.about-michael {
    background: #000;
    padding: 4rem 0;
}
.about-michael-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

/* Text Column */
.about-text h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.2rem; /* ← Reduced from 3rem */
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.about-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
}
.about-text .btn {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 1rem;
}
.about-text .btn:hover {
    background: #b71c1c;
}

/* Video Column */
.about-video .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.about-video iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-michael-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .about-text h2 {
        font-size: 1.8rem;
    }
    .about-video iframe {
        height: 200px;
    }
}

/* === TESTIMONIALS (3-COLUMN ONLY) === */
.testimonials-section {
    background: #0a0a0a;
    padding: 1rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

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

.testimonial-card {
    background: #121212;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    overflow: hidden;
    width: 100%;
}

/* Star Rating */
.testimonial-stars {
    color: #d32f2f;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.testimonial-stars .star {
    color: #ddd;
}
.testimonial-stars .filled {
    color: #d32f2f;
}

/* Testimonial Text */
.testimonial-text {
    color: #ccc;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-family: "Oswald", sans-serif;
    flex-wrap: nowrap;
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.author-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    flex: 0 0 40px !important;
    border-radius: 50%;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 0.9rem;
    overflow: hidden;
    position: relative;
}

.author-avatar img {
    width: 40px !important;
    height: 40px !important;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.testimonial-author > div:last-child {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.author-name {
    font-weight: bold;
    font-size: 1rem;
}

.author-role {
    display: block;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .testimonial-card {
        padding: 1rem;
        min-height: auto;
    }
    .testimonial-stars {
        font-size: 1rem;
    }
    .testimonial-author {
        flex-wrap: nowrap;
    }
    .author-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        max-width: 40px;
        max-height: 40px;
        flex: 0 0 40px;
        font-size: 0.8rem;
    }
    .author-avatar img {
        width: 40px;
        height: 40px;
    }
    .author-name {
        font-size: 0.95rem;
    }
    .author-role {
        font-size: 0.85rem;
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .mySwiper { height: 400px; }
    .mySwiper .swiper-slide img { max-height: 400px; }
    .cta-right, .cta-left {
        top: 20%;
        transform: translateY(0);
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    .books-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .email-section h2 { font-size: 1.8rem; }
}

/* === SINGLE PRODUCT PAGE === */
.product-page {
    background: #0a0a0a;
    padding: 2rem 0;
    color: #fff;
}

/* Product Layout */
.product-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}
.product-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.product-summary {
    flex: 1;
}
.product-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.product-rating .star-rating {
    color: #d32f2f;
    font-size: 1.2rem;
}
.review-count {
    color: #aaa;
    font-size: 0.9rem;
}
.product-price {
    font-size: 1.8rem;
    color: #d32f2f;
    font-weight: 700;
    margin: 1rem 0;
}
.product-short-desc {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Product Buttons Container */
.product-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

/* Buy Now Button */
.cart {
    margin: 0;
}
.quantity {
    display: none; /* Hide for digital books */
}
.single_add_to_cart_button,
.checkout-button {
    background: #d32f2f;
    color: white;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.single_add_to_cart_button:hover,
.checkout-button:hover {
    background: #b71c1c;
}

/* Tabs */
.product-tabs {
    margin: 3rem 0;
}
.tab-nav {
    display: flex;
    gap: 0.5rem;
    background: #121212;
    padding: 0.5rem;
    border-radius: 8px 8px 0 0;
}
.tab-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    transition: background 0.3s;
}
.tab-btn:hover {
    background: #d32f2f;
}
.tab-btn.active {
    background: #d32f2f;
    color: white;
}
.tab-content {
    background: #121212;
    padding: 2rem;
    border: 1px solid #222;
    border-top: none;
    border-radius: 0 0 8px 8px;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}
.tab-pane h2 {
    font-family: "Oswald", sans-serif;
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 0 1rem;
}

/* Free Content Tab */
#free-content {
    line-height: 1.7;
    color: #eee;
}
#free-content p {
    margin-bottom: 1rem;
}

/* Reviews (Native WooCommerce) */
#reviews #comments {
    margin-top: 2rem;
}
#reviews ol.commentlist {
    list-style: none;
    padding: 0;
}
#reviews ol.commentlist li {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #222;
}
#reviews .comment-author {
    font-family: "Oswald", sans-serif;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}
#reviews .star-rating {
    color: #d32f2f;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
#reviews .comment-text {
    color: #ccc;
    line-height: 1.6;
}
#reviews #review_form_wrapper {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #222;
    margin-top: 2rem;
}
#reviews .comment-form input[type="text"],
#reviews .comment-form textarea {
    width: 100%;
    padding: 10px;
    background: #121212;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    font-size: 1rem;
}
#reviews .comment-form textarea {
    min-height: 100px;
    resize: vertical;
}
#reviews .form-submit input {
    background: #d32f2f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 1rem;
}

/* Related Products */
.related-title {
    font-family: "Oswald", sans-serif;
    color: #d32f2f;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    margin: 3rem 0 2rem;
}
.related-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    justify-content: center;
}
.related-item {
    background: #121212;
    border: 1px solid #222;
    border-radius: 8px;
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s;
}
.related-item:hover {
    transform: translateY(-5px);
}
.related-item img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 4px;
}
.related-item h3 a {
    color: #fff;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
}
.related-item .price {
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .product-layout {
        flex-direction: column;
    }
    .product-image img {
        max-width: 100%;
    }
    .product-title {
        font-size: 1.8rem;
    }
    .product-price {
        font-size: 1.5rem;
    }
    .tab-nav {
        flex-wrap: wrap;
    }
    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* === WOOCOMMERCE REVIEW FORM — MINIMAL & PROFESSIONAL === */
#review_form_wrapper {
    background: #121212;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #222;
    margin-top: 2rem;
}

#review_form_wrapper h3 {
    font-family: "Oswald", sans-serif;
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.comment-form p {
    margin: 0 0 1rem;
}

/* Hide "Email will not be published" text */
.comment-form .comment-notes {
    display: none;
}

/* Star Rating */
.star-rating {
    display: flex;
    direction: rtl;
    gap: 0.3rem;
    font-size: 1.8rem;
    margin-top: 0.5rem;
}
.star-rating a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.2s;
}
.star-rating a:hover,
.star-rating a.active {
    color: #d32f2f;
}

/* Your Review Textarea */
.comment-form-comment textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: #1e1e1e;
    color: white;
    border-radius: 4px;
    font-size: 1rem;
    min-height: 120px;
    resize: vertical;
}

/* Name Input */
.comment-form-author input {
    width: 100%;
    padding: 12px;
    border: 1px solid #444;
    background: #1e1e1e;
    color: white;
    border-radius: 4px;
    font-size: 1rem;
}

/* Email Field — Hide Visually (Keep for WooCommerce) */
.comment-form-email {
    display: none;
}

/* Submit Button */
.form-submit input {
    background: #d32f2f;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}
.form-submit input:hover {
    background: #b71c1c;
}

/* Checkbox — Hide */
.comment-form-cookies {
    display: none;
}

/* === ABOUT PAGE === */
.about-page {
    background: #0a0a0a;
    padding: 4rem 0;
    color: #fff;
}

.about-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}
.author-image img {
    width: 100%;
    max-width: 500px; /* ← Increased from 300px */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}
.author-image img:hover {
    transform: scale(1.02);
}
.about-content {
    flex: 1;
}
.about-content h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.2rem;
}
.about-content strong,
.about-content em {
    color: #d32f2f;
}
.cta-button {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s;
}
.cta-button:hover {
    background: #b71c1c;
}

/* Responsive */
@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        gap: 2rem;
    }
    .about-content h1 {
        font-size: 1.8rem;
    }
}
/* === CONTACT FORM — DARK THEME === */
.contact-form-dark {
    background: #121212;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #222;
    max-width: 500px;
    margin: 2rem auto;
}

.contact-form-dark .ff-el-form-control {
    width: 100%;
    padding: 12px;
    background: #1e1e1e;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    font-size: 1rem;
    transition: border 0.3s;
}

.contact-form-dark .ff-el-form-control:focus {
    outline: none;
    border-color: #d32f2f;
}

.contact-form-dark textarea.ff-el-form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form-dark .ff-btn {
    background: #d32f2f;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.contact-form-dark .ff-btn:hover {
    background: #b71c1c;
}

.contact-form-dark label {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-dark {
        padding: 1.5rem;
        max-width: 100%;
    }
}
.contact-page {
    background: #0a0a0a;
    padding: 4rem 0;
    color: #fff;
}
.contact-page .container {
    max-width: 800px;
}
.contact-content {
    text-align: center;
    margin-bottom: 2rem;
}
.contact-content h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
}
.contact-content p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
}

/* === ORIGINS COLLECTION LANDING PAGE === */
.origins-landing {
    background: #0a0a0a;
    padding: 3rem 0;
    color: #fff;
}

.hero-section h1 {
    font-family: "Oswald", sans-serif;
    font-size: 2.8rem;
    color: #d32f2f;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 1px;
}

.sub-headline {
    font-size: 1.4rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.bundle-offer {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.book-list h3 {
    font-family: "Oswald", sans-serif;
    color: #d32f2f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.book-list ul {
    list-style: none;
    padding: 0;
    color: #ccc;
}
.book-list li {
    background: #121212;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #222;
}
.book-list strong {
    color: #fff;
    display: block;
    margin-bottom: 0.3rem;
}

.offer-box {
    background: #121212;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #222;
    width: 100%;
    max-width: 400px;
}

.reasons-title {
    font-family: "Oswald", sans-serif;
    color: #d32f2f;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reasons-list {
    list-style: disc;
    padding-left: 1.2rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}
.reasons-list li {
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}
.regular-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1.2rem;
}
.sale-price {
    font-size: 2rem;
    color: #d32f2f;
    font-weight: bold;
}

.add-to-cart-btn {
    width: 100%;
    background: #d32f2f;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
.add-to-cart-btn:hover {
    background: #b71c1c;
}

/* Responsive */
@media (max-width: 768px) {
    .bundle-offer {
        flex-direction: column;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .sub-headline {
        font-size: 1.1rem;
    }
    .price-box {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
}

/* === BLOG PAGE === */
.blog-page {
    background: #0a0a0a;
    padding: 4rem 0;
    color: #fff;
}

.page-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.8rem;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-button {
    position: relative;
    display: block;
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}
.category-button:hover {
    transform: scale(1.02);
}

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

.caption {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: rgba(0,0,0,0.5);
    padding: 8px 0;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .category-buttons {
        gap: 1rem;
    }
    .category-button {
        width: 100%;
        max-width: 300px;
        height: 250px;
    }
    .caption {
        font-size: 1.1rem;
    }
}

/* === FOOTER === */
.site-footer {
    background: #0d0d0d;
    
    border-top: 1px solid #222;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Logo */
.footer-logo img {
    max-height: 235px;
    width: auto;
    margin-bottom: 1rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icons a {
    color: #ccc;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #d32f2f;
}
.social-icons i {
    width: 24px;
    text-align: center;
}

/* Footer Links */
.footer-col h3 {
    font-family: "Oswald", sans-serif;
    color: #d32f2f;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.5rem;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #d32f2f;
    text-decoration: underline;
}

/* Newsletter Form */
.fluentform-wrapper {
    margin-top: 0.5rem;
}
.fluentform-wrapper .ff-el-form-control {
    width: 100%;
    padding: 8px 12px;
    background: #1e1e1e;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
    font-size: 0.95rem;
}
.fluentform-wrapper .ff-btn {
    background: #d32f2f;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    cursor: pointer;
}
.fluentform-wrapper .ff-btn:hover {
    background: #b71c1c;
}

/* Copyright Section */
.copyright-section {
    background: #000;
    padding: 1rem 0;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}
.copyright-section a {
    color: #d32f2f;
    text-decoration: none;
}
.copyright-section a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0;
    }
    .footer-grid {
        gap: 1.5rem;
    }
    .footer-logo img {
        max-height: 150px;
    }
    .social-icons {
        gap: 0.8rem;
    }
    .social-icons i {
        font-size: 1.2rem;
    }
}

/* === CART PAGE === */
.cart-page,
.checkout-page {
    min-height: 60vh;
    padding: 3rem 0;
    background: #0a0a0a;
}

.cart-page .page-title,
.checkout-page h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cart-wrapper {
    background: #0a0a0a;
}

/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-notice,
.woocommerce-error {
    background: #1a1a1a !important;
    border-left: 4px solid #d32f2f !important;
    color: #ccc !important;
    padding: 1.5rem !important;
    border-radius: 4px !important;
    margin-bottom: 2rem !important;
}

.woocommerce-message button {
    background: #d32f2f !important;
    color: white !important;
}

/* Cart Table */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.woocommerce table.shop_table thead {
    background: #0f0f0f;
    border-bottom: 2px solid #d32f2f;
}

.woocommerce table.shop_table th {
    padding: 1.2rem;
    text-align: left;
    color: #fff;
    font-weight: 700;
    font-family: "Playfair Display", Georgia, serif;
    border-bottom: 2px solid #d32f2f;
}

.woocommerce table.shop_table td {
    padding: 1.2rem;
    border-bottom: 1px solid #2a2a2a;
    color: #ccc;
    vertical-align: middle;
}

.woocommerce table.shop_table tbody tr:last-child td {
    border-bottom: none;
}

.woocommerce table.shop_table tbody tr:hover {
    background: #222;
}

/* Product Remove Button */
.woocommerce table.shop_table .product-remove a,
.product-remove a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d32f2f;
    color: white !important;
    font-size: 1.8rem;
    border-radius: 50%;
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #d32f2f;
}

.woocommerce table.shop_table .product-remove a:hover,
.product-remove a.remove:hover {
    background: transparent;
    color: #d32f2f !important;
    transform: scale(1.1);
}

/* Product Thumbnail */
.woocommerce table.shop_table .product-thumbnail img {
    max-width: 100px;
    height: auto;
    border-radius: 4px;
}

.woocommerce table.shop_table .product-thumbnail a {
    display: inline-block;
}

/* Product Name Link */
.woocommerce table.shop_table .product-name a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.woocommerce table.shop_table .product-name a:hover {
    color: #ff6b6b;
}

/* Price */
.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Quantity Input */
.woocommerce .quantity input.qty,
.quantity input.qty {
    background: #2a2a2a !important;
    color: #fff !important;
    border: 1px solid #444 !important;
    padding: 0.5rem !important;
    width: 70px !important;
    text-align: center;
    border-radius: 4px;
}

.woocommerce .quantity input.qty:focus,
.quantity input.qty:focus {
    border-color: #d32f2f !important;
    outline: none !important;
}

.woocommerce .quantity .qty-button {
    background: #d32f2f;
    color: white;
    border: none;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
}

/* Cart Actions */
.woocommerce .cart_totals,
.woocommerce-cart-form {
    background: transparent;
}

.woocommerce .actions {
    background: #1a1a1a !important;
    padding: 1.5rem !important;
    text-align: right;
}

.woocommerce .actions .button,
.woocommerce .coupon .button {
    background: #d32f2f !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s !important;
    margin-left: 1rem !important;
}

.woocommerce .actions .button:hover,
.woocommerce .coupon .button:hover {
    background: #b71c1c !important;
    transform: translateY(-2px);
}

.woocommerce .coupon input[type="text"] {
    background: #2a2a2a !important;
    color: #fff !important;
    border: 1px solid #444 !important;
    padding: 0.75rem 1rem !important;
    border-radius: 4px !important;
    margin-right: 0.5rem !important;
}

.woocommerce .coupon input[type="text"]:focus {
    border-color: #d32f2f !important;
    outline: none !important;
}

.coupon {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
}

/* Cart Collaterals */
.cart-collaterals {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #2a2a2a;
}

.woocommerce .cart_totals table {
    background: #0f0f0f;
    color: #ccc;
}

.woocommerce .cart_totals table tr td,
.woocommerce .cart_totals table tr th {
    background: #1a1a1a;
    color: #ccc;
    border-color: #2a2a2a;
    padding: 1rem;
}

.woocommerce .cart_totals table tr.total td,
.woocommerce .cart_totals table tr.total th {
    background: #0f0f0f;
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 2px solid #d32f2f;
}

.woocommerce .cart_totals .wc-proceed-to-checkout a {
    background: #d32f2f !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    transition: all 0.3s !important;
}

.woocommerce .cart_totals .wc-proceed-to-checkout a:hover {
    background: #b71c1c !important;
}

/* Cross Sells */
.woocommerce .cross-sells {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.woocommerce .cross-sells h2,
.woocommerce .cross-sells .products h3 {
    color: #d32f2f;
    font-family: "Playfair Display", Georgia, serif;
}

.woocommerce .products .product {
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
}

/* Continue Shopping Link */
.woocommerce-page a[href*="shop"],
.woocommerce a.button.alt {
    background: #d32f2f !important;
    color: white !important;
}

/* === CHECKOUT PAGE FORMS === */
.checkout-page {
    background: #0a0a0a;
    padding: 3rem 0;
    min-height: 60vh;
}

.checkout-page .page-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    color: #d32f2f;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.checkout-wrapper {
    background: #0a0a0a;
}

/* Form Section */
.woocommerce-checkout form.checkout {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.woocommerce-checkout-review-order {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid #2a2a2a;
}

.woocommerce-checkout-review-order h3 {
    color: #d32f2f;
    margin-top: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
}

#order_review_heading {
    font-size: 1.8rem;
    color: #d32f2f;
    font-family: "Playfair Display", Georgia, serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.woocommerce-checkout form .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-checkout form .form-row label {
    color: #ccc;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.woocommerce-checkout form .form-row.form-row-first,
.woocommerce-checkout form .form-row.form-row-last {
    width: 100%;
}

.woocommerce-checkout form input[type="text"],
.woocommerce-checkout form input[type="email"],
.woocommerce-checkout form input[type="tel"],
.woocommerce-checkout form input[type="number"],
.woocommerce-checkout form input[type="password"],
.woocommerce-checkout form select,
.woocommerce-checkout form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #2a2a2a;
    color: #fff;
    border: 1px solid #444;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.woocommerce-checkout form input:focus,
.woocommerce-checkout form select:focus,
.woocommerce-checkout form textarea:focus {
    outline: none;
    border-color: #d32f2f;
    background: #333;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.woocommerce .col2-set {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
}

.woocommerce .col2-set h3 {
    color: #d32f2f;
    font-family: "Playfair Display", Georgia, serif;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

#customer_details h3 {
    font-size: 1.3rem;
}

/* Order Review Table */
.woocommerce table.shop_table {
    width: 100%;
    margin-bottom: 1.5rem;
    background: transparent;
}

.woocommerce table.shop_table thead {
    background: #0f0f0f;
    border-bottom: 2px solid #d32f2f;
}

.woocommerce table.shop_table th {
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid #d32f2f;
}

.woocommerce table.shop_table td {
    padding: 1rem;
    border-bottom: 1px solid #2a2a2a;
    color: #ccc;
}

.woocommerce table.shop_table tr.order-total td,
.woocommerce table.shop_table tr.order-total th {
    background: #0f0f0f;
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 2px solid #d32f2f;
}

/* Payment Section */
.woocommerce-checkout #payment {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    margin-top: 2rem;
}

.woocommerce-checkout #payment h3 {
    color: #d32f2f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .payment_methods {
    background: #0f0f0f;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.woocommerce-checkout .payment_methods li {
    padding: 1rem;
    border: 1px solid #2a2a2a;
    margin-bottom: 1rem;
    border-radius: 4px;
    background: #1a1a1a;
    list-style: none;
}

.woocommerce-checkout .payment_methods li:hover {
    border-color: #d32f2f;
    background: #222;
}

.woocommerce-checkout .payment_methods li label {
    color: #ccc;
    margin: 0;
}

.woocommerce-checkout .payment_methods input[type="radio"] {
    margin-right: 0.5rem;
}

/* Place Order Button */
.woocommerce-checkout button[name="place_order"] {
    background: #d32f2f !important;
    color: white !important;
    padding: 1rem 2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    width: 100%;
    transition: all 0.3s !important;
    margin-top: 1.5rem;
}

.woocommerce-checkout button[name="place_order"]:hover {
    background: #b71c1c !important;
    transform: translateY(-2px);
}

/* Hide Shipping for Digital Products */
#shipping_method,
.shipping-address h3,
.woocommerce-shipping-fields {
    display: none !important;
}

@media (max-width: 768px) {
    .checkout-page .page-title {
        font-size: 2rem;
    }

    .woocommerce .col2-set {
        grid-template-columns: 1fr;
    }

    .woocommerce .col2-set .col-1,
    .woocommerce .col2-set .col-2 {
        padding: 0;
    }

    .woocommerce-checkout form .form-row input,
    .woocommerce-checkout form .form-row select {
        font-size: 16px;
    }

    .woocommerce-checkout button[name="place_order"] {
        padding: 0.75rem 1.5rem !important;
    }
}

/* === SHOP PAGE === */
.shop-page {
    min-height: 70vh;
    padding: 3rem 0;
    background: #0a0a0a;
}

.shop-page .shop-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.8rem;
    color: #d32f2f;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.5rem;
}

.shop-page .shop-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, #d32f2f, transparent);
}

.shop-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Product Item */
.woocommerce ul.products li.product {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.woocommerce ul.products li.product:hover {
    border-color: #d32f2f;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

/* Product Image */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title {
    color: #fff;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.4s;
    display: block;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

/* Product Title */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
    color: #fff;
    padding: 1rem 1rem 0;
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    min-height: 3.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Price */
.woocommerce ul.products li.product .price {
    color: #d32f2f;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    margin: 0;
}

.woocommerce ul.products li.product .price del {
    opacity: 0.6;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
}

/* Star Rating */
.woocommerce ul.products li.product .star-rating {
    padding: 0 1rem;
    color: #d32f2f;
}

/* Product Button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
    background: #d32f2f !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    margin: 0 1rem 1rem !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
    width: calc(100% - 2rem);
    display: inline-block;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .added_to_cart:hover {
    background: #b71c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.woocommerce ul.products li.product .added_to_cart {
    background: #333 !important;
    color: #d32f2f !important;
}

.woocommerce ul.products li.product .added_to_cart:hover {
    background: #444 !important;
}

/* Quick View Button */
.woocommerce ul.products li.product .quick-view {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    background: rgba(211, 47, 47, 0.9) !important;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 4px !important;
    font-size: 0.9rem !important;
    transition: all 0.3s !important;
    z-index: 10;
}

.woocommerce ul.products li.product:hover .quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Product Meta */
.woocommerce ul.products li.product .product-meta {
    padding: 0 1rem;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.woocommerce nav.woocommerce-pagination .page-numbers {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    color: #ccc;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.woocommerce nav.woocommerce-pagination .page-numbers:hover {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

.woocommerce nav.woocommerce-pagination .page-numbers.current {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

/* Sorting */
.woocommerce-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 1rem;
}

.woocommerce-toolbar form {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.woocommerce-toolbar select {
    background: #2a2a2a !important;
    color: #fff !important;
    border: 1px solid #444 !important;
    padding: 0.75rem 1rem !important;
    border-radius: 4px !important;
}

.woocommerce-result-count {
    color: #ccc;
}

/* Empty Shop */
.woocommerce-info {
    background: #1a1a1a !important;
    border-left: 4px solid #d32f2f !important;
    color: #ccc !important;
    padding: 2rem !important;
    border-radius: 4px !important;
    text-align: center;
}

.woocommerce-info a {
    color: #d32f2f;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .shop-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .shop-page .shop-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .shop-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .woocommerce ul.products li.product img {
        height: 280px;
    }

    .woocommerce ul.products li.product h2,
    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 1.1rem;
        padding: 0.75rem 0.75rem 0;
    }

    .woocommerce ul.products li.product .price {
        font-size: 1.2rem;
        padding: 0.25rem 0.75rem;
    }

    .woocommerce ul.products li.product .button {
        padding: 0.6rem 1rem !important;
        margin: 0 0.75rem 0.75rem !important;
        width: calc(100% - 1.5rem);
        font-size: 0.9rem;
    }

    .woocommerce-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === BLOG PAGE === */
.blog-page {
    min-height: 70vh;
    padding: 3rem 0;
    background: #0a0a0a;
}

.blog-page .page-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.8rem;
    color: #d32f2f;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-button {
    padding: 0.75rem 1.5rem;
    background: #1a1a1a;
    color: #ccc;
    border: 2px solid #2a2a2a;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

.category-button:hover,
.category-button.active {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    border-color: #d32f2f;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

.blog-thumbnail {
    overflow: hidden;
    height: 250px;
    background: #0f0f0f;
}

.blog-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.blog-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #d32f2f;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #d32f2f;
    font-weight: 600;
}

.blog-category {
    color: #aaa;
    background: #2a2a2a;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.blog-excerpt {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.read-more {
    display: inline-block;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.read-more:hover {
    color: #ff6b6b;
    margin-right: -0.5rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    color: #ccc;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-pagination a:hover {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

.blog-pagination span.page-numbers.current {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

@media (max-width: 768px) {
    .blog-page .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .category-buttons {
        gap: 1rem;
    }

    .category-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card {
        display: grid;
        grid-template-columns: 180px 1fr;
    }

    .blog-thumbnail {
        height: 100%;
        min-height: 180px;
    }

    .blog-title {
        font-size: 1.2rem;
    }
}

/* === BLOG PAGE === */
.blog-page {
    background: #0a0a0a;
    padding: 4rem 0;
    color: #fff;
}

.page-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.8rem;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-button {
    position: relative;
    display: block;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}
.category-button:hover {
    transform: scale(1.02);
}

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

.caption {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-family: "Oswald", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: rgba(0,0,0,0.5);
    padding: 8px 0;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .category-buttons {
        gap: 1rem;
    }
    .category-button {
        width: 100%;
        max-width: 300px;
        height: 250px;
    }
    .caption {
        font-size: 1.1rem;
    }
}

/* === BLOG ARCHIVE PAGE (CATEGORY PAGES) === */
.blog-archive-page {
    padding: 3rem 0;
    min-height: 60vh;
}

.archive-header {
    margin-bottom: 3rem;
    text-align: center;
}

.archive-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.back-to-stories {
    display: inline-block;
    color: #d32f2f;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

.back-to-stories:hover {
    border-color: #d32f2f;
    background: rgba(211, 47, 47, 0.1);
}

/* 3-Column Blog Grid */
.blog-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.blog-card-3col {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-3col:hover {
    border-color: #d32f2f;
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.15);
    transform: translateY(-5px);
}

.blog-thumb-3col {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0a0a0a;
}

.blog-thumb-3col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-3col:hover .blog-thumb-3col img {
    transform: scale(1.05);
}

.blog-info-3col {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title-3col {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.blog-title-3col a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.blog-title-3col a:hover {
    color: #d32f2f;
    text-decoration: none;
}

.blog-meta-3col {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
}

.blog-date-3col {
    color: #d32f2f;
}

.blog-excerpt-3col {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.6;
}

.read-more-3col {
    color: #d32f2f;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-3col:hover {
    color: #ff6b6b;
    text-decoration: none;
    transform: translateX(5px);
}

.blog-pagination-3col {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    grid-column: 1 / -1;
    flex-wrap: wrap;
}

.blog-pagination-3col a,
.blog-pagination-3col span {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    color: #ccc;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-pagination-3col a:hover {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

.blog-pagination-3col span.page-numbers.current {
    background: #d32f2f;
    color: white;
    border-color: #d32f2f;
}

@media (max-width: 1024px) {
    .blog-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-grid-3col {
        grid-template-columns: 1fr;
    }
    
    .archive-title {
        font-size: 1.8rem;
    }
    
    .blog-card-3col {
        display: grid;
        grid-template-columns: 180px 1fr;
        gap: 0;
    }
    
    .blog-thumb-3col {
        height: 180px;
    }
    
    .blog-info-3col {
        padding: 1rem;
    }
    
    .blog-title-3col {
        font-size: 1.1rem;
        min-height: auto;
    }
}

/* === SINGLE POST PAGE === */
.single-post-page {
    padding: 4rem 0;
    min-height: 80vh;
}

.post-wrapper {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.post-article {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 3rem;
    overflow: hidden;
}

.post-header-single {
    margin-bottom: 2rem;
    text-align: center;
}

.post-title-single {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-meta-single {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #999;
    flex-wrap: wrap;
}

.post-date-single {
    color: #d32f2f;
    font-weight: 600;
}

.post-author-single {
    color: #ccc;
}

.post-category-single {
    color: #d32f2f;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #d32f2f;
    transition: all 0.3s ease;
}

.post-category-single:hover {
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
}

.post-separator {
    color: #2a2a2a;
}

.post-featured-single {
    width: 100%;
    margin: 2rem 0;
    border-radius: 6px;
    overflow: hidden;
    background: #0a0a0a;
}

.post-featured-single img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content-single {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ddd;
    margin: 2rem 0;
}

.post-content-single p {
    margin-bottom: 1.5rem;
}

.post-content-single h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin: 2rem 0 1rem;
}

.post-content-single h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 1.5rem 0 0.8rem;
}

.post-content-single strong {
    color: #ffffff;
}

.post-content-single em {
    color: #ccc;
    font-style: italic;
}

.post-content-single ul,
.post-content-single ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.post-content-single blockquote {
    border-left: 4px solid #d32f2f;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #bbb;
    font-style: italic;
}

.post-tags-single {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    flex-wrap: wrap;
}

.tags-label {
    color: #999;
    font-weight: 600;
}

.post-tags-single a {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #2a2a2a;
    color: #d32f2f;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.post-tags-single a:hover {
    background: #d32f2f;
    color: #ffffff;
    text-decoration: none;
}

.post-nav-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #2a2a2a;
    font-size: 0.95rem;
}

.nav-prev-single,
.nav-next-single {
    display: flex;
}

.nav-prev-single a,
.nav-next-single a {
    color: #d32f2f;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-prev-single a:hover,
.nav-next-single a:hover {
    color: #ff6b6b;
    text-decoration: none;
}

.back-to-blog-single {
    text-align: center;
    margin-top: 3rem;
}

.back-link-single {
    display: inline-block;
    color: #d32f2f;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

.back-link-single:hover {
    border-color: #d32f2f;
    background: rgba(211, 47, 47, 0.1);
    text-decoration: none;
}

@media (max-width: 768px) {
    .post-article {
        padding: 1.5rem;
    }
    
    .post-title-single {
        font-size: 1.8rem;
    }
    
    .post-meta-single {
        font-size: 0.85rem;
    }
    
    .post-content-single {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .post-nav-single {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-prev-single,
    .nav-next-single {
        flex-direction: column;
    }
}

/* === PRODUCT REVIEWS / COMMENTS === */
.comments-wrapper {
    margin-top: 3rem;
}

.comments-list {
    margin-bottom: 2rem;
}

.comment-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment-author-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.comment-author-name {
    font-weight: 600;
    color: #ffffff;
}

.comment-author-name a {
    color: #d32f2f;
    text-decoration: none;
}

.comment-author-name a:hover {
    text-decoration: underline;
}

.comment-date {
    font-size: 0.85rem;
    color: #999;
}

.comment-awaiting-moderation {
    font-size: 0.85rem;
    color: #d32f2f;
    font-style: italic;
    margin: 0;
}

.comment-content {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-content p {
    margin: 0 0 0.5rem;
}

.comment-footer {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.comment-footer a {
    color: #d32f2f;
    transition: all 0.3s ease;
}

.comment-footer a:hover {
    color: #ff6b6b;
    text-decoration: none;
}

.edit-link {
    color: #999;
}

/* Comment Form */
.comment-form-wrapper {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-form-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.comment-form p {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comment-form label {
    color: #ccc;
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    background: #0a0a0a;
    color: #ffffff;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-family: "Lora", serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 1rem;
}

.form-submit input {
    background: #d32f2f;
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Lora", serif;
}

.form-submit input:hover {
    background: #ff6b6b;
    transform: translateY(-2px);
}

.required {
    color: #d32f2f;
}

.comment-form-comment {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .comment-author-section {
        flex-wrap: wrap;
    }
    
    .comment-footer {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .comment-form-wrapper {
        padding: 1.5rem;
    }
}