/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/
/* Tourism Website Custom Styles */
/**PRICE SUFFIX**/

/* Price suffix styling - inline with price */
.price-suffix {
    font-size: 0.70em;
    font-weight: normal;
    color: #666;
    margin-left: 0.3em;
    display: inline;
}

/* Ensure suffix doesn't break to new line */
.price {
    white-space: nowrap;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .price-suffix {
        font-size: 0.8em;
    }
}

/* If you want to allow line breaks on mobile */
@media (max-width: 480px) {
    .price {
        white-space: normal;
    }
    
    .price-suffix {
        white-space: nowrap;
    }
}
  
/* Modern Single Product Page Styles */

/* Single Product Page Styles */
.woocommerce div.product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-family: 'Arial', sans-serif;
    background: #f8f9fa;
}

/* Product Image Section */
.woocommerce div.product .woocommerce-product-gallery {
    flex: 1 1 50%;
    max-width: 600px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.woocommerce-product-gallery__wrapper {
    position: relative;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.woocommerce-product-gallery__image img:hover {
    transform: scale(1.05);
}

/* Product Details Section */
.woocommerce div.product .summary {
    flex: 1 1 50%;
    max-width: 600px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product_title {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.woocommerce div.product p.price {
    font-size: 1.8rem;
    color: #27ae60;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Taxonomies */
.taxonomy-tour_duration,
.taxonomy-tour_type,
.taxonomy-tour_location {
    margin-bottom: 15px;
}

.taxonomy-tour_duration span,
.taxonomy-tour_type span,
.taxonomy-tour_location span {
    display: inline-block;
    background: #ecf0f1;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #34495e;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Custom Tabs */
.woocommerce-tabs {
    margin-top: 30px;
    width: 100%;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #ecf0f1;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 15px 25px;
    font-size: 1rem;
    color: #34495e;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: #27ae60;
    border-bottom: 3px solid #27ae60;
}

.woocommerce-tabs .panel {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
    color: #34495e;
}

.woocommerce-tabs .panel h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}


/* Responsive Design */
@media (max-width: 992px) {
    .woocommerce div.product {
        flex-direction: column;
    }

    .woocommerce div.product .woocommerce-product-gallery,
    .woocommerce div.product .summary {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .tour-booking-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .product_title {
        font-size: 1.8rem;
    }

    .woocommerce div.product p.price {
        font-size: 1.5rem;
    }

    .woocommerce-tabs ul.tabs {
        flex-direction: column;
    }

    .woocommerce-tabs ul.tabs li a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .woocommerce div.product {
        padding: 20px 10px;
    }

    .tour-booking-form {
        padding: 20px;
    }

    .tour-booking-form h3 {
        font-size: 1.5rem;
    }

    .tour-booking-form button {
        font-size: 1rem;
    }
}


