/*
Theme Name:     Traveler Childtheme
Description:    Traveler Child Theme
Theme URI:      https://travelerwp.com/
Author:         the ShineTheme
Author URI:     http://shinetheme.com
Version:        1.0
Template:       traveler
*/


/* Armenia Photo Club - clean booking checkout / success pages */


/* Hide Payment Method and Status on booking success page */
.booking-success-notice .booking-info-detail li:nth-child(3),
.booking-success-notice .booking-info-detail li:nth-child(4) {
    display: none !important;
}


/* Hide Pay Amount */
.st-checkout-page .payment-amount {
    display: none !important;
}


/* MAIN CHECKOUT
   Hide technical Adult Price and Bulk Discount.
   Keep final Subtotal visible.
*/
body.page-template-template-checkout
.total-section > ul > li:nth-child(1),

body.page-template-template-checkout
.total-section > ul > li:nth-child(2) {
    display: none !important;
}


/* BOOKING SUCCESS PAGE
   Hide technical Adult Price, Bulk Discount and duplicate Subtotal.
   Keep final Total visible.
*/
body.page-template-template-payment-success
.st-checkout-page .cart-info .total-section > ul > li:nth-child(1),

body.page-template-template-payment-success
.st-checkout-page .cart-info .total-section > ul > li:nth-child(2),

body.page-template-template-payment-success
.st-checkout-page .cart-info .total-section > ul > li:nth-child(3) {
    display: none !important;
}


/* PUBLIC TOUR / ACTIVITY PAGE
   Hide internal Bulk Discount pricing table.
   Pricing calculations continue to work normally.
*/
.single-st_tours .accordion-item.stt-discount,
.single-st_activity .accordion-item.stt-discount {
    display: none !important;
}


/* TOUR / ACTIVITY OWNER CARD
   Hide only "Member Since" text.
   Keep logo and Armenia Photo Club name visible.
*/
.single-st_tours .owner-info .media .media-body > p,
.single-st_activity .owner-info .media .media-body > p {
    display: none !important;
}


/* PUBLIC TOUR / ACTIVITY PAGE
   Booking People quantity field.
   Width verified in Chrome DevTools: 50px.
   Visual change only — Traveler booking/pricing logic is untouched.
*/
.single-st_tours #form-booking-inpage .st-number-wrapper input,
.single-st_activity #form-booking-inpage .st-number-wrapper input {
    width: 50px !important;
}


/* PUBLIC TOUR PAGE
   AGE RESTRICTION TEXT
   Hide "Age 18+" / translated age restriction text
   below the participant quantity label.
   Quantity and pricing logic remain untouched.
*/
.single-st_tours #form-booking-inpage
.form-guest-search .check-in-wrapper > .render {
    display: none !important;
}


/* ==========================================================
   ARMENIA PHOTO CLUB
   GLOBAL TRAVELER HERO / BANNER STANDARD
   Updated: 2026-09-03
   ========================================================== */


/* Desktop */
#st-content-wrapper > .banner {
    min-height: 480px !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}


/* Tablet */
@media (max-width: 991px) {

    #st-content-wrapper > .banner {
        min-height: 380px !important;
    }

}


/* Mobile */
@media (max-width: 767px) {

    #st-content-wrapper > .banner {
        min-height: 300px !important;
    }

}


/* ==========================================================
   TOUR / ACTIVITY SEARCH TOPBAR
   Move search form toward the lower part of the hero banner.

   Tour Search Topbar     = data-layout="7"
   Activity Search Topbar = data-layout="5"

   Sidebar search layouts are intentionally untouched.
   ========================================================== */


/* Desktop */
#st-content-wrapper[data-layout="7"] > .banner
.st-banner-search-form.style_2,

#st-content-wrapper[data-layout="5"] > .banner
.st-banner-search-form.style_2 {
    transform: translateY(235px) !important;
}


/* Tablet */
@media (max-width: 991px) {

    #st-content-wrapper[data-layout="7"] > .banner
    .st-banner-search-form.style_2,

    #st-content-wrapper[data-layout="5"] > .banner
    .st-banner-search-form.style_2 {
        transform: translateY(155px) !important;
    }

}


/* Mobile */
@media (max-width: 767px) {

    #st-content-wrapper[data-layout="7"] > .banner
    .st-banner-search-form.style_2,

    #st-content-wrapper[data-layout="5"] > .banner
    .st-banner-search-form.style_2 {
        transform: translateY(75px) !important;
    }

}


/* ==========================================================
   ARMENIA PHOTO CLUB
   MAIN HEADER MENU — HOVER / ACTIVE STATE
   Added: 2026-09-07

   Brand blue: #719CBA
   Desktop main menu.
   ========================================================== */

.header__center #st-main-menu .main-menu > li > a:hover,
.header__center #st-main-menu .main-menu > li > a:active,
.header__center #st-main-menu .main-menu > li.current-menu-item > a,
.header__center #st-main-menu .main-menu > li.current-menu-ancestor > a,
.header__center #st-main-menu .main-menu > li.current_page_item > a,
.header__center #st-main-menu .main-menu > li.current_page_ancestor > a {
    color: #719CBA !important;
}