/*
Theme Name: Jepara Furniture
Theme URI: https://jeparacraft.com
Author: Jepara Craft
Author URI: https://jeparacraft.com
Description: Theme premium untuk furniture Jepara dengan desain modern dan elegan. Menampilkan keindahan kayu jati dengan sentuhan tradisional.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jepara-furniture
Tags: furniture, jepara, premium, one-page, custom-menu, featured-images
*/

/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2C1810;
    --secondary: #8B6F47;
    --accent: #D4A574;
    --light: #F5F1ED;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #6B6B6B;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-decoration: none;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
}

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

.cta-button {
    padding: 0.875rem 2rem;
    min-height: 48px;
    min-width: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 111, 71, 0.3);
    color: var(--white);
}

/* Language Switcher (Custom) */
.language-switcher {
    display: flex;
    gap: 0.25rem;
    margin-right: 1rem;
}

.language-switcher .lang-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.6rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.language-switcher .lang-item:hover {
    opacity: 1;
    background: var(--light);
}

.language-switcher .lang-item.active {
    opacity: 1;
    background: var(--primary);
    color: var(--white);
}

.language-switcher .lang-flag {
    font-size: 1.1rem;
}

.language-switcher .lang-code {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    min-width: 48px;
    min-height: 48px;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light) 0%, #E8E0D5 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 111, 71, 0.3);
    color: var(--white);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-decoration {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 2.5rem;
    background: var(--light);
    border-radius: 4px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

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

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

.product-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

.product-image {
    width: 100%;
    height: 350px;
    background: var(--light);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 24, 16, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

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

.product-info {
    padding: 2rem;
}

.product-category {
    font-size: 0.85rem;
    color: var(--secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.product-price {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Craftsmanship Section */
.craftsmanship {
    padding: 6rem 2rem;
    background: var(--primary);
    color: var(--white);
}

.craftsmanship-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.craftsmanship-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.craftsmanship-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

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

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

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.craftsmanship-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: var(--light);
}

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

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

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h3,
.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    border-radius: 2px;
    outline: none;
    transition: all 0.3s ease;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.cta-submit {
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cta-submit:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-links .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Single Page Styles */
.page-content {
    max-width: 1000px;
    margin: 120px auto 4rem;
    padding: 0 2rem;
}

.page-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.page-content .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-content .entry-content p {
    margin-bottom: 1.5rem;
}

.page-content .entry-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.page-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .craftsmanship-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image img {
        height: 400px;
    }

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

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

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

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

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WordPress Specific Styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Products View All Button */
.products-view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Product Link Styles */
.product-link {
    text-decoration: none;
    color: inherit;
}

.product-info a {
    text-decoration: none;
    color: inherit;
}

.product-info a:hover .product-name {
    color: var(--secondary);
}

/* Product Archive Styles */
.product-archive {
    margin-top: 80px;
    min-height: 100vh;
}

.archive-header {
    background: linear-gradient(135deg, var(--light) 0%, #E8E0D5 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.archive-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.archive-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-item {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid var(--light);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-item:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.filter-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.no-products p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid var(--light);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.pagination .current {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Single Product Styles */
.single-product {
    margin-top: 80px;
    padding-bottom: 4rem;
}

/* Breadcrumb */
.breadcrumb-container {
    background: linear-gradient(135deg, var(--light) 0%, #E8E0D5 100%);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(139, 111, 71, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumb a:hover {
    color: var(--secondary);
    background: var(--white);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 111, 71, 0.15);
}

.breadcrumb .separator {
    color: var(--text-light);
    font-size: 0.75rem;
    margin: 0 0.25rem;
    user-select: none;
}

.breadcrumb .current {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #3D2317 100%);
    box-shadow: 0 4px 12px rgba(90, 62, 41, 0.25);
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Product Detail */
.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery .main-image {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-info .product-category {
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price-large {
    font-size: 2rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.product-description-full {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-description-full p {
    margin-bottom: 1rem;
}

.product-description-full h2,
.product-description-full h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

.wa-icon {
    font-size: 1.2rem;
}

/* Product Features List */
.product-features {
    background: var(--light);
    padding: 2rem;
    border-radius: 4px;
}

.product-features h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

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

/* Related Products */
.related-products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-top: 1px solid var(--light);
}

.related-products .section-header {
    margin-bottom: 2rem;
}

.related-products .products-grid {
    margin-top: 2rem;
}

/* ============================================
   PREMIUM SINGLE PRODUCT STYLES
   ============================================ */

.single-product-premium {
    margin-top: 80px;
    background: var(--white);
}

/* Hero Section */
.product-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #3D2317 100%);
    position: relative;
}

.product-hero .breadcrumb-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-hero .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-hero .breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-hero .breadcrumb a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-hero .breadcrumb a:first-child::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'%3E%3C/path%3E%3Cpolyline points='9 22 9 12 15 12 15 22'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.product-hero .breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    font-weight: 300;
    margin: 0 0.25rem;
    user-select: none;
}

.product-hero .breadcrumb .current {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    box-shadow: 0 4px 15px rgba(180, 139, 87, 0.3);
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main Product Section */
.product-main-section {
    padding: 4rem 0;
    background: var(--white);
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Gallery Section */
.product-gallery-section {
    position: sticky;
    top: 100px;
}

.main-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.main-image-wrapper .main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover .main-image img {
    transform: scale(1.05);
}

.image-zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-wrapper:hover .image-zoom-hint {
    opacity: 1;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: var(--secondary);
}

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

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.lightbox-prev,
.lightbox-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

/* Product Info Section */
.product-info-section {
    padding: 1rem 0;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.product-price-box {
    background: linear-gradient(135deg, #f8f4f0 0%, #fff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.product-price-box .price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.product-price-box .price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.product-short-desc {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Feature Box */
.product-features-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* CTA Section */
.product-cta-section {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-order-wa {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-order-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-order-wa svg {
    width: 22px;
    height: 22px;
}

.btn-consult {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-consult:hover {
    background: var(--primary);
    color: var(--white);
}

/* Description Section */
.product-description-section {
    background: var(--light);
    padding: 5rem 0;
}

.description-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.description-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.header-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 0 auto;
    border-radius: 2px;
}

.description-content {
    background: var(--white);
    padding: 3rem 3.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.description-content p {
    margin-bottom: 2rem;
    line-height: 2;
    color: var(--text-dark);
    font-size: 1.1rem;
    text-align: justify;
}

.description-content p:last-child {
    margin-bottom: 0;
}

.description-content img,
.description-content .wp-block-image img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 3rem auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.description-content figure {
    margin: 3rem 0;
    text-align: center;
}

.description-content figure img {
    margin: 0 auto 1rem;
}

.description-content figcaption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.description-content h2,
.description-content h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    margin: 3rem 0 1.5rem;
    font-size: 1.8rem;
}

.description-content ul,
.description-content ol {
    margin: 1.5rem 0 2rem 2rem;
    line-height: 2;
}

.description-content li {
    margin-bottom: 0.8rem;
}

/* Trust Section */
.trust-section {
    background: var(--primary);
    padding: 3rem 0;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.trust-icon {
    font-size: 2.5rem;
}

.trust-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 3px;
}

.trust-text span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Related Products Section */
.related-products-section {
    padding: 5rem 0;
    background: var(--white);
}

.related-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.related-products-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-products-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.related-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-card:hover .related-overlay {
    opacity: 1;
}

.related-overlay span {
    color: var(--white);
    font-weight: 600;
    padding: 12px 25px;
    border: 2px solid var(--white);
    border-radius: 25px;
}

.related-info {
    padding: 1.5rem;
}

.related-category {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.related-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-info a {
    text-decoration: none;
}

.related-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 1200px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .product-gallery-section {
        position: static;
    }

    .product-main-title {
        font-size: 2.2rem;
    }
}

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

    .product-cta-section {
        flex-direction: column;
    }

    .trust-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .description-content {
        padding: 2rem;
    }

    .product-main-title {
        font-size: 1.8rem;
    }

    .product-price-box .price-value {
        font-size: 1.5rem;
    }

    /* Breadcrumb Mobile Styles */
    .breadcrumb-container,
    .product-hero .breadcrumb-container {
        padding: 0.75rem 1rem;
    }

    .breadcrumb,
    .product-hero .breadcrumb {
        gap: 0.35rem;
    }

    .breadcrumb a,
    .product-hero .breadcrumb a {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }

    .product-hero .breadcrumb a:first-child::before {
        width: 14px;
        height: 14px;
    }

    .breadcrumb .separator,
    .product-hero .breadcrumb .separator {
        font-size: 0.65rem;
        margin: 0 0.15rem;
    }

    .breadcrumb .current,
    .product-hero .breadcrumb .current {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
        max-width: 150px;
    }
}