/*
Theme Name: Golden Bee
Theme URI: https://goldenbeeltd.vn
Description: Golden Bee
Author: golden bee
Author URI: https://goldenbeeltd.vn
Version: 1.0.3
Template: genesis
Text Domain: goldenbee
/* ============================================
   Alpine.js - Hide elements until initialized
   ============================================ */
[x-cloak] {
    display: none !important;
}

.prose ul.pl-0 {
    padding-left: 0;
}

/* ============================================
   FAQ Accordion Styles
   ============================================ */
.schema-faq {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 0;
}

.schema-faq-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.schema-faq-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #1882ec;
}

.schema-faq-section.active {
    border-color: #1882ec;
    box-shadow: 0 4px 16px rgba(251, 192, 45, 0.15);
}

.schema-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A1A1B;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    text-align: left;
    position: relative;
}

.schema-faq-question::after {
    content: '+';
    font-size: 1.75rem;
    font-weight: 300;
    color: #1882ec;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}

.schema-faq-section.active .schema-faq-question::after {
    transform: rotate(45deg);
}

.schema-faq-section:hover .schema-faq-question {
    color: #1882ec;
}

.schema-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    padding: 0 1.5rem;
    color: #4B5563;
    line-height: 1.75;
    font-size: 1rem;
}

.schema-faq-section.active .schema-faq-answer {
    max-height: 2000px;
    opacity: 1;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.schema-faq-answer strong {
    color: #1A1A1B;
    font-weight: 600;
}

.schema-faq-answer br {
    display: block;
    content: "";
    margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .schema-faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .schema-faq-answer {
        font-size: 0.9375rem;
    }

    .schema-faq-section.active .schema-faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

/* ============================================
   Desktop Menu Styles
   ============================================ */
.desktop-menu>li {
    position: relative;
}

.desktop-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #1A1A1B;
    /* Black text for navigation */
    transition: color 0.2s;
}

.desktop-menu a:hover {
    color: #1882ec;
    /* Gold on hover */
}

.desktop-menu>li.current-menu-item>a {
    color: #1882ec;
    /* Gold for active item */
}

/* Submenu styling */
.desktop-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 50;
    margin-top: 0.5rem;
}

.desktop-menu>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-menu .sub-menu li {
    display: block;
    position: relative;
}

.desktop-menu .sub-menu a {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #1A1A1B;
}

.desktop-menu .sub-menu a:hover {
    background: rgba(251, 192, 45, 0.1);
    /* Light gold background */
    color: #1882ec;
}

.desktop-menu .sub-menu li.current-menu-item>a {
    background: rgba(251, 192, 45, 0.15);
    color: #1882ec;
}

/* Nested submenu (level 3+) */
.desktop-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.5rem;
}

.desktop-menu .sub-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown indicator */
.desktop-menu .menu-item-has-children>a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-menu .menu-item-has-children>a::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    flex-shrink: 0;
}

.desktop-menu .sub-menu .menu-item-has-children>a::after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid currentColor;
    border-right: none;
}

/* ============================================
   Post Password Form Styles (Tailwind Style)
   ============================================ */
.post-password-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* ============================================
   Rich content typography
   ============================================ */
.entry-content,
.product-description-content,
.product-description-panel,
.woocommerce-Tabs-panel {
    color: #1a1a1b;
    font-size: 1rem;
    line-height: 1.85;
}

.entry-content p,
.product-description-content p,
.entry-content ul,
.entry-content ol,
.product-description-content ul,
.product-description-content ol {
    margin: 1.4rem 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.product-description-content h1,
.product-description-content h2,
.product-description-content h3,
.product-description-content h4,
.product-description-content h5,
.product-description-content h6 {
    color: #0f172a;
    margin: 2rem 0 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.entry-content h1,
.product-description-content h1 {
    font-size: clamp(2rem, 2.2vw, 2.75rem);
}

.entry-content h2,
.product-description-content h2 {
    font-size: clamp(1.75rem, 2vw, 2.25rem);
}

.entry-content h3,
.product-description-content h3 {
    font-size: clamp(1.5rem, 1.8vw, 1.85rem);
}

.entry-content h4,
.product-description-content h4 {
    font-size: 1.25rem;
}

.entry-content h5,
.product-description-content h5,
.entry-content h6,
.product-description-content h6 {
    font-size: 1.125rem;
}

.entry-content strong,
.entry-content b,
.product-description-content strong,
.product-description-content b {
    color: #111827;
    font-weight: 700;
}

.entry-content em,
.product-description-content em {
    font-style: italic;
}

.entry-content blockquote,
.product-description-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    border-left: 4px solid #38bdf8;
    background: #f8fbff;
    color: #0f172a;
    font-size: 1.05rem;
    line-height: 1.9;
}

.entry-content figure,
.product-description-content figure {
    margin: 2rem 0;
}

.entry-content figure img,
.product-description-content figure img,
.entry-content img,
.product-description-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.25rem auto;
    border-radius: 0.75rem;
}

.entry-content figcaption,
.product-description-content figcaption {
    margin-top: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    text-align: center;
}

.entry-content table,
.product-description-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.entry-content th,
.entry-content td,
.product-description-content th,
.product-description-content td {
    padding: 1rem 1.25rem;
    border: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: top;
}

.entry-content th,
.product-description-content th {
    background: #f8fafc;
    color: #0f172a;
    font-weight: 700;
}

.entry-content ul,
.entry-content ol,
.product-description-content ul,
.product-description-content ol {
    padding-left: 1.5rem;
}

.entry-content li,
.product-description-content li {
    margin: 0.65rem 0;
}

.entry-content ul li::marker,
.product-description-content ul li::marker {
    color: #0ea5e9;
}

.entry-content a,
.product-description-content a {
    color: #0ea5e9;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.entry-content a:hover,
.product-description-content a:hover {
    color: #0284c7;
}

.entry-content pre,
.product-description-content pre {
    overflow-x: auto;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background: #0f172a;
    color: #f8fafc;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 1.75rem 0;
}

.entry-content code,
.product-description-content code {
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    padding: 0.2rem 0.45rem;
    border-radius: 0.5rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

.entry-content hr,
.product-description-content hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .entry-content,
    .product-description-content {
        font-size: 0.98rem;
        line-height: 1.8;
    }

    .entry-content h1,
    .product-description-content h1 {
        font-size: 1.9rem;
    }

    .entry-content h2,
    .product-description-content h2 {
        font-size: 1.6rem;
    }
}

.post-password-form:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #1882ec;
}

.post-password-form p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
    color: #4B5563;
}

.post-password-form p:first-of-type {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.post-password-form label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #1A1A1B;
    margin-bottom: 1rem;
    width: 100%;
}

.post-password-form label for {
    font-weight: 500;
    color: #1A1A1B;
}

.post-password-form input[type="password"] {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #1A1A1B;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.post-password-form input[type="password"]:focus {
    outline: none;
    border-color: #1882ec;
    box-shadow: 0 0 0 3px rgba(251, 192, 45, 0.1);
}

.post-password-form input[type="password"]:hover {
    border-color: #9ca3af;
}

.post-password-form input[type="submit"] {
    padding: 0.75rem 1.5rem;
    margin-left: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: #1882ec;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(251, 192, 45, 0.25);
    min-width: 120px;
    text-align: center;
}

.post-password-form input[type="submit"]:hover {
    background: #e8af29;
    box-shadow: 0 4px 8px rgba(251, 192, 45, 0.35);
    transform: translateY(-1px);
}

.post-password-form input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(251, 192, 45, 0.25);
}

.post-password-form input[type="submit"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(251, 192, 45, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-password-form {
        max-width: 100%;
        margin: 1.5rem auto;
        padding: 1.5rem 1rem;
    }

    .post-password-form label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .post-password-form input[type="password"] {
        width: 100%;
    }

    .post-password-form input[type="submit"] {
        width: 100%;
        margin-left: 0;
        margin-top: 0.75rem;
    }
}

.w-full.h-full.object-cover{
    height: 100%;
}
/* Smooth image transitions */
.tour-main-image,
#lightboxImage {
    transition: opacity 0.15s ease-in-out;
}

/* Hide scrollbar for thumbnail strip */
#lightboxThumbs::-webkit-scrollbar {
    display: none;
}

#lightboxThumbs {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Gallery button hover effects */
.gallery-nav-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.gallery-prev:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* ============================================
   Article Content Styles for Pages & Posts
   ============================================ */

/* Apply to article content areas */
.entry-content,
article .prose,
.page-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.0625rem; /* 17px */
    line-height: 1.875; /* 30px = 1.875 * 16px base */
    color: #374151;
}

/* Headings */
.entry-content h2,
article .prose h2,
.page-content h2 {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    color: #1A1A1B;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.75rem;
}

/* H2 decorative underline */
.entry-content h2::after,
article .prose h2::after,
.page-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2563EB 0%, #60A5FA 100%);
    border-radius: 2px;
}

.entry-content h3,
article .prose h3,
.page-content h3 {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: #1A1A1B;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.entry-content h4,
article .prose h4,
.page-content h4 {
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: #1A1A1B;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Paragraphs */
.entry-content p,
article .prose p,
.page-content p {
    margin-bottom: 1.75rem;
    line-height: 1.875;
}

/* First paragraph - slightly larger */
.entry-content > p:first-of-type,
article .prose > p:first-of-type,
.page-content > p:first-of-type {
    font-size: 1.125rem;
    color: #1F2937;
}

/* Links */
.entry-content a,
article .prose a,
.page-content a {
    color: #2563EB;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(37, 99, 235, 0.3);
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.entry-content a:hover,
article .prose a:hover,
.page-content a:hover {
    color: #1D4ED8;
    text-decoration-color: #2563EB;
    background-color: rgba(37, 99, 235, 0.05);
}

/* Lists */
.entry-content ul,
article .prose ul,
.page-content ul,
.entry-content ol,
article .prose ol,
.page-content ol {
    margin-bottom: 1.75rem;
    padding-left: 2rem;
}

.entry-content li,
article .prose li,
.page-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.entry-content ul li,
article .prose ul li,
.page-content ul li {
    position: relative;
}

.entry-content ul li::marker,
article .prose ul li::marker,
.page-content ul li::marker {
    color: #2563EB;
}

/* Blockquote */
.entry-content blockquote,
article .prose blockquote,
.page-content blockquote {
    border-left: 4px solid #2563EB;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4B5563;
    background-color: rgba(37, 99, 235, 0.03);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.entry-content blockquote p,
article .prose blockquote p,
.page-content blockquote p {
    margin-bottom: 0.5rem;
}

.entry-content blockquote p:last-child,
article .prose blockquote p:last-child,
.page-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Images */
.entry-content img,
article .prose img,
.page-content img {
    border-radius: 1rem;
    margin: 2.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Code blocks */
.entry-content code,
article .prose code,
.page-content code {
    background-color: #F3F4F6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.9em;
    font-family: 'Courier New', Courier, monospace;
    color: #1F2937;
}

.entry-content pre,
article .prose pre,
.page-content pre {
    background-color: #1F2937;
    color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 2rem 0;
    line-height: 1.6;
}

.entry-content pre code,
article .prose pre code,
.page-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

/* Tables */
.entry-content table,
article .prose table,
.page-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.entry-content th,
article .prose th,
.page-content th {
    background-color: #F9FAFB;
    padding: 0.875rem;
    text-align: left;
    font-weight: 600;
    color: #1F2937;
    border-bottom: 2px solid #E5E7EB;
}

.entry-content td,
article .prose td,
.page-content td {
    padding: 0.875rem;
    border-bottom: 1px solid #E5E7EB;
    color: #4B5563;
}

.entry-content tr:last-child td,
article .prose tr:last-child td,
.page-content tr:last-child td {
    border-bottom: none;
}

.entry-content tr:hover,
article .prose tr:hover,
.page-content tr:hover {
    background-color: rgba(37, 99, 235, 0.02);
}

/* Strong/Bold */
.entry-content strong,
article .prose strong,
.page-content strong,
.entry-content b,
article .prose b,
.page-content b {
    font-weight: 600;
    color: #1F2937;
}

/* Emphasis/Italic */
.entry-content em,
article .prose em,
.page-content em,
.entry-content i,
article .prose i,
.page-content i {
    font-style: italic;
}

/* Horizontal rule */
.entry-content hr,
article .prose hr,
.page-content hr {
    margin: 3rem 0;
    border: none;
    border-top: 2px solid #E5E7EB;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .entry-content,
    article .prose,
    .page-content {
        font-size: 1rem; /* 16px */
        line-height: 1.8;
    }

    .entry-content h2,
    article .prose h2,
    .page-content h2 {
        font-size: 1.5rem; /* 24px */
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .entry-content h3,
    article .prose h3,
    .page-content h3 {
        font-size: 1.25rem; /* 20px */
        margin-top: 1.75rem;
        margin-bottom: 0.875rem;
    }

    .entry-content h4,
    article .prose h4,
    .page-content h4 {
        font-size: 1.125rem; /* 18px */
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
}

.woocommerce-privacy-policy-text {
    padding: 0px 30px;
    font-size: 12px;
    color: red;
}