/*
Theme Name: Techro 
Theme URI: https://techro.co.il
Author: Techro
Author URI: https://techro.co.il
Description: A custom WordPress theme for RedOrca Coffee - Academy and Coffee Distribution.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: redorca-theme
Tags: custom, responsive, bootstrap, coffee, academy, multilingual
*/

/* ============================================
   Theme Colors - Red Orca Coffee
   ============================================ */
:root {
    --redorca-primary: #dc3545;
    --redorca-primary-dark: #c82333;
    --redorca-secondary: #6c757d;
    --redorca-light: #f8f9fa;
    --redorca-dark: #212529;
}

/* ============================================
   Custom Logo Styles
   ============================================ */
.navbar-brand img.custom-logo {
    max-height: 50px;
    width: auto;
    height: auto;
}

@media (max-width: 991.98px) {
    .navbar-brand img.custom-logo {
        max-height: 40px;
    }
}

/* ============================================
   Navigation Menu - Desktop
   ============================================ */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .navbar-nav .nav-item {
        display: flex;
        align-items: center;
    }
    
    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.textbg {
    width: 100%;
    background-size: contain;
    min-height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-main-image {
    max-height: 350px;
    width: auto;
}

.coffeeimage {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 300px;
}
.titletag 
{
    width: max-content;
    max-width: 100%;
    background-color: rgba(244, 231, 211, 1);
    border-radius: 10px;
    margin: 0 auto;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.imgc 
{
    max-width: 100%;
    height: auto;
}
/* ============================================
   Cards & Course/Workshop Items
   ============================================ */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Featured Courses Section - Horizontal Design */
.course-card-horizontal {
    border-radius: 12px;
    overflow: visible;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    min-height: 400px;
}

.course-card-horizontal:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); */
}

/* Content Section (Left) - Gray Background */
.course-content-left {

    display: flex;
    align-items: stretch;
}

.course-content-wrapper {
    padding: 1rem 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Image Section (Right) */
.course-image-right {
    display: flex;
    align-items: stretch;
    overflow: visible;
}

/* Ensure row and columns allow overflow */
.featured-courses .row.g-4 {
    overflow: visible;
}

.featured-courses .col-12 {
    overflow: visible;
    margin-bottom: 2rem;
}

/* Course Image Shaped Layout - Single vertical image */
.course-image-shaped {
    width: 100%;
    max-width: 100%;
    min-height: 530px;
    padding: 15px;
    padding-bottom: 25px;
    position: relative;
    overflow: visible;
    margin: 0 auto;

}

.shaped-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    position: relative;
}

.course-shaped-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card-horizontal:hover .course-shaped-image {
    transform: scale(1.05);
}

/* Floating Badge - Overflows from image */
.course-floating-badge {
    position: absolute;
    bottom: 0;
    left: -10px;
    z-index: 10;
}

.floating-badge-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2c2c2c;
    padding: 10px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    min-width: 150px;
}

.floating-badge-card .badge-icon {
    flex-shrink: 0;
}

.floating-badge-card .badge-icon svg {
    width: 14px;
    height: 14px;
}

.floating-badge-card .badge-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.floating-badge-card .badge-title {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
}

.floating-badge-card .badge-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
}

.floating-badge-card .badge-dots {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-right: auto;
}

.floating-badge-card .badge-dots span {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Course Plus Icon */
.course-plus-icon {
    position: absolute;
    bottom: 35px;
    right: 25px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.course-plus-icon:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.course-cover-placeholder-horizontal {
    width: 100%;
    min-height: 400px;
}

/* Legacy overlay badges - keeping for backwards compatibility */
.course-overlay-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.overlay-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.overlay-badge svg {
    flex-shrink: 0;
}

.badge-track {
    background-color: #C10230;
}

.badge-level {
    background-color: #2c2c2c;
}

.overlay-plus-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-top: 4px;
    margin-right: auto;
    margin-left: auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.overlay-plus-icon:hover {
    background-color: #fff;
}

/* Learning Outcomes Section */
.learning-outcomes-section {
    margin-top: 1rem;
}

.learning-outcomes-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
}

.course-module-title {
    font-size:2em;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.course-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Meta Badges */
.course-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-badge {
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #000;
    font-weight: 500;
}

/* Syllabus List */
.course-syllabus-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: right;
}

.course-syllabus-list li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: #333;
    line-height: 1;
    text-align: right;
}

.course-syllabus-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: #C10230;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Action Buttons */
.course-action-buttons {
    margin-top: auto;
}

.btn-course-explore {
    background-color: #C10230;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-course-explore:hover {
    background-color: #a00226;
    color: #fff;
}

.btn-course-contact {
    background-color: #C79A3C;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn-course-contact:hover {
    background-color: #C79A3C;
    color: #000;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .course-card-horizontal .row {
        flex-direction: column-reverse;
    }
    
    .course-image-shaped {
        width: 60%;
        max-width: 240px;
        min-height: 320px;
        padding: 12px;
    }
    
    .shaped-image-wrapper,
    .course-shaped-image {
        min-height: 300px;
    }
    
    .course-cover-placeholder-horizontal {
        min-height: 320px;
    }
    
    .course-content-wrapper {
        padding: 1.5rem;
    }
    
    .course-floating-badge {
        bottom: 0;
        left: -5px;
    }
    
    .floating-badge-card {
        padding: 8px 10px;
        min-width: 130px;
    }
    
    .floating-badge-card .badge-title {
        font-size: 0.7rem;
    }
    
    .floating-badge-card .badge-subtitle {
        font-size: 0.6rem;
    }
    
    .course-overlay-badges {
        top: 10px;
        right: 10px;
    }
    
    .overlay-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

@media (max-width: 768px) {
    .course-action-buttons {
        flex-direction: column;
    }
    
    .course-action-buttons .btn {
        width: 100%;
    }
    
    .course-image-shaped {
        width: 70%;
        max-width: 200px;
        min-height: 280px;
        padding: 10px;
    }
    
    .shaped-image-wrapper,
    .course-shaped-image {
        min-height: 260px;
    }
    
    .course-cover-placeholder-horizontal {
        min-height: 280px;
    }
    
    .course-floating-badge {
        bottom: 5px;
        left: 0;
    }
    
    .floating-badge-card {
        padding: 6px 8px;
        min-width: 110px;
    }
    
    .course-plus-icon {
        bottom: 25px;
        right: 20px;
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    background-color: #C10230;
    color: white;
    border-radius: 5px;
    width: max-content;
    max-width: 100%;
    padding: 5px 10px;
    border: none;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #a00226;
    color: white;
}

.btn-primary:active {
    background-color: #8a001f;
    color: white;
}

.btn-danger {
    background-color: var(--redorca-primary);
    border-color: var(--redorca-primary);
}

.btn-danger:hover {
    background-color: var(--redorca-primary-dark);
    border-color: var(--redorca-primary-dark);
}

.btn-outline-danger {
    color: var(--redorca-primary);
    border-color: var(--redorca-primary);
}

.btn-outline-danger:hover {
    background-color: var(--redorca-primary);
    border-color: var(--redorca-primary);
    color: #fff;
}

/* ============================================
   RTL Support
   ============================================ */
[dir="rtl"] .navbar-nav {
    flex-direction: row!important;
}

[dir="rtl"] .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .me-auto {
    margin-right: 0 !important;
    margin-left: auto !important;
}

[dir="rtl"] .text-md-end {
    text-align: left !important;
}

[dir="rtl"] .text-start {
    text-align: right !important;
}

[dir="rtl"] .text-end {
    text-align: left !important;
}
[dir="rtl"] .navbar-nav li a 
{
    color:#000;
    text-decoration: none;
}

/* RTL Support for Course Cards */
[dir="rtl"] .course-overlay-badges {
    right: auto;
    left: 15px;
}

[dir="rtl"] .course-floating-badge {
    left: auto;
    right: -15px;
}

[dir="rtl"] .floating-badge-card .badge-dots {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] .course-plus-icon {
    right: auto;
    left: 40px;
}

/* Bullets always on the right for RTL */
.course-syllabus-list {
    direction: rtl;
    text-align: right;
}

.course-syllabus-list li {
    text-align: right;
}

[dir="ltr"] .course-syllabus-list {
    direction: ltr;
    text-align: left;
}

[dir="ltr"] .course-syllabus-list li {
    padding-right: 0;
    padding-left: 1.5rem;
    text-align: left;
}

[dir="ltr"] .course-syllabus-list li::before {
    right: auto;
    left: 0;
}

[dir="rtl"] .course-card-horizontal .row {
    flex-direction: row-reverse;
}

@media (max-width: 991.98px) {
    [dir="rtl"] .course-card-horizontal .row {
        flex-direction: column-reverse;
    }
}

/* ============================================
   Footer - Modern Design
   ============================================ */
.footer-modern {
    background-color: rgba(23, 23, 26, 1) !important;
    color: #fff;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: #fff;
}

.footer-social-link {
    position: relative;
}

.footer-social-link .external-icon {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover .external-icon {
    opacity: 1;
}

/* Footer Branding Section */
.footer-branding {
    text-align: right;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-wrapper img {
    max-height: 50px;
    width: auto;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-slogan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.btn-footer-cta {
    background-color: #C10230;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn-footer-cta:hover {
    background-color: #a00226;
    color: #fff;
}

.btn-footer-cta svg {
    flex-shrink: 0;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-legal-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-icons .social-icon {
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-social-icons .social-icon:hover {
    background: #C10230;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social-icons .social-icon svg {
    width: 18px;
    height: 18px;
}

/* RTL Footer Adjustments */
[dir="rtl"] .footer-legal-links {
    justify-content: flex-start;
}

[dir="rtl"] .footer-bottom-bar .text-md-start {
    text-align: right;
}

[dir="rtl"] .footer-bottom-bar .text-md-end {
    text-align: left;
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-modern .row > div {
        margin-bottom: 2rem;
    }
    
    .footer-branding {
        text-align: center;
    }
    
    .footer-logo-wrapper {
        justify-content: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-bottom-bar .text-md-start,
    .footer-bottom-bar .text-md-end {
        text-align: center !important;
    }
}

@media (max-width: 767.98px) {
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-legal-separator {
        display: none;
    }
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-redorca {
    color: var(--redorca-primary) !important;
}

.bg-redorca {
    background-color: var(--redorca-primary) !important;
}

/* ============================================
   Featured Workshops Section
   ============================================ */
.featured-workshops-section {
    padding: 3rem 0;
}

.featured-workshops-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.featured-workshops-section .row > article {
    display: flex;
    flex-direction: column;
}

.workshop-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.workshop-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.workshop-image-wrapper {
    width: 100%;
    height: 200px;
    min-height: 200px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    flex-shrink: 0;
}

.workshop-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-card-modern:hover .workshop-cover-image {
    transform: scale(1.05);
}

.workshop-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.workshop-content-wrapper {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.workshop-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.workshop-subtitle {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    min-height: 0;
}

.workshop-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
    text-align: right;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background-color: rgba(193, 2, 48, 0.08);
    border: 1px solid rgba(193, 2, 48, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #C10230;
    transition: all 0.3s ease;
}

.meta-badge:hover {
    background-color: rgba(193, 2, 48, 0.12);
    border-color: rgba(193, 2, 48, 0.25);
    transform: translateY(-1px);
}

.meta-badge .meta-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.meta-level {
    background-color: rgba(44, 44, 44, 0.08);
    border-color: rgba(44, 44, 44, 0.15);
    color: #2c2c2c;
}

.meta-level:hover {
    background-color: rgba(44, 44, 44, 0.12);
    border-color: rgba(44, 44, 44, 0.25);
}

.meta-duration {
    background-color: rgba(0, 123, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.15);
    color: #007bff;
}

.meta-duration:hover {
    background-color: rgba(0, 123, 255, 0.12);
    border-color: rgba(0, 123, 255, 0.25);
}

.meta-format {
    background-color: rgba(40, 167, 69, 0.08);
    border-color: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.meta-format:hover {
    background-color: rgba(40, 167, 69, 0.12);
    border-color: rgba(40, 167, 69, 0.25);
}

.meta-languages {
    background-color: rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
    color: #856404;
}

.meta-languages:hover {
    background-color: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.4);
}

.btn-workshop-details {
    background-color: #C10230;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: auto;
    width: 100%;
}

.btn-workshop-details:hover {
    background-color: #a00226;
    color: #fff;
}

@media (max-width: 991.98px) {
    .workshop-image-wrapper {
        height: 180px;
    }
    
    .workshop-placeholder {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .workshop-image-wrapper {
        height: 160px;
    }
    
    .workshop-placeholder {
        height: 160px;
    }
    
    .workshop-content-wrapper {
        padding: 1.25rem;
    }
}

/* =============================================
   SINGLE PRODUCT PAGE STYLES
   ============================================= */

.single-product-page {
    background-color: #fff;
}

/* Hero Section */
.product-hero {
    height: 60vh;
    min-height: 400px;
    max-height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.product-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.product-hero .container {
    z-index: 2;
    padding-bottom: 2rem;
}

.product-breadcrumb {
    color: #fff;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumb a:hover {
    color: #fff;
}

.product-breadcrumb .separator {
    opacity: 0.5;
}

.product-breadcrumb .current {
    color: #fff;
    font-weight: 500;
}

/* Floating Info Card */
.product-info-card-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 3rem;
}

.product-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 1.5rem 2rem;
    max-width: 100%;
}

.product-info-card .product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-info-card .product-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-meta-row .meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #333;
}

.product-meta-row .meta-badge svg {
    color: #C10230;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-price .price-label {
    font-size: 0.9rem;
    color: #666;
}

.product-price .price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #C10230;
}

.btn-book-now {
    background: #C10230;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-book-now:hover {
    background: #a00226;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 2, 48, 0.3);
}

.expand-sections-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #C10230;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1.5rem;
    padding: 0;
    text-decoration: underline;
}

.expand-sections-btn:hover {
    color: #a00226;
}

/* What You'll Learn Section */
.what-youll-learn-section {
    padding: 4rem 0;
    background: #fff;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.learn-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 8px;
    border-right: 3px solid transparent;
    transition: all 0.2s ease;
}

.learn-item:hover {
    background: #f5f5f5;
    border-right-color: #C10230;
}

.learn-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-text {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

/* Course Content Section */
.course-content-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-header .section-title {
    margin-bottom: 0;
    flex-grow: 1;
}

.section-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.section-meta .separator {
    color: #ccc;
}

.expand-all-btn {
    background: none;
    border: 1px solid #C10230;
    color: #C10230;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.expand-all-btn:hover {
    background: #C10230;
    color: #fff;
}

/* Accordion */
.syllabus-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-grow: 1;
}

.module-indicator {
    width: 8px;
    height: 8px;
    background: #C10230;
    border-radius: 50%;
    flex-shrink: 0;
}

.module-label {
    font-weight: 600;
    color: #1a1a1a;
}

.module-name {
    color: #333;
}

.accordion-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.accordion-arrow {
    transition: transform 0.3s ease;
    color: #666;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.lessons-list {
    list-style: none;
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.lesson-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.lesson-item:last-child {
    border-bottom: none;
}

.lesson-title {
    flex-grow: 1;
    color: #444;
}

.lesson-duration {
    font-size: 0.85rem;
    color: #888;
}

/* Instructor Section */
.instructor-section {
    padding: 4rem 0;
    background: #fff;
}

.instructor-card {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    background: #fafafa;
    border-radius: 16px;
    padding: 2rem;
}

.instructor-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info {
    flex-grow: 1;
}

.instructor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
}

.instructor-title {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 1rem;
}

.instructor-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.instructor-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.instructor-bio {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Description Section */
.description-section {
    padding: 4rem 0;
    background: #fff;
}

.description-block {
    margin-bottom: 2rem;
}

.description-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.description-text {
    color: #444;
    line-height: 1.8;
}

.description-text p {
    margin-bottom: 1rem;
}

.practical-list,
.audience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.practical-list li,
.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #444;
}

.audience-list li svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-box {
    background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-right: 4px solid #C10230;
}

.prerequisites-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 12px;
}

.certificate-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #ffd700;
}

.certificate-badge .cert-label {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

.certificate-badge .cert-name {
    font-weight: 600;
    color: #1a1a1a;
}

/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-tag {
    display: inline-block;
    background: #C10230;
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Calendar Widget */
.calendar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.calendar-month {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.calendar-nav:hover {
    background: #eee;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.calendar-days-header span {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    padding: 0.5rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #999;
    cursor: default;
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day.today {
    background: #e8e8e8;
    color: #333;
    font-weight: 600;
}

.calendar-day.available {
    background: #fff0f3;
    color: #C10230;
    cursor: pointer;
    font-weight: 500;
}

.calendar-day.available:hover {
    background: #C10230;
    color: #fff;
}

.calendar-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.legend-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    background: #e8e8e8;
}

.legend-item .dot.available {
    background: #fff0f3;
    border: 1px solid #C10230;
}

/* Booking Summary */
.summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.summary-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.summary-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.detail-row .label {
    color: #666;
}

.detail-row .value {
    color: #333;
    font-weight: 500;
}

.summary-price {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.summary-price .price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #C10230;
}

.btn-book-now-full {
    width: 100%;
    background: #C10230;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-now-full:hover {
    background: #a00226;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 2, 48, 0.3);
}

.booking-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin: 1rem 0 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a0a0e 0%, #2d1015 100%);
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-tag {
    display: inline-block;
    background: rgba(193, 2, 48, 0.3);
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(193, 2, 48, 0.5);
}

.testimonials-section .section-title {
    color: #fff;
}

.text-white-50 {
    color: rgba(255,255,255,0.6) !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C10230 0%, #ff4d6d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author .author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.testimonial-author .author-title {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-content p {
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .product-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .product-info-card {
        padding: 1.75rem;
    }
    
    .product-info-card .product-title {
        font-size: 1.5rem;
    }
    
    .learn-grid {
        grid-template-columns: 1fr;
    }
    
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-image {
        margin: 0 auto;
    }
    
    .instructor-stats {
        justify-content: center;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
    }
    
    .summary-card {
        position: static;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .product-hero {
        height: 40vh;
        min-height: 280px;
    }
    
    .product-info-card-section {
        margin-top: -60px;
    }
    
    .product-info-card {
        padding: 1.25rem;
    }
    
    .product-info-card .product-title {
        font-size: 1.25rem;
    }
    
    .product-meta-row .meta-badge {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .card-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-price {
        justify-content: center;
    }
    
    .btn-book-now {
        text-align: center;
        justify-content: center;
    }
    
    .accordion-header {
        padding: 1rem;
        flex-wrap: wrap;
    }
    
    .accordion-title {
        width: 100%;
    }
    
    .accordion-meta {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .calendar-widget {
        padding: 1rem;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
}

/* =============================================
   SINGLE PRODUCT - NEW SECTIONS STYLES
   ============================================= */

/* Product Code Badge */
.product-code {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-family: monospace;
}

/* Official Curriculum Badge */
.official-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    border: 1px solid #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #856404;
    margin-bottom: 1.5rem;
}

/* Main Content Area */
.product-main-content {
    padding: 3rem 0;
    background: #fff;
}

/* Content Sections */
.content-section {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.content-section .section-icon {
    width: 48px;
    height: 48px;
    background: #fff0f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.content-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.content-section .section-content {
    color: #444;
    line-height: 1.8;
}

.content-section .section-content p {
    margin-bottom: 1rem;
}

/* Learn Grid */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.learn-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.learn-item:hover {
    background: #f5f5f5;
    transform: translateX(-3px);
}

.learn-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learn-text {
    margin: 0;
    color: #333;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Practical List */
.practical-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.practical-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    color: #444;
    font-size: 0.95rem;
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0fff4 0%, #fff 100%);
    border: 1px solid #d4edda;
    border-radius: 10px;
    color: #333;
}

.audience-item svg {
    flex-shrink: 0;
}

/* Included List */
.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: #444;
}

.included-list li:last-child {
    border-bottom: none;
}

/* Accordion Wrapper */
.accordion-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: right;
}

.accordion-toggle-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-arrow {
    transition: transform 0.3s ease;
    color: #666;
}

.accordion-wrapper.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-wrapper.active .accordion-panel {
    max-height: 2000px;
}

.description-content,
.prerequisites-content {
    padding-top: 1.5rem;
    color: #444;
    line-height: 1.8;
}

/* Sidebar - Sticky positioning fix */
.product-main-content .row {
    align-items: flex-start;
}

.product-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 10;
    height: fit-content;
}

.sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

/* Certificate Card */
.certificate-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
    border: 1px solid #ffd700;
    text-align: center;
}

.certificate-icon {
    margin-bottom: 1rem;
}

.certificate-card h3 {
    border: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.certificate-name {
    font-weight: 600;
    color: #1a1a1a;
    margin: 0.5rem 0;
}

.certificate-type {
    display: inline-block;
    background: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}

/* Booking Card */
.booking-card {
    border: 2px solid #C10230;
}

.booking-details {
    margin-bottom: 1rem;
}

.booking-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed #eee;
}

.booking-details .detail-row:last-child {
    border-bottom: none;
}

.booking-details .label {
    color: #666;
}

.booking-details .value {
    color: #333;
    font-weight: 500;
}

.booking-price {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    margin-bottom: 1rem;
}

.booking-price .price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #C10230;
}

.btn-book-now-full {
    width: 100%;
    background: #C10230;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-now-full:hover {
    background: #a00226;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 2, 48, 0.3);
}

.booking-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin: 1rem 0 0;
}

/* Quick Info Card */
.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #444;
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.quick-info-list li strong {
    color: #1a1a1a;
    margin-left: 0.5rem;
}

.quick-info-list li.prerequisites-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.quick-info-list li.prerequisites-item strong {
    margin-left: 0;
}

.quick-info-list li.prerequisites-item span {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive for new sections */
@media (max-width: 991.98px) {
    .product-main-content .row {
        align-items: stretch;
    }
    
    .product-sidebar {
        position: static !important;
        margin-top: 2rem;
    }
    
    .learn-grid,
    .practical-list,
    .audience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .content-section {
        padding: 1.25rem;
    }
    
    .content-section .section-title {
        font-size: 1.25rem;
    }
    
    .sidebar-card {
        padding: 1.25rem;
    }
    
    .booking-price .price-amount {
        font-size: 1.75rem;
    }
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

/* About Hero Section */
.about-hero-section {
    position: relative;
    overflow: hidden;
}

.about-hero-description {
    font-size: 1rem;
    line-height: 1.8;
}

.about-hero-description p {
    margin-bottom: 1rem;
}

.about-hero-description p strong {
    color: #fff;
}

.about-hero-image-wrapper {
    position: relative;
}

.hero-arrow-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(193, 2, 48, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-arrow-btn:hover {
    background: #C10230;
    transform: scale(1.1);
}

.about-hero-img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* About Main Section */
.about-main-section {
    background: #fff;
}

.about-main-title {
    color: #1a1a1a;
    line-height: 1.3;
}

.about-main-subtitle {
    font-weight: 400;
}

.about-main-description {
    font-size: 1rem;
    line-height: 1.8;
}

/* About Stats */
.about-stats-row {
    border-top: 1px solid #eee;
    padding-top: 3rem;
}

.about-stat-item {
    padding: 1.5rem;
}

.about-stat-item .stat-number {
    color: #1a1a1a;
    font-size: 3rem;
    line-height: 1.2;
}

.about-stat-item .stat-label {
    color: #1a1a1a;
    margin-top: 0.5rem;
}

.about-stat-item .stat-description {
    margin-top: 0.5rem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
}

/* About Services Section */
.about-services-section {
    background: #f9f9fb;
}

.about-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    color: #1a1a1a;
}

.service-description {
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #a00226;
}

/* About Team Section */
.about-team-section {
    background: #fff;
}

.team-member-card {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.team-member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-photo-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #C10230 0%, #ff4d6d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-member-name {
    color: #1a1a1a;
}

.team-member-position {
    font-size: 0.85rem;
}

/* About CTA Section */
.about-cta-section {
    background: #fff;
    padding-bottom: 4rem;
}

.about-cta-wrapper {
    min-height: 280px;
}

.cta-image-wrapper {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.cta-image {
    max-height: 320px;
    width: auto;
    object-fit: contain;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
}

.cta-decoration-1 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    top: 20px;
    right: 40px;
}

.cta-decoration-2 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -30px;
    right: 100px;
}

/* About Page Responsive */
@media (max-width: 991.98px) {
    .about-hero-section .row {
        flex-direction: column-reverse;
    }
    
    .about-hero-section .col-lg-5 {
        text-align: center;
        margin-top: 2rem;
    }
    
    .about-hero-img {
        max-height: 350px;
    }
    
    .about-stat-item .stat-number {
        font-size: 2.5rem;
    }
    
    .team-member-photo,
    .team-member-photo-placeholder {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section h1 {
        font-size: 2rem;
    }
    
    .about-stat-item .stat-number {
        font-size: 2rem;
    }
    
    .about-cta-wrapper .row {
        text-align: center;
    }
    
    .cta-image-wrapper {
        margin-top: 2rem;
    }
    
    .cta-image {
        max-height: 200px;
    }
}

@media (max-width: 575.98px) {
    .hero-arrow-btn {
        width: 40px;
        height: 40px;
        top: 10px;
        left: 10px;
    }
    
    .team-member-photo,
    .team-member-photo-placeholder {
        width: 80px;
        height: 80px;
    }
    
    .team-member-photo-placeholder {
        font-size: 1.5rem;
    }
}

/* =============================================
   COFFEE DISTRIBUTION PAGE STYLES
   ============================================= */

/* Hero Section */
.distribution-hero-section {
    position: relative;
    overflow: hidden;
}

.distribution-hero-tag {
    background: rgba(193, 2, 48, 0.3);
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    border: 1px solid rgba(193, 2, 48, 0.5);
}

.distribution-hero-img {
    max-height: 450px;
    object-fit: cover;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.distribution-hero-section .hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(193, 2, 48, 0.2);
}

.distribution-hero-section .hero-decoration-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.distribution-hero-section .hero-decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: 10%;
}

/* Products Section */
.distribution-products-section {
    background: #fff;
}

/* Coffee Bean Cards */
.coffee-bean-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.coffee-bean-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.coffee-bean-card.featured {
    border: 2px solid #C10230;
}

.coffee-bean-card .featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #C10230;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.bean-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0eb 0%, #ebe5df 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bean-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coffee-bean-card:hover .bean-image {
    transform: scale(1.05);
}

.bean-image-placeholder {
    color: #C10230;
    opacity: 0.3;
}

.bean-content {
    padding: 1.5rem;
}

.bean-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.bean-origin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.bean-origin svg {
    flex-shrink: 0;
}

.bean-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bean-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bean-meta .meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #555;
    font-weight: 500;
}

.bean-meta .meta-roast {
    background: rgba(139, 69, 19, 0.1);
    color: #8B4513;
}

.bean-meta .meta-altitude {
    background: rgba(0, 128, 0, 0.1);
    color: #228B22;
}

.bean-meta .meta-processing {
    background: rgba(70, 130, 180, 0.1);
    color: #4682B4;
}

.bean-flavor-notes,
.bean-packages {
    font-size: 0.85rem;
    color: #666;
}

.bean-flavor-notes strong,
.bean-packages strong {
    color: #333;
    margin-left: 0.25rem;
}

.btn-bean-inquiry {
    background: transparent;
    border: 2px solid #C10230;
    color: #C10230;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.btn-bean-inquiry:hover {
    background: #C10230;
    color: #fff;
}

/* Why Choose Us Section */
.distribution-why-section {
    background: #f9f9fb;
}

.why-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.why-point-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.why-point-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(193, 2, 48, 0.2);
}

.point-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #C10230;
    line-height: 1;
    flex-shrink: 0;
}

.point-content {
    flex: 1;
}

.point-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem;
}

.point-description {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Contact Section */
.distribution-contact-section {
    background: #fff;
}

.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.contact-info-panel {
    background: linear-gradient(135deg, #1a0a0e 0%, #2d1015 100%);
    padding: 2.5rem;
    height: 100%;
    color: #fff;
}

.contact-tag {
    display: inline-block;
    background: rgba(193, 2, 48, 0.3);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-detail-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: #fff;
}

.contact-detail-item svg {
    flex-shrink: 0;
}

.contact-form-panel {
    padding: 2.5rem;
    background: #fff;
}

.wholesale-inquiry-form .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.wholesale-inquiry-form .form-control,
.wholesale-inquiry-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.wholesale-inquiry-form .form-control:focus,
.wholesale-inquiry-form .form-select:focus {
    border-color: #C10230;
    box-shadow: 0 0 0 3px rgba(193, 2, 48, 0.1);
    outline: none;
}

/* Coffee Beans Checkbox Group */
.beans-checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    max-height: 200px;
    overflow-y: auto;
}

.bean-checkbox {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    transition: all 0.2s ease;
    margin: 0;
}

.bean-checkbox:hover {
    border-color: #C10230;
    background: #fff5f7;
}

.bean-checkbox .form-check-input {
    margin-top: 0;
    margin-left: 0.5rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.bean-checkbox .form-check-input:checked {
    background-color: #C10230;
    border-color: #C10230;
}

.bean-checkbox .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(193, 2, 48, 0.15);
    border-color: #C10230;
}

.bean-checkbox .form-check-label {
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    flex: 1;
}

.bean-checkbox .bean-origin-tag {
    font-size: 0.8rem;
    color: #888;
    margin-right: 0.25rem;
}

@media (max-width: 575.98px) {
    .beans-checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Form Success Message */
.form-success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success-message .success-icon {
    margin-bottom: 1.5rem;
}

.form-success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.form-success-message p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.form-success-message .btn-outline-primary {
    border-color: #C10230;
    color: #C10230;
}

.form-success-message .btn-outline-primary:hover {
    background: #C10230;
    color: #fff;
}

/* Form Error Message */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideDown 0.3s ease-out;
}

.form-message-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.form-message-error svg {
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Validation States */
.wholesale-inquiry-form .form-control.is-invalid,
.wholesale-inquiry-form .form-select.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.wholesale-inquiry-form .form-control:focus,
.wholesale-inquiry-form .form-select:focus {
    border-color: #C10230;
    box-shadow: 0 0 0 3px rgba(193, 2, 48, 0.1);
}

/* Submit Button Loading State */
.wholesale-inquiry-form button[type="submit"]:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.wholesale-inquiry-form button[type="submit"] .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}

/* Success Message Animation */
.form-success-message .success-icon svg .checkmark {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawCheck 0.5s ease-out 0.2s forwards;
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.form-success-message .success-icon svg circle {
    transform-origin: center;
    animation: scaleIn 0.3s ease-out forwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Clients Section */
.distribution-clients-section {
    background: #f9f9fb;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.client-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.client-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.client-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.client-name {
    font-weight: 600;
    color: #333;
    text-align: center;
    font-size: 0.9rem;
}

/* CTA Section */
.distribution-cta-section .cta-wrapper {
    position: relative;
}

.distribution-cta-section .cta-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.distribution-cta-section .cta-decoration-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: 10%;
}

.distribution-cta-section .cta-decoration-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 5%;
}

/* Distribution Page Responsive */
@media (max-width: 991.98px) {
    .why-points-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        padding: 2rem;
    }
    
    .contact-form-panel {
        padding: 2rem;
    }
    
    .distribution-hero-img {
        max-height: 350px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .distribution-hero-section .row {
        flex-direction: column-reverse;
    }
    
    .distribution-hero-img {
        max-height: 280px;
        margin-bottom: 2rem;
    }
    
    .contact-wrapper {
        border-radius: 16px;
    }
    
    .contact-info-panel {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-form-panel {
        padding: 1.5rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-detail-item {
        justify-content: center;
    }
    
    .bean-image-wrapper {
        height: 180px;
    }
    
    .bean-content {
        padding: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .distribution-hero-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .why-point-card {
        padding: 1.25rem;
    }
    
    .point-number {
        font-size: 1.25rem;
    }
    
    .client-item {
        padding: 1rem;
        min-height: 80px;
    }
    
    .client-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   Mobile-First Responsive Design
   ============================================ */

/* --- Header & Mobile Menu --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
}

.site-logo {
    max-width: 140px!important;
    height: auto;
    transition: max-width 0.3s ease;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--redorca-dark);
}

/* Custom Hamburger Menu */
.mobile-menu-toggle {
    border: none;
    background: transparent;
    padding: 10px;
    cursor: pointer;
}

.hamburger-box {
    width: 28px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 28px;
    height: 3px;
    background-color: var(--redorca-dark);
    border-radius: 3px;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: "";
    top: -8px;
}

.hamburger-inner::after {
    content: "";
    bottom: -8px;
}

/* Hamburger Animation when Open */
.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner {
    background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation Styles */
@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-radius: 0 0 16px 16px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .site-header .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .site-header .navbar-nav .nav-item {
        border-bottom: 1px solid #eee;
    }
    
    .site-header .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .site-header .navbar-nav .nav-link {
        padding: 1rem 0.5rem;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .site-logo {
        max-width: 120px!important;
    }
    
    .header-cta {
        display: none !important;
    }
    
    .mobile-cta {
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
}

/* --- Hero Section Mobile --- */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 0;
        overflow: hidden;
    }
    
    .textbg {
        min-height: auto;
        background-size: cover;
        background-position: center;
        padding: 1.5rem 0;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-main-image {
        max-height: 180px;
    }
    
    .hero-section .display-4 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-section .btn-lg {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .textbg {
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 0.5rem 0;
    }
    
    .hero-main-image {
        max-height: 140px;
    }
    
    .hero-section .display-4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.8rem;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-section .btn-lg {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .titletag {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* --- About Points Section Mobile --- */
@media (max-width: 991.98px) {
    .about-points {
        padding: 1.5rem 0 !important;
    }
    
    .about-points h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .about-points .col-md-4 {
        margin-bottom: 1.25rem;
    }
    
    .about-points .imgc {
        max-width: 100px;
    }
    
    .about-points h3 {
        font-size: 1.1rem;
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
    }
    
    .about-points p {
        font-size: 0.875rem;
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .about-points .imgc {
        max-width: 80px;
    }
    
    .about-points h3 {
        font-size: 1rem;
    }
    
    .about-points p {
        font-size: 0.8rem;
    }
}

/* --- Course & Workshop Cards Mobile --- */
@media (max-width: 991.98px) {
    .course-card-horizontal {
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .course-content-wrapper {
        padding: 1rem;
    }
    
    .course-image-wrapper {
        height: 180px;
    }
    
    .workshop-card {
        margin-bottom: 1rem;
    }
    
    .course-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .course-excerpt {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 767.98px) {
    .course-image-wrapper {
        height: 160px;
    }
    
    .course-card-horizontal .row {
        flex-direction: column !important;
    }
    
    .course-content-left {
        order: 2;
    }
    
    .course-image-right {
        order: 1;
    }
}

@media (max-width: 575.98px) {
    .course-content-wrapper {
        padding: 0.875rem;
    }
    
    .course-title {
        font-size: 1.1rem;
    }
    
    .course-meta-list {
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    
    .course-meta-item {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    .course-image-wrapper {
        height: 140px;
    }
    
    .course-action-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .course-action-buttons .btn {
        width: 100%;
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .btn-more-info,
    .btn-book-now {
        width: 100%;
        justify-content: center;
    }
}

/* --- Single Product Page Mobile --- */
@media (max-width: 991.98px) {
    .product-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .product-hero-content {
        padding: 1rem;
    }
    
    .hero-info-card {
        position: relative;
        max-width: 100%;
        margin: -2rem 0.5rem 0;
        transform: none;
        padding: 1.25rem;
    }
    
    .hero-info-card .product-title {
        font-size: 1.35rem;
    }
    
    .hero-info-card .product-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-meta-badges {
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    
    .hero-meta-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .content-section {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.25rem;
    }
    
    .learn-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .calendar-section {
        padding: 1.5rem 0.75rem;
    }
    
    .calendar-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .calendar-grid,
    .calendar-summary {
        max-width: 100%;
    }
    
    .product-sidebar {
        margin-top: 1rem;
    }
    
    .sidebar-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .product-hero {
        height: 30vh;
        min-height: 200px;
    }
    
    .hero-info-card {
        margin: -1.5rem 0.5rem 0;
        padding: 1rem;
    }
    
    .hero-info-card .product-title {
        font-size: 1.1rem;
    }
    
    .hero-info-card .product-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-price {
        font-size: 1.25rem;
    }
    
    .btn-book-now {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .sidebar-card {
        padding: 0.875rem;
    }
    
    .sidebar-card h3 {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.1rem;
    }
    
    .learn-item,
    .audience-item,
    .practical-item {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* --- Footer Mobile --- */
@media (max-width: 991.98px) {
    .footer-modern {
        padding: 2rem 0 1rem;
    }
    
    .footer-modern .row > div {
        margin-bottom: 1.25rem;
    }
    
    .footer-logo {
        max-width: 100px;
    }
}

@media (max-width: 767.98px) {
    .footer-modern .col-lg-3,
    .footer-modern .col-lg-2 {
        text-align: center;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-nav ul {
        text-align: center;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-newsletter-form input,
    .footer-newsletter-form button {
        width: 100%;
        border-radius: 8px !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}

/* --- General Typography Mobile --- */
@media (max-width: 991.98px) {
    h1, .h1 {
        font-size: 1.75rem;
    }
    
    h2, .h2 {
        font-size: 1.35rem;
    }
    
    h3, .h3 {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    h1, .h1 {
        font-size: 1.5rem;
    }
    
    h2, .h2 {
        font-size: 1.25rem;
    }
    
    h3, .h3 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    h1, .h1 {
        font-size: 1.35rem;
    }
    
    h2, .h2 {
        font-size: 1.15rem;
    }
    
    h3, .h3 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.15rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    p {
        font-size: 0.875rem;
    }
}

/* --- Global Overflow Fix --- */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* --- Spacing Adjustments Mobile --- */
@media (max-width: 991.98px) {
    section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 767.98px) {
    section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .mb-5 {
        margin-bottom: 1.25rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Reduce image sizes */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .imgc {
        max-width: 120px !important;
    }
}

@media (max-width: 575.98px) {
    section {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .py-5 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .imgc {
        max-width: 100px !important;
    }
}

/* --- Buttons Mobile --- */
@media (max-width: 575.98px) {
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-group-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-group-mobile .btn {
        width: 100%;
    }
}

/* --- Forms Mobile --- */
@media (max-width: 575.98px) {
    .form-control {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 0.75rem 1rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
}

/* --- Tables Mobile --- */
@media (max-width: 767.98px) {
    .table-responsive-stack {
        display: block;
    }
    
    .table-responsive-stack thead {
        display: none;
    }
    
    .table-responsive-stack tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 1rem;
    }
    
    .table-responsive-stack td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border: none;
    }
    
    .table-responsive-stack td::before {
        content: attr(data-label);
        font-weight: 600;
    }
}

/* --- Cards General Mobile --- */
@media (max-width: 575.98px) {
    .card {
        border-radius: 12px;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
}

/* --- Modals Mobile --- */
@media (max-width: 575.98px) {
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 16px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
}

/* --- Utility Classes for Mobile --- */
.mobile-hidden {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 767.98px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-text-center {
        text-align: center !important;
    }
    
    .mobile-stack {
        flex-direction: column !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
}

/* --- Touch-friendly improvements --- */
@media (max-width: 991.98px) {
    .nav-link,
    .btn,
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
}

/* --- Fix for iOS input zoom --- */
@supports (-webkit-touch-callout: none) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px;
    }
}

/* --- RTL Mobile Adjustments --- */
[dir="rtl"] .site-header .navbar-collapse {
    text-align: right;
}

[dir="rtl"] .mobile-menu-toggle {
    margin-right: auto;
    margin-left: 0;
}

@media (max-width: 991.98px) {
    [dir="rtl"] .hero-section .col-lg-6 {
        text-align: center;
    }
    
    [dir="rtl"] .footer-modern .col-lg-3,
    [dir="rtl"] .footer-modern .col-lg-2 {
        text-align: center;
    }
}

/* ===== Product Category Archive (Courses / Workshops) ===== */
.product-category-archive {
    padding-bottom: 3rem;
}

/* Category hero: description + left/right elements (coffee images) */
.category-hero-section {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(to bottom, rgba(106, 11, 27, 0.06), transparent);
    overflow: hidden;
}

/* Absolute left/right images – no space from sides */
.category-hero-edge {
    position: absolute;

    bottom: 0;
    width: auto;
    max-width: 35%;
    height: 100%;
    top:50%;
    transform: translateY(-50%);
    object-fit: contain;
    object-position: center;
    pointer-events: none;
}

.category-hero-edge.category-hero-left {
    left: 0;
    right: auto;
}

.category-hero-edge.category-hero-right {
    right: 0;
    left: auto;
}

.category-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.category-hero-center {
    flex: 1 1 100%;
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.category-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.category-hero-description {
    color: #555;
    line-height: 1.6;
}

.category-hero-description p {
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .category-hero-inner {
        flex-wrap: nowrap;
        text-align: right;
    }
    .category-hero-center {
        flex: 1 1 auto;
        max-width: none;
    }
}

/* Category calendar section */
.category-calendar-section {
    padding: 2rem 0 3rem;
}

.category-calendar-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-calendar-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.category-calendar-subtitle {
    color: #666;
    margin-bottom: 0;
}

.category-calendar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.category-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.category-calendar-month {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
}

.category-calendar-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.category-calendar-nav-btn:hover {
    background: #C10230;
    color: #fff;
}

.category-calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-align: center;
}

.category-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.category-calendar-cell {
    min-height: 100px;
    padding: 6px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-calendar-cell-empty {
    background: #f5f5f5;
    border-color: #eee;
}

.category-calendar-cell-today {
    border-color: #C10230;
    background: #fff5f7;
}

.category-calendar-cell-past {
    opacity: 0.75;
}

.category-calendar-day-num {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.category-calendar-item {
    display: block;
    padding: 6px 8px;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    color: #1b5e20;
    text-decoration: none;
    font-size: 0.8rem;
    transition: background 0.2s, border-color 0.2s;
}

.category-calendar-item:hover {
    background: #c8e6c9;
    border-color: #81c784;
    color: #0d3d0d;
}

.category-calendar-item-title {
    display: block;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-calendar-item-duration {
    display: block;
    font-size: 0.75rem;
    color: #2e7d32;
    margin-top: 2px;
}

.category-calendar-cta-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Category sample (last/random 3) */
.category-sample-section {
    padding: 2rem 0 3rem;
}

.category-sample-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-sample-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.category-sample-subtitle {
    color: #666;
    margin-bottom: 0;
}

.category-sample-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-sample-card-image-link {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.category-sample-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-sample-card:hover .category-sample-card-img {
    transform: scale(1.03);
}

.category-sample-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-sample-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-sample-card-title a {
    color: #1a1a2e;
    text-decoration: none;
}

.category-sample-card-title a:hover {
    color: #C10230;
}

.category-sample-card-subtitle {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.category-sample-card-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.category-sample-card-btn {
    margin-top: auto;
    align-self: flex-start;
}
