/* Travel Content Kit — Combined CSS (auto-generated) */

/* === assets/css/atoms/button-close.css === */
/**
 * Atom: Close Button
 */

.btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--wp--preset--color--contrast);
    transition: opacity 0.2s ease;
}

.btn-close:hover {
    opacity: 0.7;
}

.btn-close:focus {
    outline: 2px solid var(--wp--preset--color--secondary);
    outline-offset: 2px;
}

.btn-close svg {
    width: 28px;
    height: 28px;
}


/* === assets/css/atoms/button-hamburger.css === */
/**
 * Atom: Hamburger Button
 */

.btn-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    outline: none;
}

.btn-hamburger__line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Active state (X icon animation) */
.btn-hamburger[aria-expanded="true"] .btn-hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.btn-hamburger[aria-expanded="true"] .btn-hamburger__line:nth-child(2) {
    opacity: 0;
}

.btn-hamburger[aria-expanded="true"] .btn-hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* === assets/css/atoms/logo.css === */
/**
 * Atom: Logo
 */

.logo {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--30);
    color: #ffffff;
    font-weight: 700;
    font-size: var(--wp--preset--font-size--regular);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo__image {
    height: 24px;
    width: auto;
    max-width: 250px;
}

.logo__image.color {
    display: none;
}

/* Logo variant for aside menu - uses color version, no filters */
.logo--aside .logo__image {
    filter: none;
    height: 55px;
}

.logo--aside .logo__icon {
    color: var(--wp--preset--color--secondary);
    filter: none;
}

.logo__text {
    display: none;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .logo__text {
        display: block;
    }
}

@media (min-width: 1024px) {
    .logo {
        font-size: 18px;
    }

    .logo__image {
        height: 55px;
    }
}

@media (max-width: 767px) {
    .logo--aside .logo__image {
        height: 36px;
    }
}


/* === assets/css/atoms/logo-footer.css === */
/**
 * Atom: Footer Logo
 */

.logo-footer {
    text-align: center;
    margin-bottom: var(--wp--preset--spacing--80);
}

.logo-footer__link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--wp--preset--spacing--30);
    text-decoration: none;
    color: var(--wp--preset--color--base);
    transition: color 0.2s ease;
}

.logo-footer__link:hover,
.logo-footer__link:focus {
    color: var(--wp--preset--color--secondary);
}

.logo-footer__icon {
    width: 120px;
    height: auto;
}

.logo-footer__image {
    width: auto;
    max-width: 250px;
    height: auto;
    max-height: 55px;
    object-fit: contain;
}

.logo-footer__text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.logo-footer__tagline,
.logo-footer__slogan {
    margin: var(--wp--preset--spacing--30) 0 0;
}

.logo-footer__slogan {
    font-size: var(--wp--preset--font-size--medium);
}


/* === assets/css/atoms/nav-link.css === */
/**
 * Atom: Navigation Link
 */

.nav-link {
    display: inline-block;
    padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--50);
    font-size: var(--wp--preset--font-size--regular);
    font-weight: 500;
    color: var(--wp--preset--color--contrast);
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--wp--preset--color--secondary);
}

/* Underline effect on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--wp--preset--color--secondary);
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 80%;
}

/* Current/active page indicator */
.nav-link.current-menu-item,
.nav-link.current_page_item {
    color: var(--wp--preset--color--secondary);
}

.nav-link.current-menu-item::after,
.nav-link.current_page_item::after {
    width: 80%;
}


/* === assets/css/atoms/payment-icon.css === */
/**
 * Atom: Payment Icon
 */

.payment-icon {
    display: inline-block;
}

.payment-icon__img {
    display: block;
    width: 40px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.payment-icon__img:hover {
    opacity: 1;
}


/* === assets/css/atoms/social-icon.css === */
/**
 * Atom: Social Icon
 */

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--base);
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-icon:hover,
.social-icon:focus {
    color: var(--wp--preset--color--secondary);
    transform: translateY(-2px);
}

/* Sizes */
.social-icon--sm {
    width: 20px;
    height: 20px;
}

.social-icon--md {
    width: 24px;
    height: 24px;
}

.social-icon--lg {
    width: 32px;
    height: 32px;
}

.social-icon__svg {
    width: 100%;
    height: 100%;
}

.social-media-bar__section--reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: var(--wp--preset--spacing--80);
}

.social-media-bar__section--reviews .social-icon {
    width: auto;
    height: auto;
    padding: 0;
    min-width: auto;
    min-height: auto;
}

.social-media-bar__section--reviews .social-icon svg {
    height: 20px;
    width: auto;
}

/* Platform specific colors on hover */
.social-icon--facebook:hover { color: #1877f2; }
.social-icon--instagram:hover { color: #e4405f; }
.social-icon--pinterest:hover { color: #bd081c; }
.social-icon--linkedin:hover { color: #0a66c2; }
.social-icon--youtube:hover { color: #ff0000; }
.social-icon--tripadvisor:hover { color: #00af87; }
.social-icon--google:hover { color: #4285f4; }

/* Mobile: Optimizar touch targets (mínimo 40px) */
@media (max-width: 767px) {
    .social-icon {
        padding: var(--wp--preset--spacing--30); /* 8px padding = 24px icon + 16px padding = 40px total */
        min-width: 40px;
        min-height: 40px;
    }
}


/* === assets/css/atoms/search.css === */
/**
 * Atom: Search
 */

.search-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.search-modal.active {
    display: flex;
}

.search-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
}

.search-modal__content {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    min-width: 478px;
}

.search-modal__close {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 28px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
}

.search-modal .search-form {
    width: 100%;
    height: 50px;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
}

.search-modal .search-form label {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.search-modal .search-form .search-field {
    padding: 12px 24px;
    border: none;
    width: 100%;
    height: 100%;
}

.search-modal .search-form .search-submit {
    margin-left: 0;
    background-color: #C66E65;
    color: white;
    outline: none;
    border: none;
    height: 100%;
    padding: 18px 26px;
    font-size: 16px;
}

@media (max-width: 767px) {
    .search-modal__content {
        min-width: 300px;
        width: 80%;
    }
}

/* === assets/css/molecules/contact-info.css === */
/**
 * Molecule: Contact Info
 */

.contact-info__title {
    margin-bottom: 4px;
    font-size: var(--wp--preset--font-size--regular);
    font-weight: 700;
    color: var(--wp--preset--color--base);
}

.contact-info__subtitle {
    margin-bottom: 4px;
    font-size: var(--wp--preset--font-size--regular);
    font-weight: 600;
    color: var(--wp--preset--color--base);
}

.contact-info__block {
    margin-bottom: var(--wp--preset--spacing--40);
}

.contact-info__item {
    margin-bottom: 4px;
    font-size: var(--wp--preset--font-size--small);
    color: #bfcfd3;
}

.contact-info__link {
    color: var(--wp--preset--color--base);
    font-weight: 700;
    transition: color 0.2s ease;
}

.contact-info__link--email {
    text-decoration: underline;
}

.contact-info__link:hover,
.contact-info__link:focus {
    color: var(--wp--preset--color--secondary);
}

.contact-info__schedule {
    margin: 0 0 var(--wp--preset--spacing--50);
    font-size: var(--wp--preset--font-size--small);
    color: #bfcfd3;
}

.contact-info__closed {
    font-style: italic;
}


/* === assets/css/molecules/footer-company-info.css === */
/**
 * Molecule: Footer Company Info
 * Styling for company registration and address
 * Centered below reviews section
 *
 * @package Travel_Child_Theme
 * @since 1.0.0
 */

.footer-company-info {
    text-align: center;
    color: #bfcfd3;
    font-size: 0.875rem;
}


/* === assets/css/molecules/footer-legal-bar.css === */
/**
 * Molecule: Footer Legal Bar
 */

.footer-legal-bar {
    background-color: #13484D;
    padding: 1rem 0;
}

.footer-legal-bar__container {
    max-width: var(--wp--style--global--content-size);
    margin: 0 auto;
    padding: 0 var(--wp--preset--spacing--60);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--wp--preset--spacing--30);
}

@media (min-width: 768px) {
    .footer-legal-bar__container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal-bar__copyright {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-legal-bar__copyright {
        text-align: left;
    }
}

.footer-legal-bar__text {
    font-size: var(--wp--preset--font-size--tiny);
    color: var(--wp--preset--color--base);
}

/* Hide RUC and Address in mobile (shown via footer-company-info instead) */
@media (max-width: 767px) {
    .footer-legal-bar__text--desktop-only {
        display: none;
    }
}

.footer-legal-bar__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-legal-bar__list li {
    margin: 0;
}

.footer-legal-bar__list li:not(:last-child)::after {
    content: '|';
    margin-left: 4px;
    color: #ffffff;
}

.footer-legal-bar__list a {
    font-size: var(--wp--preset--font-size--tiny);
    color: #ffffff;
    transition: color 0.2s ease;
}

.footer-legal-bar__list a:hover,
.footer-legal-bar__list a:focus {
    color: var(--wp--preset--color--secondary);
}


/* === assets/css/molecules/footer-map.css === */
/**
 * Molecule: Footer Map
 */

.footer-map {
    width: 100%;
    margin: var(--wp--preset--spacing--80) auto;
}

.footer-map__svg,
.footer-map__image {
    width: 100%;
    height: auto;
    color: #bfcfd3;
}

.footer-map__image {
    display: block;
}

@media (max-width: 767px) {
    .footer-map {
        display: none;
    }
}


/* === assets/css/molecules/nav-aside.css === */
/**
 * Molecule: Aside Navigation Menu
 */

/* Container */
.nav-aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-aside.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

/* Overlay */
.nav-aside__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    cursor: pointer;
}

.nav-aside.is-open .nav-aside__overlay {
    opacity: 1;
}

/* Panel - 40% width on desktop */
.nav-aside__panel {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-color: transparent;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 0;
    z-index: 2;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .nav-aside__panel {
        max-width: 490px;
    }
}

.nav-aside.is-open .nav-aside__panel {
    transform: translateX(0);
}

/* White Background Section */
.nav-aside__white-section {
    background-color: #ffffff;
    padding: var(--wp--preset--spacing--80);
    flex: 1;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
}

/* Header inside white section */
.nav-aside__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--wp--preset--spacing--100);
}

/* Two-column grid layout for main content */
.nav-aside__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--wp--preset--spacing--90);
}

.nav-aside__column {
    display: flex;
    flex-direction: column;
    gap: var(--wp--preset--spacing--80);
    justify-content: space-between;
    height: 100%;
}

.nav-aside__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--wp--preset--spacing--50);
    color: var(--wp--preset--color--contrast);
}

.nav-aside__title--with-icon {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--30);
}

.nav-aside__title-icon {
    width: 20px;
    height: 20px;
    color: #E78C85;
}

.nav-aside__text {
    font-size: 15px;
    color: var(--wp--preset--color--gray);
    margin-bottom: var(--wp--preset--spacing--50);
}

.nav-aside__link {
    display: inline-flex;
    align-items: center;
    gap: var(--wp--preset--spacing--30);
    color: #E78C85;
    font-weight: 500;
    transition: gap 0.2s ease;
}

.nav-aside__link span {
    font-size: 24px;
    display: block;
    margin-bottom: 4px;
}

.nav-aside__link:hover {
    gap: var(--wp--preset--spacing--50);
}

/* Navigation Lists */
.nav-aside__list {
    display: flex;
    flex-direction: column;
    gap: var(--wp--preset--spacing--30);
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.nav-aside__list a {
    display: block;
    line-height: 1.2;
    color: var(--wp--preset--color--contrast);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-aside__list a:hover,
.nav-aside__list a:focus {
    color: var(--wp--preset--color--secondary);
    padding-left: var(--wp--preset--spacing--30);
}

.nav-aside__list .current-menu-item > a,
.nav-aside__list .current_page_item > a {
    color: var(--wp--preset--color--secondary);
}

/* Menu styling for sections in white background */
.nav-aside__section .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-aside__section .menu li {
    margin: 0;
}

.nav-aside__section .menu a {
    display: block;
    padding: 4px 0;
    font-size: var(--wp--preset--font-size--regular);
    font-weight: 500;
    color: var(--wp--preset--color--contrast);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-aside__section .menu a:hover {
    color: var(--wp--preset--color--secondary);
    padding-left: var(--wp--preset--spacing--30);
}

.nav-aside__section--reviews .nav-aside__section-container {
    padding-left: 1rem;
}

/* Star Rating */
.nav-aside__rating {
    display: flex;
    align-items: center;
}

.nav-aside__star {
    width: 16px;
    height: 16px;
    color: #FFD700;
}

.nav-aside__review-badges {
    display: flex;
    flex-direction: column;
    gap: var(--wp--preset--spacing--60);
    margin-top: var(--wp--preset--spacing--50);
}

.nav-aside__review-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-aside__review-badge img {
    width: auto;
    height: 20px;
    object-fit: contain;
}

.nav-aside__review-badge:hover {
    opacity: 1;
    transform: translateX(4px);
}

.nav-aside__social-icons {
    display: flex;
    gap: var(--wp--preset--spacing--50);
    margin-top: var(--wp--preset--spacing--50);
}

/* Footer Links (for bottom section left column) */
.nav-aside__footer-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-aside__footer-list li {
    margin: 0;
}

.nav-aside__footer-list a {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--30);
    color: var(--wp--preset--color--contrast);
    font-weight: 700;
    transition: color 0.2s ease, gap 0.2s ease;
}

.nav-aside__footer-list a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="12" viewBox="0 0 8 12" fill="none"><path d="M8 5.90355L2.42396 11.6805C1.34693 12.7964 -0.864925 10.7323 0.432483 9.43386L3.9602 5.90355L0.318698 2.43153C-0.790153 1.37429 1.26386 -0.795451 2.36705 0.301642L8 5.90355Z" fill="%23E78C85"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-aside__footer-list a:hover {
    color: var(--wp--preset--color--secondary);
    gap: var(--wp--preset--spacing--50);
}

.nav-aside__footer-list a:hover::after {
    transform: translateX(2px);
}

/* Bottom section menu styling (WordPress menu in bottom left) */
.nav-aside__bottom-column .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-aside__bottom-column .menu li {
    margin: 0;
}

.nav-aside__bottom-column .menu a {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--30);
    font-weight: 700;
    color: var(--wp--preset--color--contrast);
    padding: var(--wp--preset--spacing--30) 0;
    transition: color 0.2s ease, gap 0.2s ease;
}

.nav-aside__bottom-column .menu a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8" height="12" viewBox="0 0 8 12" fill="none"><path d="M8 5.90355L2.42396 11.6805C1.34693 12.7964 -0.864925 10.7323 0.432483 9.43386L3.9602 5.90355L0.318698 2.43153C-0.790153 1.37429 1.26386 -0.795451 2.36705 0.301642L8 5.90355Z" fill="%23E78C85"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s ease;
}

.nav-aside__bottom-column .menu a:hover {
    color: var(--wp--preset--color--secondary);
    gap: var(--wp--preset--spacing--50);
}

.nav-aside__bottom-column .menu a:hover::after {
    transform: translateX(2px);
}

/* Bottom Section with gray background */
.nav-aside__bottom-section {
    background-color: #F5E1D0;
    padding: var(--wp--preset--spacing--80);
}

/* Two-column layout for bottom section */
.nav-aside__bottom-columns {
    display: flex;
    gap: var(--wp--preset--spacing--50);
}

.nav-aside__bottom-column {
    display: flex;
    flex-direction: column;
}

/* Right column contact alignment */
.nav-aside__bottom-column--contact {
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
}

/* Contact Section */
.nav-aside__section--contact {
    background-color: #f8ece4;
    padding: var(--wp--preset--spacing--60);
    border-radius: 8px;
    text-align: center;
    border-bottom: none;
}

.nav-aside__contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #C66E65;
    border-radius: 50px;
    color: #C66E65;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--wp--preset--spacing--80);
    transition: background-color 0.2s ease, color 0.2s ease;
    width: 100%;
    max-width: 200px;
    text-align: center;
}

.nav-aside__contact-btn:hover,
.nav-aside__contact-btn:focus {
    background-color: #C66E65;
    color: #ffffff;
}

.nav-aside__phone {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #17565C;
    margin-bottom: var(--wp--preset--spacing--80);
    transition: color 0.2s ease;
}

.nav-aside__phone:hover {
    color: var(--wp--preset--color--secondary);
}

.nav-aside__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-aside__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17565C;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-aside__social-link:hover,
.nav-aside__social-link:focus {
    color: #17565C;
}

/* Scrollbar styling */
.nav-aside__panel::-webkit-scrollbar {
    width: 8px;
}

.nav-aside__panel::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.nav-aside__panel::-webkit-scrollbar-thumb {
    background: #9e9e9e;
    border-radius: 4px;
}

.nav-aside__panel::-webkit-scrollbar-thumb:hover {
    background: var(--wp--preset--color--gray);
}


/* === assets/css/molecules/nav-footer-column.css === */
/**
 * Molecule: Footer Navigation Column
 */

.nav-footer-column {
    margin-bottom: var(--wp--preset--spacing--40);
}

.nav-footer-column__title {
    margin-bottom: 4px;
    font-size: var(--wp--preset--font-size--regular);
    font-weight: 700;
    color: var(--wp--preset--color--base);
    cursor: default;
}

.nav-footer-column__list {
    margin: 0;
    padding: 0;
    list-style: none;
}


.nav-footer-column__list a {
    display: block;
    font-size: var(--wp--preset--font-size--small);
    color: #bfcfd3;
    text-decoration: none;
}

.nav-footer-column__list a:hover,
.nav-footer-column__list a:focus {
    color: var(--wp--preset--color--secondary);
}

.nav-footer-column__list .current-menu-item > a {
    color: var(--wp--preset--color--secondary);
}


/* === assets/css/molecules/nav-main.css === */
/**
 * Molecule: Desktop Navigation
 */

.nav-main {
    display: none;
}

@media (min-width: 1024px) {
    .nav-main {
        display: block;
    }
}

.nav-main__list {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--50);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-main__list li {
    position: relative;
}

.nav-main__list a {
    display: inline-block;
    padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--50);
    font-size: var(--wp--preset--font-size--regular);
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    position: relative;
}

.nav-main__list a:hover,
.nav-main__list a:focus {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* Underline effect */
.nav-main__list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.nav-main__list a:hover::after,
.nav-main__list a:focus::after {
    width: 80%;
}

/* Current page */
.nav-main__list .current-menu-item > a,
.nav-main__list .current_page_item > a {
    color: #ffffff;
    font-weight: 700;
}

.nav-main__list .current-menu-item > a::after,
.nav-main__list .current_page_item > a::after {
    width: 80%;
}


/* === assets/css/molecules/nav-secondary.css === */
/**
 * Secondary Navigation (Main Pages Menu)
 * Located below the primary header
 * Uses parent header gradient shadow - no own gradient needed
 */

.header__secondary-list {
    list-style: none;
    display: flex;
    gap: 0;
    padding: 0;
    margin: 0;
}

.header__secondary-list>li {
    position: relative;
}

.header__secondary-list>li>a {
    display: block;
    padding: 8px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.header__secondary-list>li.current-menu-item>a,
.header__secondary-list>li.current_page_item>a {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Mobile styles */
@media (max-width: 1024px) {
    .header__secondary-nav {
        display: none;
        /* Hide on mobile, use hamburger menu instead */
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .header__secondary-list a {
        padding: 14px 16px;
        font-size: 14px;
    }
}

.header__secondary-list>.menu-item.menu-item-has-children>a {
    border-radius: 16px 16px 0 0;
}

.header__secondary-list>.menu-item.menu-item-has-children:hover>a {
    color: #0A797E;
    background-color: #ffffff;
}

.header__secondary-list>.menu-item>.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 0 16px 16px 16px;
    padding: 1rem 0 1.5rem;
    margin: 0;
    width: max-content;
    min-width: calc(100% + 3rem);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 20;
    list-style: none;
}

.header__secondary-list>.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
}

.header__secondary-list .sub-menu a {
    color: #0A797E;
    display: block;
    padding: 0.5rem 1rem;
}

.header__secondary-list .sub-menu a:hover {
    color: #E78C85;
}

.header__secondary-list .sub-menu a::after {
    content: "❯";
    display: inline-block;
    font-size: 0.9rem;
    color: #E78C85;
    margin-left: 8px;
    font-weight: 800;
}

.header__secondary-list .mega>.sub-menu>li>.sub-menu {
    list-style: none;
    position: initial;
    padding-left: 0;
    margin: 0;
}

.header__secondary-list .mega>.sub-menu {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-width: 700px;
    left: -150%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    border-radius: 16px;
}

.header__secondary-list .mega>.sub-menu>li>a {
    font-weight: 700;
    padding: 4px 0;
}

.header__secondary-list .mega>.sub-menu>li>a::after {
    content: none;
}

.header__secondary-list .mega>.sub-menu>li>ul>li>a {
    padding: 4px 0;
    font-size: 14px;
}

/* === assets/css/molecules/payment-methods.css === */
/**
 * Molecule: Payment Methods
 */

.payment-methods {
    margin-top: var(--wp--preset--spacing--40);
}

.payment-methods__title {
    margin: 0 0 var(--wp--preset--spacing--30);
    font-size: var(--wp--preset--font-size--regular);
    font-weight: 600;
    color: var(--wp--preset--color--base);
}

.payment-methods__icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: var(--wp--preset--spacing--50);
}

.payment-methods__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}

.payment-methods__icon img {
    width: auto;
    height: 100%;
    max-width: 60px;
    object-fit: contain;
}

.payment-methods__gateways {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--40);
    font-size: var(--wp--preset--font-size--small);
    color: #bfcfd3;
}

.payment-methods__gateway-link img {
    display: block;
}

/* === assets/css/molecules/social-media-bar.css === */
/**
 * Molecule: Social Media Bar
 */

.social-media-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--wp--preset--spacing--80) 0;
}

.social-media-bar__label {
    font-size: var(--wp--preset--font-size--small);
    font-weight: 500;
    color: #bfcfd3;
}

.social-media-bar__list {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--50);
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Review Logos */
.social-media-bar__logos {
    display: flex;
    align-items: center;
    gap: var(--wp--preset--spacing--50);
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-media-bar__logo-item {
    margin: 0;
    line-height: 0;
}

.social-media-bar__logo-link {
    display: inline-block;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.social-media-bar__logo-link:hover {
    opacity: 0.8;
}

.social-media-bar__logo-image {
    height: 24px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .social-media-bar__list,
    .social-media-bar__logos {
        gap: var(--wp--preset--spacing--30);
    }

    .social-media-bar__logo-image {
        height: 20px;
    }
}


/* === assets/css/organisms/header.css === */
/**
 * Organism: Header
 */

/* Header Container - Unified gradient shadow for both primary and secondary nav */

/* Adjust for WordPress admin bar when logged in */
body.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

header.wp-block-template-part {
    position: relative;
}

.header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1000;
}

.header__container {
    max-width: var(--wp--style--global--content-size);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__menus {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex: 1 1 0;
}

.header__nav {
    display: none !important;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.header__phone:hover,
.header__phone:focus {
    color: #ffffff;
}

.header__phone svg {
    width: 18px;
    height: 18px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
}

.lang-selector svg {
    width: 16px;
    height: 16px;
    stroke-width: 3;
}

.header__fav {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: #ffffff;
}

.header__fav:hover,
.header__fav:focus {
    color: #ffffff;
}

.header__fav svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.header__hamburger {
    display: flex;
    outline: none;
}

.header__search {
    display: flex;
}

@media (min-width: 1024px) {
    .header__container {
        padding: 0 var(--wp--preset--spacing--80);
    }

    .header__hamburger {
        margin-right: 16px;
    }

    .gt_selector {
        font-size: 16px;
    }
}


@media (max-width: 1023px) {
    .header__container {
        padding: 0 var(--wp--preset--spacing--50);
    }

    .header__fav {
        display: none;
    }

    .header {
        padding-top: 10px;
        padding-bottom: 10px;
        position: fixed;
    }

    .header__phone,
    .lang-selector,
    .gt_selector {
        font-size: 12px;
    }

    .header__actions {
        gap: 10px;
    }

    .header.scrolled {
        background: var(--wp--preset--color--base);
    }

    .header.scrolled .header__phone,
    .header.scrolled .lang-selector,
    .header.scrolled .btn-hamburger,
    .header.scrolled .gt_selector {
        color: var(--wp--preset--color--contrast);
    }

    .header.scrolled .header__search svg {
        stroke: var(--wp--preset--color--contrast);
    }


    .header.scrolled .logo__image {
        display: none;
    }

    .header.scrolled .logo__image.color {
        display: block;
    }
}

/*  */
.gtranslate_wrapper {
    display: flex;
}

.gt_selector {
    background-color: transparent;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
}

.gt_selector:focus {
    outline: none;
}

.gt_selector option {
    color: #000;
    font-size: 14px;
}

/* === assets/css/organisms/footer-main.css === */
/**
 * Organism: Footer Main
 */

footer.wp-block-template-part {
    margin-top: 0;
}

.footer-main {
    background-color: #154D52;
    color: var(--wp--preset--color--base);
    padding: var(--wp--preset--spacing--90) 0 0;
}

.footer-main__container {
    max-width: var(--wp--style--global--content-size);
    margin: 0 auto;
    padding: 0 var(--wp--preset--spacing--60);
}

.footer-main__top {
    display: grid;
    gap: var(--wp--preset--spacing--90);
    align-items: center;
}

/* Mobile: apilado verticalmente */
@media (max-width: 767px) {
    .footer-main__top {
        grid-template-columns: 1fr;
    }

    /* Orden Mobile según especificaciones:
       1. Logo + Lema (centrado)
       2. Reviews + Redes Sociales (centrado)
       3. RUC + Dirección (centrado)
       4. Navegación (izquierda)
       5. Info Institucional (izquierda)
       6. Contact + Office Hours (izquierda)
    */
    .footer-main__column--brand {
        order: 1;
    }

    .footer-main__column--nav {
        order: 2;
    }

    .footer-main__column--info {
        order: 3;
    }
}

/* Tablet: 2 columnas */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-main__top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main__column--brand {
        grid-column: 1 / -1;
        order: -1;
    }
}

/* Desktop: 3 columnas */
@media (min-width: 1024px) {
    .footer-main__top {
        grid-template-columns: 2fr 3fr 2fr;
    }
}


@media (min-width: 1280px) {
    .footer-main__top {
        grid-template-columns: 2.5fr 5fr 2.5fr;
    }
}


/* === assets/css/utilities.css === */
/**
 * Utility Classes
 * Reusable utility classes for common patterns
 */

/* Display utilities */
.hidden {
    display: none !important;
}

.block {
    display: block !important;
}

.inline-block {
    display: inline-block !important;
}

.flex {
    display: flex !important;
}

.inline-flex {
    display: inline-flex !important;
}

/* Screen reader only (accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* No scroll (when menu is open) */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Text utilities */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/* Spacing utilities */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--wp--preset--spacing--30) !important; }
.mt-2 { margin-top: var(--wp--preset--spacing--50) !important; }
.mt-3 { margin-top: var(--wp--preset--spacing--60) !important; }
.mt-4 { margin-top: var(--wp--preset--spacing--80) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--wp--preset--spacing--30) !important; }
.mb-2 { margin-bottom: var(--wp--preset--spacing--50) !important; }
.mb-3 { margin-bottom: var(--wp--preset--spacing--60) !important; }
.mb-4 { margin-bottom: var(--wp--preset--spacing--80) !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: var(--wp--preset--spacing--30) !important; }
.pt-2 { padding-top: var(--wp--preset--spacing--50) !important; }
.pt-3 { padding-top: var(--wp--preset--spacing--60) !important; }
.pt-4 { padding-top: var(--wp--preset--spacing--80) !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: var(--wp--preset--spacing--30) !important; }
.pb-2 { padding-bottom: var(--wp--preset--spacing--50) !important; }
.pb-3 { padding-bottom: var(--wp--preset--spacing--60) !important; }
.pb-4 { padding-bottom: var(--wp--preset--spacing--80) !important; }

/* Responsive utilities */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .show-mobile {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.3s ease;
}

.slide-in-right {
    animation: slideInRight 0.3s ease;
}

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

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus visible (accessibility) */
.focus-visible:focus {
    outline: 2px solid var(--wp--preset--color--secondary);
    outline-offset: 2px;
}

/* Prevent text selection on UI elements */
.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

