/*
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://gaffarindia.com/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 */

/* ✅ Truncate product titles and other headings to 2 lines */
.woocommerce-loop-product__title,
.product-page-title,
.post-title,
.product-terms {
    display: -webkit-box;
    -webkit-line-clamp: 2;    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis if the title exceeds 2 lines */
}

/* ✅ Hide reset button in product variations (moved from functions.php) */
.variations .reset_variations {
    display: none !important;
}
/* ✅ Customize product images in product page */
/* Hide product gallery images*/
.woocommerce-product-gallery .flex-control-thumbs  {
    display: none !important;
}

/* Container for the custom gallery dots, placed at the bottom-right */
.custom-gallery-dots {
    position: absolute;
    bottom: 20px;    /* Distance from the bottom */
    right: 30px;     /* Increased distance from the right to move dots further right */
    display: flex;
    gap: 8px;       /* Space between dots */
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;     /* Ensures the dots are above other content */
}

/* Base style for inactive dots */
.custom-gallery-dots .dot {
    width: 6px;                 /* Reduced dot size */
    height: 6px;                /* Reduced dot size */
    background: #2F3133;        /* Base color for inactive dots */
    border-radius: 50%;         /* Circular shape */
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* Smooth transition on hover or activation */
    opacity: 0.7;               /* Slight transparency for inactive dots */
}

/* Active dot style - when the dot is highlighted */
.custom-gallery-dots .dot.active {
    background: #1A73EB;        /* Highlight color for active dot */
    opacity: 1;                 /* Full opacity when active */
    transform: scale(1.4);      /* Slightly larger size for active dot */
    box-shadow: 0 0 10px rgba(8, 101, 254, 0.8); /* Glowing effect */
    animation: pulse 1.5s infinite; /* Pulse effect to create glow animation */
}

/* Pulse animation for the active dot (glowing effect) */
@keyframes pulse {
    0% {
        transform: scale(1.4);
        box-shadow: 0 0 10px rgba(8, 101, 254, 0.8), 0 0 30px rgba(8, 101, 254, 0.8); /* Glowing effect */
    }
    50% {
        transform: scale(1.6);      /* Dot grows in size during pulse */
        box-shadow: 0 0 20px rgba(8, 101, 254, 1), 0 0 50px rgba(8, 101, 254, 0.8); /* Brighter glow */
    }
    100% {
        transform: scale(1.4);
        box-shadow: 0 0 10px rgba(8, 101, 254, 0.8), 0 0 30px rgba(8, 101, 254, 0.8); /* Return to initial glowing state */
    }
}

/* ✅ Hover effect for dots */
.custom-gallery-dots .dot:hover {
    background: #0865FE;          /* Change color on hover */
    opacity: 1;                   /* Full opacity when hovered */
    transform: scale(1.2);        /* Slightly enlarge on hover */
}

/* ✅ 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,
    .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;
}

/* ✅ Force desktop to use tablet layout */
body {
  max-width: 1024px !important; /* Match Elementor tablet breakpoint */
  margin: 0 auto !important;
  overflow-x: hidden;
}
  