/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Teamhttps://celebratelifestyle.in/wp-admin/theme-editor.php?file=style.css&theme=hello-elementor-child
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.2.1.1736092270
Updated: 2025-01-05 21:21:10
*/
/* Custom Child Theme Styles */


/* Hide reset button in product variations (moved from functions.php) */
.variations .reset_variations {
    display: none !important;
}

/* Hide .install-app on Checkout */
body.woocommerce-checkout .install-app {
    display: none !important;
}

/* ================== HEADER SCROLL EFFECT ================== */
#header-container {
    z-index: 9999;
}

/* Icon container: Always visible */
.icon-container {
    width: 100%;
}

/* Heading container: Always visible */
.heading-container-class {
    width: 100%;
}

/* Menu container: Initially hidden above */
.menuhopin {
    position: absolute; /* Positioned over icon-container */
    width: 100%;
    top: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
}

/* When scrolled, slide down the menu over icon-container */
.menuhopin.headershow {
    transform: translateY(0);
}

/* WooCommerce Attributes Table inside Elementor DropBox – Clean Blue Theme */
.woocommerce table.shop_attributes {
    width: 100% !important;
    border-collapse: collapse;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: 1px solid #D2E3FC;         /* Outer border */
    border-radius: 10px;
    overflow: hidden;
}

/* Attribute cells – full inner borders */
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    padding: 5px 5px;
    text-align: center;
    vertical-align: middle;
    font-family: inherit;
    font-size: inherit;
    color: #1a1a1a;
    border: 1px solid #D2E3FC;         /* Inner borders */
    background-color: transparent;
}

/* Table header cells */
.woocommerce table.shop_attributes th {
    font-weight: 600;
    background-color: #E8F0FE;         /* Unified soft blue */
}

/* Hover feedback row */
.woocommerce table.shop_attributes tr:hover td {
    background-color: #E8F0FE !important; /* Blue hover */
    transition: background 0.3s ease;
}

/* Remove wrapper margin/padding if Elementor adds any */
.woocommerce div.product .woocommerce-product-attributes {
    margin: 0 !important;
    padding: 0 !important;
}

/* Mobile responsiveness */
@media screen and (max-width: 600px) {
    .woocommerce table.shop_attributes th,/* ✅ Force desktop to use tablet layout */
body {
  max-width: 1024px !important; /* Match Elementor tablet breakpoint */
  margin: 0 auto !important;
  overflow-x: hidden;
}
    .woocommerce table.shop_attributes td {
        padding: 6px 10px;
        font-size: 14px;
    }
}

/* Hide bottom header menu on checkout page */
body.woocommerce-checkout .product-sticky-bottom-menu {
  display: none !important;
}

/* Hide Footer on checkout page */
body.woocommerce-checkout #elementor-footer {
  display: none !important;
}



/* 2-line clamp control */
.gi-clamped-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000 !important; /* force black */
}

/* Remove weird theme transforms */
.woocommerce-loop-product__title a,
.woocommerce-loop-product__title a span {
    color: #000 !important;
}

/* Remove the default triangle marker on summary */
.gi-titlebox summary::-webkit-details-marker { display: none; }
.gi-titlebox summary::marker { content: ""; }

/* Closed: 2-line clamp + ellipsis; only force color to black */
.single-product .gi-titlebox > .product-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    list-style: none;          /* neutralize summary styling */
    outline: none;
    margin: 0;
    padding: 0;
}

/* Open: expand fully (remove clamp) */
.single-product .gi-titlebox[open] > .product-title {
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
}

/* Force product-loop title (#pheading) into 1 line */
#pheading {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}