/* 
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 */

html, body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

.productSearch input {
    padding-left: 20px !important;
}

/* Footer company menu - text color */
.company a, .help a, .faq a {
    color: #54595F; /* normal color */
}

.company ul, .help ul, .faq ul {
	list-style: none;
	padding: 0;
	margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* change spacing here */
}


/* Hover color */
.company a:hover,
.help a:hover,
.faq a:hover {
    color: #000000;
}

.copyR {
    border-top: 1px solid #e0e0e0;
}


/* underline */
.headerNav a::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 0; /* space below text */
    width: 0;
    height: 2px; /* line thickness */
    background-color: #7A7A7A !important;
    transition: width 0.3s ease;
}

/* hover effect */
.headerNav a:hover::after {
    width: 80%;
}

.headerNav .sub-menu a::after {
    display: none !important;
}

.headerNav .sub-menu {
	border: none;
    background-color: #000000;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

/* Remove the line between submenu items */
/* .sub-menu li {
    border-bottom: none !important;
} */
/* Container that hides the overflow *//* Container that hides the overflow */
 
.brandloop {
    overflow: hidden;
   
}

/* The movement logic */
.brandloop .wp-block-column, 
.brandloop > div {
    display: inline-block;
    flex: 0 0 20%; /* Keeps 5 items visible at once */
    animation: marquee 5s linear infinite;
}

/* The animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Optional: Pause on hover so people can see the logos */
.brandloop:hover div {
    animation-play-state: paused;
}

.hero-text {
    display: inline-block; /* Required for transform to work */
    transform: scaleX(1.25); /* 1.0 is normal, 1.5 is 50% wider */
    transform-origin: left; /* Keeps the text aligned to the left while stretching */
}

.my-tees-grid {
    background-color: #f9f9f9; /* Light grey background */
    padding: 20px;
    border-radius: 10px;
}

.my-tees-grid .woocommerce-loop-product__title {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.my-tees-grid .button {
    background-color: #ff5722 !important; /* Bold orange */
    color: white !important;
    border-radius: 0px !important; /* Square button */
    font-weight: bold;
}

.my-tees-grid .button:hover {
    background-color: #e64a19 !important; /* Darker orange on hover */
}
.my-tees-grid img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.my-tees-grid li.product:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}
