/*
Theme Name: AHB Store
Theme URI: https://generatepress.com
Description: Child theme for GeneratePress
Author: Ahmed Raza
Author URI: https://yourwebsite.com
Template: generatepress
Version: 1.0.0
Text Domain: generatepress-child
*/

/* Optional: Add your custom CSS below */

.site-header .inside-header { padding: 10px 20px; }
body .search-container ul {margin: 0;}
body .search-container .wp-block-search__inside-wrapper{height: 40px;}
body .search-container .wp-block-search__inside-wrapper button{display: flex; align-items: center; color: #FFF;}
body .search-container .search-bar{position: absolute; left: 050%; transform: translateX(-50%);}
body .announcement-bar {animation: shimmer 3s linear infinite; background: linear-gradient(90deg, #232f3e 0%, #0c6ca2 50%, #232f3e 100%); background-size: 200% auto;}

body .woocommerce ul.products li.product{margin-bottom: 50px;}


/* Product Card - CSS STYLES */
body .woocommerce ul.products{display: flex;}
body .woocommerce ul.products li.product{background: #FFF; border-radius: 12px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid #f0f0f0; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); overflow: hidden;}
body .woocommerce ul.products li.product:hover{transform: translateY(-8px); box-shadow: 0 12px 28px rgba(0, 168, 232, 0.15); border-color: #e8f4f8;}
body .woocommerce ul.products li.product .button { margin: 20px !important; background: #00a8e8; color: #FFF; border-radius: 8px; letter-spacing: 0.3px; font-weight: 600; font-size: 16px; transition: all 0.3s ease; }
body .woocommerce ul.products li.product .button:hover{transition: all 0.3s ease; background: #0091c5; }
body .woocommerce ul.products li.product .woocommerce-loop-product__title { padding-left: 20px !important; padding-right: 20px !important; color: #1a2332; font-size: 18px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;}
body .woocommerce ul.products li.product .price{color: #00a8e8; font-size: 18px;}
body .inside-wc-product-image{width: 100%; height: 270px; overflow: hidden;}
.woocommerce ul.products li.product a img{height: 100%; object-fit: cover; object-position: center;}


/* CATEGORIES SECTION - CSS STYLES */
        .ahb-categories-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
        }

        .ahb-categories-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .ahb-categories-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .ahb-categories-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .ahb-categories-header p {
            font-size: 16px;
            color: #666;
            font-weight: 400;
        }

        .ahb-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 17px;
        }

        .ahb-category-card {
            background: white;
            border-radius: 12px;
            padding: 30px 16px;
            text-align: center;
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .ahb-category-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
            border-color: #00a8e8;
        }

        .ahb-category-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .ahb-category-icon-1 { background: #ffedd5; }
        .ahb-category-icon-2 { background: #dbeafe; }
        .ahb-category-icon-3 { background: #fce7f3; }
        .ahb-category-icon-4 { background: #ccfbf1; }
        .ahb-category-icon-5 { background: #fef9c3; }
        .ahb-category-icon-6 { background: #e0e7ff; }

        .ahb-category-card h3 {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .ahb-category-card p {
            font-size: 14px;
            color: #999;
            margin-bottom: 0;
        }
        
        
        
        
/* MEGA SALE SECTION - CSS STYLES */
        .ahb-mega-sale-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #1a2332 0%, #243445 100%);
            position: relative;
            overflow: hidden;
        }

        .ahb-mega-sale-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .ahb-sale-content h3 {
            font-size: 14px;
            color: #00a8e8;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ahb-sale-content h2 {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .ahb-sale-content p {
            font-size: 16px;
            color: #ccc;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .ahb-sale-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .ahb-sale-btn {
            padding: 14px 28px;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .ahb-sale-btn-primary {
            background: #00a8e8;
            color: white;
        }

        .ahb-sale-btn-primary:hover {
            background: #0090c5;
            transform: translateY(-2px);
        }

        .ahb-sale-btn-secondary {
            background: transparent;
            color: white;
            border-color: white;
        }

        .ahb-sale-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .ahb-sale-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
        }

        .ahb-sale-circle {
            position: relative;
            width: 350px;
            height: 350px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ahb-sale-circle-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(0, 168, 232, 0.3), rgba(0, 168, 232, 0.1));
            border: 2px solid rgba(0, 168, 232, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ahb-sale-circle-inner {
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 40%, #00a8e8, #0080b8);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            z-index: 2;
        }

        .ahb-sale-percent {
            font-size: 72px;
            font-weight: 700;
            color: white;
            line-height: 1;
        }

        .ahb-sale-off {
            font-size: 32px;
            font-weight: 600;
            color: white;
            margin-top: 8px;
        }

        @media (max-width: 768px) {
            .ahb-mega-sale-container {
                grid-template-columns: 1fr;
            }

            .ahb-sale-content h2 {
                font-size: 32px;
            }

            .ahb-sale-circle {
                width: 250px;
                height: 250px;
            }

            .ahb-sale-circle-inner {
                width: 180px;
                height: 180px;
            }

            .ahb-sale-percent {
                font-size: 56px;
            }

            .ahb-sale-off {
                font-size: 24px;
            }
        }
        
        
        
* FEATURES SECTION - CSS STYLES */
        .ahb-features-section {
            padding: 60px 20px;
            background: white;
        }

        .ahb-features-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 0 30px;
        }

        .ahb-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .ahb-feature-card {
            text-align: center;
        }

        .ahb-feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #00a8eb1a;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
        }

        .ahb-feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .ahb-feature-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .ahb-categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ahb-features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .ahb-categories-header h2 {
                font-size: 28px;
            }
        }
        
        
/* FOOTER SECTION - CSS STYLES */
        .ahb-footer-section {
            background: linear-gradient(135deg, #1a2332 0%, #243445 100%);
            color: #ccc;
            padding: 60px 20px 0;
        }

        .ahb-footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .ahb-footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .ahb-footer-section a{color: #e5e7ebd9;}
        .ahb-footer-section a:hover{color: #00a8e8;}
        .ahb-footer-section a.ahb-footer-social-link:hover{color: #FFF;}

        .ahb-footer-column {
            display: flex;
            flex-direction: column;
        }

        .ahb-footer-logo {
            width: max-content;
            height: auto;
            overflow: hidden;
            padding: 5px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-weight: 700;
            color: #00a8e8;
            font-size: 24px;
            border-radius: 50%;
    object-fit: contain;
    height: 120px;
    width: 120px;
    padding: 10px;
        }
        
        .ahb-footer-logo img{
            width: 140px;
        }

        .ahb-footer-description {
            font-size: 14px;
            line-height: 1.8;
            color: #e5e7ebd9;
            margin-bottom: 20px;
        }

        .ahb-footer-social {
            display: flex;
            gap: 15px;
        }

        .ahb-footer-social-link {
            width: 40px;
            height: 40px;
            background: #363e4d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: white;
        }

        a.ahb-footer-social-link:hover {
            background: #00a8e8;
            border-color: #00a8e8;
            transform: translateY(-2px);
            color: white;
            transition: all 0.3s ease;
        }

        .ahb-footer-column h3 {
            font-size: 18px;
            font-weight: 600;
            color: white;
            margin-bottom: 20px;
        }

        .ahb-footer-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 0;
        }

        .ahb-footer-column ul li {
            font-size: 14px;
            color: #e5e7ebd9;
        }

        .ahb-footer-column ul li a {
            color: #e5e7ebd9;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .ahb-footer-column ul li a:hover {
            color: #00a8e8;
        }

        .ahb-footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #e5e7ebd9;
        }

        .ahb-footer-contact-item span {
            color: #00a8e8;
            font-size: 16px;
            margin-top: 2px;
        }

        .ahb-footer-divider {
            border-top: 1px solid #e5e7eb52;
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .ahb-footer-copyright {
            font-size: 13px;
            color: #e5e7ebd9;
        }

        .ahb-footer-tagline {
            font-size: 13px;
            color: #00a8e8;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .ahb-categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ahb-features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .ahb-categories-header h2 {
                font-size: 28px;
            }

            .ahb-footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .ahb-footer-divider {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }