/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


body.single-product div#primary {
    padding-top: 180px;
}

body.woocommerce-page main#content {
    padding-top: 180px;
}

select#event_select {
    margin-bottom: 20px;
}

/* ===== WooCommerce Single Product Page Styling ===== */

/* Layout */
.woocommerce div.product {
    margin: 40px auto;
    padding: 0 0px;
}

.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary {
    width: 50%;
}

/* Product Title */
.woocommerce div.product .product_title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #010180;
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
}

/* Rating */
.woocommerce .woocommerce-product-rating {
    margin-bottom: 10px;
}

/* Short Description */
.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Quantity Box */
.woocommerce .quantity input.qty {
    width: 80px;
    height: 45px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 16px;
}

/* Add to Cart Button */
.woocommerce div.product form.cart .button {
    background: #010180;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.woocommerce div.product form.cart .button:hover {
    background: #ff6600;
    color: #fff;
}

/* Product Meta (SKU, Category, Tags) */
.woocommerce div.product .product_meta {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 50px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 2px solid #eee;
    border-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    color: #333;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #010180;
    border-bottom: 3px solid #010180;
}

/* Product Gallery */
.woocommerce div.product .woocommerce-product-gallery img {
    border-radius: 12px;
}

/* Related Products */
.woocommerce .related.products h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .woocommerce div.product {
        flex-direction: column;
    }
    .woocommerce div.product .woocommerce-product-gallery,
    .woocommerce div.product .summary {
        width: 100%;
    }
    .woocommerce div.product .product_title {
        font-size: 26px;
    }
}

.woocommerce span.onsale {
    background: #010180;
    aspect-ratio: 1/1;
    padding: 0;
    left: 12px;
    top: 12px;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    border: 2px solid #010180;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a{
    color: #010180;
}

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

.woocommerce-message {
    border-top-color: #010180;
}

.woocommerce-message::before {
    color: #010180;
}

/* ===== WooCommerce My Account Layout ===== */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
    margin-top: 30px;
}

/* Sidebar Tabs (Navigation) */
.woocommerce-MyAccount-navigation {
    width: 260px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 10px;
}

/* Tab List */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Tab Item */
.woocommerce-MyAccount-navigation li {
    margin: 6px 0;
}

/* Tab Link */
.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.25s ease;
}

/* Hover */
.woocommerce-MyAccount-navigation li a:hover {
    background: #f5f7fa;
    color: #0073e6;
}

/* Active Tab */
.woocommerce-MyAccount-navigation li.is-active a {
    background: linear-gradient(135deg, #010180, #010180);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,115,230,0.25);
}

/* Content Area */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    min-width: 300px;
}

/* Headings */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Buttons */
.woocommerce-account .button,
.woocommerce-account button,
.woocommerce-account input[type="submit"] {
    background: linear-gradient(135deg, #0073e6, #00b4d8);
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.woocommerce-account .button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,115,230,0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation {
        width: 100%;
    }
}


.woocommerce-account .woocommerce:before, .woocommerce-account .woocommerce:after {
    display: none;
}