/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Template: twentytwentyfive
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Tags: one-column,custom-colors,custom-menu,custom-logo,editor-style,featured-images,full-site-editing,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,wide-blocks,block-styles,style-variations,accessibility-ready,blog,portfolio,news
Version: 1.3.1759309987
Updated: 2025-10-01 09:13:07

*/

a {
    text-decoration: none;
    transition:0.3s;
}
a:hover {
    text-decoration: none;
}
a:focus{
    outline:0px;
    border:0px;
}
/* Header */
input#wp-block-search__input-2 {
    padding: 0px 10px;
}
.wp-block-navigation__responsive-container-content ul li a:hover,
.current-menu-item a{
    color: var(--wp--preset--color--orange-600) !important;
}
/*  End Header */

/*  Button  */
.is-style-fill .wp-element-button:hover,
.is-style-outline .wp-element-button:hover{
    background-color: var(--wp--preset--color--slate-800);
    color: #fff;
}
/*  Button */

h1.gredient-text strong {
    background-image: linear-gradient(to right, #2563eb, #f97316 );
    background-clip: text;
    background-clip: text;
    color: transparent;
	font-weight: 700;
}

button.wp-block-search__button.has-base-font-size.has-icon.wp-element-button {
    padding: 3px;
}
button.wp-block-search__button.has-base-font-size.has-icon.wp-element-button:focus{
    outline:0px
}

/*  Shop By Category */
.single-cat-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Overlay */
.single-cat-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: 0.3s;
    border-radius: 12px;
    z-index: 0; /* put behind content */
}

/* Image */
.single-cat-item img {
    transition: 0.3s;
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: -1; /* ensures image sits below overlay */
}

/* Hover effects */
.single-cat-item:hover img {
    transform: scale(1.2);
}
.single-cat-item:hover::after {
    background: #f973165e; /* dark overlay */
}

/* Make sure text stays on top */
.single-cat-item .wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
}
/* End Shop By Category */