/* ============================================
   RESET & BASE STYLES
============================================ */

:root {
    /* Water Drop Color Palette */
    --primary-blue: #0077b6;      /* Deep ocean blue */
    --secondary-blue: #00b4d8;    /* Bright sky blue */
    --aqua-green: #00c9a7;        /* Aqua green */
    --teal: #009688;             /* Teal accent */
    --light-cyan: #e0f7fa;       /* Light cyan background */
    --dark-blue: #005b8f;        /* Dark blue for text */
    
    /* Neutrals */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --black: #212529;
    
    /* Semantic colors */
    --primary: var(--primary-blue);
    --secondary: var(--aqua-green);
    --accent: var(--secondary-blue);
    --background: var(--light-cyan);
    --text-dark: var(--dark-blue);
    --text-light: var(--dark-gray);
    --text-lighter: var(--medium-gray);
    --text-lighterter: var(--light-gray);
    
    /* Gradient combinations */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--aqua-green) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-blue) 0%, var(--teal) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-cyan) 0%, #ffffff 100%);
    
    /* Typography */
	--font-main: 'Gotham Bold', 'Gotham', 'Montserrat', 'Avenir', 'Proxima Nova', sans-serif;
    --font-second-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 1rem;
    
    /* Effects */
    --shadow-sm: 0 2px 10px rgba(0, 119, 182, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 180, 216, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 201, 167, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
	margin: 0px !important; 
}

p, li {
    line-height: 1.7;
}

/* ============================================
   PARENT THEME CUSTOMIZATION
============================================ */
#ast-scroll-top {
    background-color: var(--secondary-blue) !important;
}

/* ============================================
   LAYOUT & CONTAINER
============================================ */
.bgh-home {
    display: grid;
    grid-template-rows: auto;
}

.bgh-content-marginer, 
.content-area {
    margin: 8rem 2rem !important;
    width: 95% !important;
}

.bgh-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================================
   LOGIN & REGISTRATION
============================================ */
#customer_login{
	display: flex;
    flex-direction: column;
    align-items: center;
}

.switch-to-register a,
.switch-to-login a {
}
.switch-to-register a:hover,
.switch-to-login a:hover {
}

/* ============================================
   CATEGORIES IN SHOP PAGE
============================================ */

.shop-categories-display {
	margin-bottom: 30px;
	clear: both;
}
.shop-categories-display h2 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 2em;
}
.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	justify-content: center;
}
.category-item {
	text-align: center;
	border: 1px solid #eee;
	padding: 15px;
	background-color: #fff;
	transition: transform 0.2s ease-in-out;
	border-radius: 5px;
}
.category-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.category-item img {
	max-width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 3px;
	margin-bottom: 10px;
}
.category-item h3 {
	margin: 0;
	font-size: 1.1em;
	color: #333;
}
.category-item a {
	text-decoration: none;
}

/* ============================================
   CHECKOUT
============================================ */

.custom-thankyou-buttons .button {
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
	margin-bottom: 10px;
}
.custom-thankyou-buttons .button-primary {
	background-color: #0073aa;
	color: white;
	border: none;
}
.custom-thankyou-buttons .button-secondary {
	background-color: #e0e0e0;
	color: #333;
	border: 1px solid #ccc;
}
.custom-thankyou-buttons .button:hover {
	opacity: 0.9;
}

/* Style for the loading overlay */
#captureOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 20px;
	text-align: center;
	flex-direction: column; /* Stack text and image vertically */
}
#captureOverlay img {
	width: 50px; /* Adjust size as needed */
	height: 50px;
	margin-top: 15px;
	/* You might want to add a CSS animation for the loading spinner */
}


/* ============================================
   WooCommerce Base
============================================ */

/* --- Styling for Breadcrumbs --- */
.ast-woocommerce-container .woocommerce-breadcrumb {
    font-size: 0.9em; 
    color: var(--dark-gray); 
    margin-bottom: 15px; 
    padding: 10px 0; 
    border-bottom: 1px solid var(--light-gray); 
    display: block; 
    text-align: left; 
}

.ast-woocommerce-container .woocommerce-breadcrumb a {
    color: var(--primary); 
    text-decoration: none; 
    transition: color 0.2s ease-in-out; 
}

.ast-woocommerce-container .woocommerce-breadcrumb a:hover {
    color: #0056b3; 
    text-decoration: underline; 
}

.ast-woocommerce-container .woocommerce-breadcrumb::before {
    font-family: var(--font-main); 
    font-weight: 900; 
    margin-right: 8px;
    font-size: 1em;
    vertical-align: middle;
    color: #aaa; 
}

/* --- Styling for Shop Title Header --- */
.ast-woocommerce-container .woocommerce-products-header {
    text-align: center; 
    margin-bottom: 30px; 
    padding: 20px 0; 
    background-color: var(--light-gray); 
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
}

.ast-woocommerce-container .woocommerce-products-header__title {
    font-size: 2.8em; 
    color: var(--primary-blue); 
    margin: 0; 
    font-weight: 700; 
    letter-spacing: -1px; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); 
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
    .ast-woocommerce-container .woocommerce-products-header__title {
        font-size: 2.2em; 
    }
    .ast-woocommerce-container .woocommerce-breadcrumb {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .ast-woocommerce-container .woocommerce-products-header__title {
        font-size: 1.8em; 
    }
    .ast-woocommerce-container .woocommerce-breadcrumb {
        font-size: 0.8em;
        text-align: center; 
    }
     .ast-woocommerce-container .woocommerce-breadcrumb::before {
        display: none; 
    }
}

/* --- Additional styling for the categories section if needed --- */
/* این استایل‌ها را با استایل‌های فعلی .shop-categories-display خودتان ادغام کنید */
.ast-woocommerce-container #shop-categories-display .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); /* کمی کوچکتر برای جا دادن بیشتر */
    gap: 25px; /* فاصله بیشتر بین آیتم‌ها */
    padding: 10px;
}

.ast-woocommerce-container #shop-categories-display .category-item {
    background-color: #ffffff; /* پس‌زمینه سفید */
    border: 1px solid #e0e0e0; /* حاشیه کمی تیره‌تر */
    border-radius: 10px; /* گوشه‌های گرد بیشتر */
    padding: 20px 15px; /* فضای داخلی بیشتر */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* انیمیشن نرم‌تر */
    display: flex; /* استفاده از flexbox برای تراز عمودی */
    flex-direction: column;
    justify-content: space-between; /* پخش کردن محتوا */
    align-items: center; /* وسط‌چین کردن افقی */
}

.ast-woocommerce-container #shop-categories-display .category-item:hover {
    transform: translateY(-8px); /* حرکت بیشتر به بالا */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* سایه قوی‌تر */
}

.ast-woocommerce-container #shop-categories-display .category-item img {
    max-width: 100%;
    height: 140px; /* ارتفاع ثابت برای تصاویر */
    object-fit: cover; /* پوشش ناحیه با حفظ نسبت */
    border-radius: 5px; /* گوشه‌های گرد برای تصاویر */
    margin-bottom: 15px; /* فاصله بیشتر از متن */
}

.ast-woocommerce-container #shop-categories-display .category-item h3 {
    font-size: 1.2em; /* اندازه فونت بزرگتر برای نام دسته */
    color: #444; /* رنگ متن کمی تیره‌تر */
    margin: 0;
    font-weight: 600; /* وزن فونت نیمه‌پررنگ */
}

/* برای اطمینان از اینکه آیکون‌ها در موبایل درست دیده شوند */
@media (max-width: 480px) {
    .ast-woocommerce-container #shop-categories-display .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    .ast-woocommerce-container #shop-categories-display .category-item img {
        height: 120px;
    }
    .ast-woocommerce-container #shop-categories-display .category-item h3 {
        font-size: 1em;
    }
}


/* ============================================
   HEADER STYLES (matching golime.com)
============================================ */
.bgh-header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    transition: all 0.3s ease;
    border-radius: 50px;
    width: 90%;
    max-width: 1200px;
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bgh-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.8) 0%, 
        rgba(200,200,200,0.4) 50%, 
        rgba(255,255,255,0.8) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: border-radius 0.3s ease;
}

.bgh-header .bgh-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    flex-direction: row;
}

/* ============================================
   LOGO STYLES
============================================ */
.bgh-logo {
    display: flex;
    align-items: center;
}

.bgh-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 0.6rem 1.2rem;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.bgh-logo .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    margin: 0;
}

.bgh-logo .custom-logo {
    max-height: 50px;
    width: auto;
    height: auto;
    max-width: 200px;
    transition: all 0.3s ease;
}

.bgh-logo a:hover .custom-logo {
    transform: scale(1.25);
}

.bgh-logo .custom-logo.dark-logo {
    filter: brightness(0.9);
}

/* ============================================
   MENU STYLES
============================================ */
.bgh-main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.bgh-nav-left,
.bgh-nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.bgh-nav-item {
    position: relative;
}

.bgh-nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.bgh-nav-link:hover {
    color: var(--primary-blue);
}

.bgh-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.bgh-nav-link:hover::after {
    width: 100%;
}

/* Get Started Button */
.bgh-get-started-wrapper {
    position: relative;
}

.bgh-get-started-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bgh-get-started-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.bgh-dropdown-arrow {
    transition: transform 0.3s ease;
}

.bgh-get-started-btn.active .bgh-dropdown-arrow {
    transform: rotate(180deg);
}

/* Get Started Dropdown */
.bgh-get-started-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 500px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    overflow: hidden;
}

.bgh-get-started-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: dropdownAppear 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bgh-dropdown-content {
    padding: 1.5rem;
}

.bgh-dropdown-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--medium-gray);
}

/* Categories Grid */
.bgh-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bgh-category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.bgh-category-item:hover {
    background: var(--medium-gray);
    transform: translateY(-2px);
}

.bgh-category-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.bgh-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bgh-category-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bgh-category-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.bgh-category-count {
    font-size: 0.75rem;
    color: var(--text-light);
}

.bgh-no-categories {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

/* Dropdown Footer */
.bgh-dropdown-footer {
    border-top: 1px solid var(--medium-gray);
    padding-top: 1.5rem;
}

.bgh-view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

.bgh-view-all-btn:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   RIGHT SIDE ICONS
============================================ */

/* Right side icons container */
.bgh-nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icons wrapper that will slide */
.bgh-nav-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* Individual icon wrapper */
.bgh-nav-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base styles for all icon buttons/links */
.bgh-search-btn,
.bgh-contact-btn,
.bgh-cart-btn,
.bgh-account-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
}

/* Hover effects for all icons */
.bgh-search-btn:hover,
.bgh-contact-btn:hover,
.bgh-cart-btn:hover,
.bgh-account-btn:hover {
    color: var(--primary-blue);
}

/* Icon SVG transitions */
.bgh-search-icon,
.bgh-contact-icon,
.bgh-cart-icon,
.bgh-account-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Scale effect on hover for all icons */
.bgh-search-btn:hover .bgh-search-icon,
.bgh-contact-btn:hover .bgh-contact-icon,
.bgh-cart-btn:hover .bgh-cart-icon,
.bgh-account-btn:hover .bgh-account-icon {
    transform: scale(1.1);
}

/* Cart count badge */
.bgh-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

/* Tooltip text for cart and account */
.bgh-cart-text,
.bgh-account-text {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-blue);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Show tooltip on hover */
.bgh-cart-btn:hover .bgh-cart-text,
.bgh-account-btn:hover .bgh-account-text {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

/* Account wrapper specific */
.bgh-account-wrapper {
    position: relative;
}

/* ============================================
   SEARCH FUNCTIONALITY (Hover to show search box)
============================================ */
.bgh-search-wrapper {
    position: relative;
}

/* Search box dropdown */
.bgh-search-box {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
    opacity: 0;
    visibility: hidden;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    margin-right: 0.5rem;
	min-width: 240px;
}
/*
	position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    padding: 1rem;
	*/


.bgh-search-wrapper:hover .bgh-search-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

.bgh-search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bgh-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.bgh-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.bgh-search-submit {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.50rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.bgh-search-submit:hover {
    background: var(--gradient-secondary);
}

/* ============================================
   CONTACT FUNCTIONALITY (Hover to show phone number)
============================================ */
.bgh-contact-wrapper {
    position: relative;
}

/* Phone number reveal */
.bgh-phone-reveal {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
    opacity: 0;
    visibility: hidden;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    margin-right: 0.5rem;
}

.bgh-contact-wrapper:hover .bgh-phone-reveal {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* When contact is hovered, slide search and cart icons to the left */
/* This targets the entire icons wrapper and moves everything except the contact icon */
.bgh-contact-wrapper:hover {
    position: relative;
    z-index: 2;
}

/* Move all icons in the wrapper when contact is hovered */
.bgh-nav-icons-wrapper:hover .bgh-contact-wrapper:hover ~ .bgh-nav-icon,
.bgh-contact-wrapper:hover ~ .bgh-nav-icon {
    transform: translateX(-120px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Also move the search icon when it comes before contact */
.bgh-nav-icons-wrapper .bgh-search-wrapper:has(~ .bgh-contact-wrapper:hover) {
    transform: translateX(-120px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Move cart icon when it's between search and contact */
.bgh-nav-icons-wrapper .bgh-nav-icon:has(~ .bgh-contact-wrapper:hover) {
    transform: translateX(-120px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Alternative: Move the entire wrapper except contact icon */
.bgh-contact-wrapper:hover ~ *,
.bgh-nav-icons-wrapper:hover .bgh-contact-wrapper:hover ~ * {
    transform: translateX(-120px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bgh-phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    background: var(--light-gray);
}

.bgh-phone-link:hover {
    background: var(--medium-gray);
    color: var(--primary);
}

.bgh-phone-icon {
    flex-shrink: 0;
}

.bgh-phone-number {
    white-space: nowrap;
}






/* Site Blur Overlay for Get Started */
.bgh-site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.4s ease;
    pointer-events: none;
}

.bgh-site-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* Content Wrapper */
.bgh-content-wrapper {
    transition: filter 0.4s ease;
    position: relative;
    z-index: 1;
	/*display: flex;*/
    /*align-items: flex-start;*/
}

.bgh-content-wrapper.blurred {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

/* Header Overlay for Get Started */
.bgh-header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    transition: all 0.4s ease;
}

.bgh-header-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Dark Mode when Get Started is Open */
.bgh-header.get-started-active {
    background: var(--primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
}

.bgh-header.get-started-active .bgh-nav-link,
.bgh-header.get-started-active .bgh-search-btn,
.bgh-header.get-started-active .bgh-cart-btn,
.bgh-header.get-started-active .bgh-account-btn,
.bgh-header.get-started-active .bgh-contact-btn,
.bgh-header.get-started-active .bgh-get-started-btn {
    color: var(--white);
}

.bgh-header.get-started-active .bgh-get-started-btn {
    background: var(--white);
    color: var(--primary-blue);
}

.bgh-header.get-started-active .bgh-get-started-btn:hover {
    background: var(--light-gray);
}

/* Animation for dropdown */
@keyframes dropdownAppear {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   SITE HEAD BAR SECTION
============================================ */
.bgh-head-bar {
    align-items: center;
    background: var(--primary);
    height: var(--spacing-md);
    overflow: hidden;
    max-height: fit-content;
}

.bgh-head-bar h3 {
    color: #dcff00;
    font-size: medium;
    text-align: center;
    margin-bottom: 0;
    padding: 2px 0;
}

/* ============================================
   HERO SECTION
============================================ */
.bgh-hero {
    min-height: 65vh;
    display: flex;
    align-items: flex-start;
	flex-direction: column;
    justify-content: center;
    background: var(--background);
    position: relative;
    overflow: hidden;
    background-color: var(--primary-blue);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: local;
    background-origin: border-box;
    background-clip: border-box;
	
	padding: 0 2%;
	
	width: 100vw !important;
    background-size: 100% auto, 100%, 10px 10px !important;
}

.bgh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.05"><path d="M0 0h1200v800H0z" fill="none"/><path d="M600 200l300 400H300z" fill="%230077b6"/></svg>');*/
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
    /*background-size: cover;*/
    background-size: 30px 30px;
    /*opacity: 0.1;*/
    z-index: 0;
}

.bgh-hero-title-wrapper {
	display: flex;
    flex-direction: row;
	align-items: center;
}

.bgh-hero-logo {
	max-width: 70px;
}

.bgh-hero-title {
	font-family: 'Gotham Bold', 'Gotham', 'Montserrat', 'Avenir', 'Proxima Nova', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 !important;
    color: var(--primary);
    max-width: 800px;
	-webkit-text-stroke: 1px var(--secondary); /* Width and color */
    text-stroke: 1px var(--secondary); /* Standard syntax */
}

.bgh-hero-subtitle {
	font-family: 'Gotham Bold', 'Gotham', 'Montserrat', 'Avenir', 'Proxima Nova', sans-serif;
    font-size: 1.25rem;
    color: var(--white);
    max-width: 600px;
    margin-bottom: var(--spacing-lg);
	
	padding: 10px 15px;
	
    background: linear-gradient(to right, color-mix(in srgb, var(--primary) 70%, transparent), rgba(0, 0, 0, 0));
	
	border-radius: 4px;  /* Optional: adds subtle rounded corners */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);  /* Adds depth and improves contrast */
}



.bgh-hero .bgh-container {
    position: relative;
    z-index: 1;
    color: var(--white);
    width: 100%;
	padding: 0 calc(var(--container-padding) + 4rem);
}

.bgh-hero-button {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    position: relative;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
}

.bgh-hero-button:hover {
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   PRODUCTS SECTION
============================================ */
.bgh-products {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.bgh-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: var(--spacing-xl);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bgh-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    list-style: none;
    padding: 0;
}

.bgh-product-item {
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.bgh-product-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--background);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bgh-product-item:hover {
    /*transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
    border-color: var(--accent);
}

.bgh-product-item:hover::before {
    opacity: 1;
}

.bgh-product-item .woocommerce-loop-product__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.bgh-product-item .woocommerce-loop-product__title {
    font-size: 1rem;
    padding: 1rem;
    margin: 0;
    color: var(--text-dark);
	text-align: center;
}

.bgh-product-item .astra-shop-summary-wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bgh-product-item .astra-shop-summary-wrap .price{
    padding: 0;
}

.bgh-product-item .astra-shop-summary-wrap .add_to_cart_button{
    display: none;
}


.bgh-product-item .price {
    display: block;
    padding: 0 1rem 1rem;
    color: var(--accent);
    font-weight: 600;
}

.bgh-product-item .add_to_cart_button {
    /*display: block;
    margin: 0 1rem 1rem;
    padding: 0.75rem;
    background: var(--primary);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;*/
}

.bgh-product-item .add_to_cart_button:hover {
    /*background: var(--accent);*/
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.bgh-product-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ============================================
   FEATURED PRODUCTS
============================================ */

.wps-product-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-slide{
    height: auto;
	display: flex;
}

.sp-wps-product-details {
    display: flex;
    min-height: 215px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.sp-wps-product-details-inner{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ============================================
   COMMERCIALS SECTION
============================================ */
.bgh-commercials {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.bgh-commercials .bgh-section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.commercial-banner {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.commercial-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.commercial-link {
    display: block;
    text-decoration: none;
}

.commercial-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.commercial-banner:hover .commercial-image {
    transform: scale(1.02);
}

/* Optional overlay effect */
.commercial-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,119,182,0.1) 0%, rgba(0,201,167,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.commercial-banner:hover::after {
    opacity: 1;
}

/* ============================================
   LATEST POSTS SECTION (Before Video)
============================================ */
.bgh-latest-posts {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.bgh-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.bgh-post-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bgh-post-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.bgh-post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.bgh-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bgh-post-item:hover .bgh-post-thumbnail img {
    transform: scale(1.05);
}

.bgh-post-content {
    padding: 1.5rem;
}

.bgh-post-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.bgh-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bgh-post-title a:hover {
    color: var(--primary-blue);
}

.bgh-post-meta {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.bgh-post-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bgh-post-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.bgh-post-read-more:hover {
    gap: 0.75rem;
}

/* ============================================
   VIDEO SECTION
============================================ */
.bgh-video {
    padding: var(--spacing-xl) 0;
    background: repeating-linear-gradient(315deg, color-mix(in srgb, var(--primary) 10%, transparent) 7px, color-mix(in srgb, var(--primary) 10%, transparent) 8px, color-mix(in srgb, var(--background) 10%, transparent) 0px, color-mix(in srgb, var(--background) 10%, transparent) 40px);
    position: relative;
}

.bgh-video .bgh-container {
    position: relative;
    z-index: 2;
}

.bgh-video-wrapper {
    position: relative;
    /*border-radius: 12px;*/
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 0; /* Remove top margin since text will be over video */
}

/* Video text container - will be positioned over video */
.bgh-video-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none; /* Allow clicks to pass through to video */
}

/* Video section title - positioned on left side */
.bgh-video .bgh-section-title {
    text-align: left;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    max-width: 50%; /* Limit width to stay on left side */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
    pointer-events: auto; /* Make text selectable */
}

/* Video description text */
.bgh-video-description {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 50%; /* Limit width to stay on left side */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

/* Video overlay for better text readability */
.bgh-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    /*border-radius: 12px;*/
}

.bgh-video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    /*border-radius: 12px;*/
    position: relative;
    z-index: 0;
}

/* Video controls styling */
.bgh-video-wrapper video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.bgh-video-wrapper video::-webkit-media-controls-play-button,
.bgh-video-wrapper video::-webkit-media-controls-mute-button {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Call to action button on video */
.bgh-video-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: var(--spacing-sm);
    position: relative;
    z-index: 3;
    pointer-events: auto;
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.bgh-video-button:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

/* ============================================
   SIMPLIFIED TESTIMONIALS SECTION - TOUCH ENABLED
============================================ */
.bgh-testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
    position: relative;
}

.bgh-testimonials .bgh-section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Slider Container */
.testimonials-simple-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden; /* Important for touch slider */
    padding: 0 20px;
}

/* Slides Container - Touch enabled */
.testimonials-slides-container {
    display: flex;
    transition: transform 0.3s ease-out;
    cursor: grab;
    touch-action: pan-y pinch-zoom; /* Enables touch scrolling */
    user-select: none;
    -webkit-user-select: none;
    width: 100%;
}

.testimonials-slides-container:active {
    cursor: grabbing;
}

/* Individual Slide */
.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    pointer-events: none; /* Prevents interference with drag */
}

.testimonial-slide.active {
    /* Active slide is visible */
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid rgba(0,119,182,0.1);
    pointer-events: auto; /* Re-enable pointer events for content */
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Quote */
.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '\f122';
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: dashicons;
}

/* Name */
.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Star Rating */
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.testimonial-stars .star {
    color: #ddd;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.testimonial-stars .star.filled {
    color: #ffc107;
}

/* Dots Navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 10px 0;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonial-dot:hover {
    background: var(--primary-blue);
    opacity: 0.7;
}

.testimonial-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
    width: 24px;
    border-radius: 12px;
}


@media (hover: none) and (pointer: coarse) {
    .testimonials-slides-container {
        cursor: default;
    }
    
    .testimonial-dot {
        width: 14px;
        height: 14px;
    }
    
    .testimonial-dot.active {
        width: 28px;
    }
}

/* ============================================
   TESTIMONIALS SECTION (Customer Quotes)
============================================ */
/*.bgh-testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.bgh-testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.bgh-testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.bgh-testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px;
}

.bgh-testimonial-content {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.bgh-testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.bgh-testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.bgh-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bgh-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.bgh-testimonial-author-info {
    text-align: left;
}

.bgh-testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.bgh-testimonial-position {
    font-size: 0.85rem;
    color: var(--text-light);
}

.bgh-testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.bgh-star {
    color: #ddd;
}

.bgh-star-filled {
    color: #ffc107;
}*/

/* Slider Navigation */
/*
.bgh-testimonials-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.bgh-testimonials-prev,
.bgh-testimonials-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.bgh-testimonials-prev:hover,
.bgh-testimonials-next:hover {
    background: var(--primary-blue);
    color: var(--white);
}*/

/* Slider Dots */
/*
.bgh-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.bgh-testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bgh-testimonials-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}*/

/* ============================================
   CONTENT SECTION
============================================ */
.bgh-content {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

/* ============================================
   PARTNARES SECTION
============================================ */

.bgh-partners {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.sp-logo-carousel .swiper-wrapper{
	/*cursor: grab;*/
}

.logo-carousel-free .sp-lc-logo img {
    max-height: 76px;
}

/* ============================================
   FOOTER STYLES
============================================ */
.bgh-footer {
    
}

.bgh-footer-parent {
    background: var(--primary) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
    color: var(--white);
    padding: var(--spacing-xl) 0;
    margin-top: auto;
    position: relative;
    background-size: 30px 30px;
}


.bgh-footer .bgh-footer-parent .bgh-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.bgh-footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bgh-footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.bgh-footer-col ul {
    list-style: none;
    padding: 0;
}

.bgh-footer-col li {
    margin-bottom: 0.75rem;
}

.bgh-footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bgh-footer-col a:hover {
    color: var(--accent);
}

/* ============================================
   EMIAL
============================================ */
/* Email link styling */
.bgh-footer-email-link .bgh-footer-tel-link{
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.bgh-footer-email-link:hover .bgh-footer-tel-link:hover{
    color: var(--white);
    border-bottom-color: var(--white);
}

/* Optional: Add email icon */
.bgh-footer-email-link::before{
    content: '✉️';
    margin-right: 5px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Optional: Add email icon */
.bgh-footer-tel-link::before{
    content: '📞';
    margin-right: 5px; 
    font-size: 0.9em;
    opacity: 0.8;
}

/* Alternative: Using dashicon (if you want WordPress icons) */
.bgh-footer-email-link.dashicons-before::before .bgh-footer-tel-link.dashicons-before::before{
    font-family: dashicons;
    content: "\f466";
    margin-right: 5px;
}

/* ============================================
   COPYRIGHT SECTION
============================================ */
.bgh-copyright {
    background: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bgh-copyright-text {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.bgh-copyright-text a {
    color: var(--white);
    text-decoration: none;
}

.bgh-copyright-text a:hover {
    text-decoration: underline;
}

/* ============================================
   TALK TO AN EXPERT LINK
============================================ */
.bgh-product-expert-link {
    margin: 0 1rem 1rem 1rem;
    text-align: center;
}

.bgh-expert-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1.5px solid var(--primary-blue);
    transition: all 0.3s ease;
    width: 100%;
}

.bgh-expert-button:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.bgh-expert-button svg {
    transition: transform 0.3s ease;
}

.bgh-expert-button:hover svg {
    transform: scale(1.1);
}

/* ============================================
   MOBILE MENU TOGGLE
============================================ */
.bgh-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.bgh-mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 5px auto;
    transition: all 0.3s ease;
}

.bgh-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.bgh-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.bgh-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   FORMINATOR FORMS
============================================ */
/*Hide the "Input" fields used for product data passing*/
.forminator-disabled {
	pointer-events: none; /* Prevents clicks */
    background-color: #f5f5f5;
    border-color: #ddd;
    color: #666;
    opacity: 0.8;
}

/* ============================================
   ELEMENTS TRANSITIONS
============================================ */
a, button, .bgh-product-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ============================================
   ABOUT US PAGE - 123 AC INC.
============================================ */

.bgh-about-us {
    padding-top: 80px;
}

/* Hero Section */
.bgh-about-hero {
    background: linear-gradient(122deg, var(--primary) -25%, var(--white) 75%100%);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.bgh-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
    background-size: 30px 30px;
}
/*
.bgh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.bgh-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.bgh-hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}*/

/* Mission Section */
.bgh-mission-section {
    padding: 80px 0;
    background: white;
}

.bgh-mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bgh-section-title {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.bgh-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0077b6, #00c9a7);
    border-radius: 3px;
}

.bgh-mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary);
}

.bgh-mission-text p {
    margin-bottom: 20px;
}

/* Solutions Section */
.bgh-solutions-section {
    padding: 80px 0;
    background: #f8fcff;
}

.bgh-solutions-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.bgh-solutions-header ul{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bgh-solutions-header li{
    text-align: left;
}

.bgh-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.bgh-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.bgh-solution-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,119,182,0.1);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.bgh-solution-card:hover {
    transform: translateY(-10px);
    border-bottom-color: #00c9a7;
    box-shadow: 0 10px 30px rgba(0,119,182,0.15);
}

.bgh-solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0077b6, #00c9a7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgh-solution-icon .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: white;
}

.bgh-solution-icon img {
    max-width: 50px;
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.bgh-solution-title {
    font-size: 1.25rem;
    color: #0077b6;
    margin-bottom: 15px;
    font-weight: 600;
}

.bgh-solution-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

.bgh-solutions-footer {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-style: italic;
    color: #555;
    border-left: 4px solid #0077b6;
}

/* Experience Section */
.bgh-experience-section {
    padding: 80px 0;
    background: white;
}

.bgh-experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bgh-experience-content {
    padding-right: 30px;
}

.bgh-experience-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bgh-values-list {
    margin: 30px 0;
}

.bgh-value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bgh-value-item:last-child {
    border-bottom: none;
}

.bgh-value-item .dashicons {
    color: #00c9a7;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.bgh-experience-footer {
    font-size: 1.1rem;
    color: #0077b6;
    font-weight: 500;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 8px;
    border-left: 4px solid #0077b6;
}

.bgh-experience-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bgh-experience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.bgh-experience-image:hover img {
    transform: scale(1.05);
}

/* Quality Section */
.bgh-quality-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
}

.bgh-quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bgh-quality-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bgh-quality-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease
}

.bgh-quality-image:hover img {
    transform: scale(1.05);
}

.bgh-quality-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.bgh-payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.bgh-payment-badge {
    background: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0077b6;
    border: 1px solid #0077b6;
    transition: all 0.3s ease;
}

.bgh-payment-badge:hover {
    background: #0077b6;
    color: white;
    cursor: default;
}

/* Relationships Section */
.bgh-relationships-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.bgh-relationships-content {
    max-width: 700px;
    margin: 0 auto;
}

.bgh-relationships-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.bgh-quote-block {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.bgh-quote-block .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #0077b6;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.bgh-quote-block p {
    font-size: 1.2rem;
    font-style: italic;
    color: #0077b6;
    margin: 0;
    font-weight: 500;
}

/* CTA Section */
.bgh-cta-section {
    padding: 100px 0;
    background: linear-gradient(0deg, var(--primary) 5%, var(--white) 100%);
    position: relative;
    overflow: hidden;
	max-height: 450px;
}

.bgh-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
    background-size: 30px 30px;
}

.bgh-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.bgh-cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.bgh-cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.bgh-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.bgh-cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.bgh-cta-button.primary {
    background: white;
    color: #0077b6;
}

.bgh-cta-button.primary:hover {
    background: #f0f8ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bgh-cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.bgh-cta-button.secondary:hover {
    background: white;
    color: #0077b6;
    transform: translateY(-3px);
}

.bgh-cta-tagline {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 20px;
}

/* ============================================
   CONTACT US PAGE - 123 AC INC.
============================================ */
.bgh-offline-contact-section { 
    padding: 100px 0;
    background: linear-gradient(0deg, var(--primary) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
	background-color: rebeccapurple;
	max-height: 900px;
}

.bgh-offline-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
    background-size: 30px 30px;
    pointer-events: none;
}

.bgh-offline-contact-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.bgh-offline-contact-header {
    margin-bottom: 50px;
}

.bgh-offline-contact-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bgh-offline-contact-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
	color: var(--primary);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.bgh-offline-contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Cards Grid */
.bgh-offline-contact-grid {
    display: flex;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.bgh-offline-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.3s ease;
    text-align: center;
	max-width: 250px;
    min-height: 315px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bgh-offline-contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.bgh-offline-contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.bgh-offline-contact-card:hover .bgh-offline-contact-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.bgh-offline-contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.bgh-offline-contact-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.bgh-offline-contact-link {
    /*display: inline-block;*/
    /*color: var(--white);*/
    /*font-size: 1.1rem;*/
    /*font-weight: 500;*/
    /*text-decoration: none;*/
    /*padding: 8px 20px;*/
    /*border-radius: 50px;*/
    /*background: rgba(255, 255, 255, 0.15);*/
    /*border: 1px solid rgba(255, 255, 255, 0.2);*/
    /*transition: all 0.3s ease;*/
    /*margin-bottom: 10px;*/
}

.bgh-offline-contact-link:hover {
    /*background: rgba(255, 255, 255, 0.25);*/
    /*border-color: rgba(255, 255, 255, 0.4);*/
    /*transform: translateY(-2px);*/
}

.bgh-offline-contact-address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.bgh-offline-contact-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* CTA Buttons */
.bgh-offline-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.bgh-offline-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.bgh-offline-contact-button.primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.bgh-offline-contact-button.primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bgh-offline-contact-button.primary svg {
    transition: transform 0.3s ease;
}

.bgh-offline-contact-button.primary:hover svg {
    transform: translateX(5px);
}

.bgh-offline-contact-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.bgh-offline-contact-button.secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.bgh-offline-contact-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    color: var(--white);
    margin-top: 20px;
}


/* ============================================
   FOOTER SOCIAL MEDIA ICONS
============================================ */
.bgh-footer-social {
    margin-top: 1.5rem;
}

.bgh-footer-social-title {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bgh-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
	justify-content: center;
}

.bgh-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bgh-social-icon:hover {
    transform: translateY(-3px);
}

.bgh-social-icon svg {
    width: 18px;
    height: 18px;
}

/* Individual platform hover colors */
.bgh-social-facebook:hover {
    background: #1877f2;
}

.bgh-social-twitter:hover {
    background: #1da1f2;
}

.bgh-social-instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}

.bgh-social-linkedin:hover {
    background: #0077b5;
}

.bgh-social-youtube:hover {
    background: #ff0000;
}

.bgh-social-whatsapp:hover {
    background: #25d366;
}

.bgh-social-telegram:hover {
    background: #0088cc;
}


/* ============================================
   FILTER
============================================ */
.awf-togglable-preset-btn {
    background-color: var(--secondary-blue) !important;
}

.noUi-connect {
    background: var(--secondary-blue) !important;
}

.noUi-horizontal .noUi-handle::before {
    background: var(--secondary-blue) !important;
}

.awf-togglable-preset-btn {
	left: 0px !important; 
	right: auto !important;
	bottom: 20px !important;
}

.awf-reset-btn {
	background-color: var(--secondary-blue) !important;
}

/* =======================================================================================================================================================
   RESPONSIVE DESIGN
======================================================================================================================================================= */

/* Tablet Styles (max-width: 1024px) */
@media (max-width: 1024px) {
    .bgh-get-started-dropdown {
        width: 400px;
    }
    
    /* Adjust slide amount for tablet */
    .bgh-contact-wrapper:hover ~ .bgh-nav-icons-wrapper {
        transform: translateX(-100px);
    }
	
	.bgh-video .bgh-section-title,
    .bgh-video-description {
        max-width: 60%;
    }
	
	.bgh-experience-grid,
    .bgh-quality-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bgh-experience-content {
        padding-right: 0;
    }
    
    .bgh-experience-image,
    .bgh-quality-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 840px) {
    .bgh-offline-contact-section  {
        max-height: 1200px;
    }
}



/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
	.bgh-content-marginer, .content-area{
    margin: 7rem 1.5rem !important;
	}
	
    .bgh-head-bar h3 {
        font-size: small;
    }
    
    .bgh-header {
        top: 25px;
        width: 90%;
        border-radius: 40px;
    }
    
    .bgh-header.scrolled {
        top: 0;
        width: 100%;
        border-radius: 0 0 25px 25px;
    }
    
    .bgh-hero .bgh-container {
        padding: 0 calc(var(--container-padding) + 3rem);
    }

    /* Mobile menu toggle */
    .bgh-mobile-menu-toggle {
        display: block;
    }
    
    /* Mobile menu styles */
    .bgh-main-nav {
        position: fixed;
        top: 0;
        left: -105%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        margin: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
	
	.bgh-cart-text,
    .bgh-account-text {
        display: none; /* Hide tooltips on mobile */
    }
    
    .bgh-nav-icons-wrapper {
        gap: 0.5rem; /* Smaller gap on mobile */
    }
    
    .bgh-search-btn,
    .bgh-contact-btn,
    .bgh-cart-btn,
    .bgh-account-btn {
        padding: 0.4rem; /* Smaller padding on mobile */
    }
	
    .bgh-main-nav.active {
        left: 0;
    }
    
    .bgh-nav-left,
    .bgh-nav-right {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    
    .bgh-nav-left {
        order: 2;
        margin-top: 2rem;
    }
    
    .bgh-nav-right {
        order: 1;
        flex-direction: row;
        justify-content: space-around;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid var(--medium-gray);
        margin-bottom: 1.5rem;
        gap: 0;
    }
    
    /* Reset hover effects for mobile */
    .bgh-nav-icons-wrapper {
        transform: none !important;
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }
    
    .bgh-nav-item {
        width: 100%;
    }
    
    .bgh-nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 10px;
        transition: background-color 0.3s ease;
        text-align: center;
    }
    
    .bgh-nav-link:hover {
        background: var(--light-gray);
        color: var(--primary-blue);
    }
    
    /* Get Started button on mobile */
    .bgh-get-started-wrapper {
        width: 100%;
        position: static;
    }
    
    .bgh-get-started-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    /* Get Started dropdown on mobile */
    .bgh-get-started-dropdown {
        position: static !important;
        width: 100% !important;
        margin: 0.5rem 0 1rem 0 !important;
        border-radius: 15px;
        box-shadow: var(--shadow-md) !important;
        border: 1px solid var(--medium-gray);
        max-height: 0;
        overflow: hidden;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: block;
        z-index: 1003;
    }
    
    .bgh-get-started-dropdown.active {
        max-height: 500px !important;
        opacity: 1 !important;
        visibility: visible !important;
        overflow-y: auto;
        margin-bottom: 1.5rem !important;
        padding: 1rem !important;
    }
    
    .bgh-categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile search and phone behavior */
    .bgh-search-box,
    .bgh-phone-reveal {
        position: static !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        box-shadow: none !important;
        border: 1px solid var(--medium-gray) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        padding: 1rem !important;
    }
    
    .bgh-search-box.active,
    .bgh-phone-reveal.active {
        display: block !important;
        margin-bottom: 1rem !important;
    }
    
    /* Hide hover effects on mobile */
    .bgh-search-wrapper:hover .bgh-search-box,
    .bgh-contact-wrapper:hover .bgh-phone-reveal {
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
    }
    
    .bgh-phone-link {
        justify-content: center;
        padding: 1rem;
    }
    
    /* Adjust hero for mobile */
    .bgh-hero {
        min-height: 48vh;
    }
    
    /* Product grid adjustments */
    .bgh-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Section title adjustments */
    .bgh-section-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-lg);
    }
	
	
	.bgh-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Logo adjustments */
    .bgh-logo .custom-logo {
        max-height: 40px;
        max-width: 150px;
    }
    
    .bgh-logo .site-title {
        font-size: 1.2rem;
    }
	
	.bgh-commercials {
        padding: var(--spacing-lg) 0;
    }
    
    .commercial-banner {
        border-radius: 10px;
    }
	
    .bgh-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    
	.bgh-video {
        padding: var(--spacing-lg) 0;
    }
    
    .bgh-video .bgh-section-title,
    .bgh-video-description {
        max-width: 80%;
    }
    
    .bgh-video .bgh-section-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .bgh-video-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .bgh-video-text {
        padding: var(--spacing-md);
    }
    
    .bgh-video-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
	
	/* Make overlay more prominent on mobile for better text readability */
    .bgh-video-wrapper::before {
        background: linear-gradient(90deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(0, 0, 0, 0.5) 70%, 
            rgba(0, 0, 0, 0.2) 100%);
    }
	/*
	.bgh-testimonials-slider {
        padding: 0 20px;
    }
    
    .bgh-testimonial-content {
        padding: 1.5rem;
    }
    
    .bgh-testimonial-quote {
        font-size: 1rem;
    }
    
    .bgh-testimonials-prev,
    .bgh-testimonials-next {
        width: 32px;
        height: 32px;
    }*/
	
	.bgh-testimonials {
        padding: 50px 0;
    }
    
    .testimonials-simple-slider {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .testimonial-quote::before {
        font-size: 2.5rem;
        top: -10px;
        left: -5px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-stars .star {
        font-size: 1.3rem;
    }
    
    .testimonial-dots {
        gap: 10px;
        margin-top: 25px;
    }

	.bgh-expert-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
	
	.bgh-about-hero {
        padding: 60px 0;
    }
    
    .bgh-section-title {
        font-size: 2rem;
    }
    
    .bgh-solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .bgh-cta-buttons {
        flex-direction: column;
    }
    
    .bgh-cta-button {
        width: 100%;
        text-align: center;
    }
	
	.bgh-social-icons {
        gap: 0.6rem;
    }
    
    .bgh-social-icon {
        width: 32px;
        height: 32px;
    }
    
    .bgh-social-icon svg {
        width: 16px;
        height: 16px;
    }
	
	.bgh-offline-contact-section {
        padding: 60px 0;
    }
    
    .bgh-offline-contact-title {
        font-size: 2rem;
    }
    
    .bgh-offline-contact-subtitle {
        font-size: 1.1rem;
    }
    
    .bgh-offline-contact-grid {
        gap: 20px;
        margin: 30px 0;
    }
    
    .bgh-offline-contact-card {
        padding: 25px 20px;
    }
    
    .bgh-offline-contact-card-title {
        font-size: 1.2rem;
    }
    
    .bgh-offline-contact-link {
        font-size: 1rem;
        padding: 6px 15px;
    }
    
    .bgh-offline-contact-buttons {
        gap: 15px;
    }
    
    .bgh-offline-contact-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
	
	.bgh-cta-title{
		font-size: 1.5rem;
	}
	
	.bgh-cta-text {
    font-size: 0.9rem;
	}
	
	.bgh-offline-contact-section { 
		max-height: 1110px;
	}
}

@media (max-width: 590px) {
    .bgh-offline-contact-section  {
        max-height: 1470px;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
	.bgh-content-marginer, .content-area{
	    margin: 6rem 1rem !important;
	}
	
    .bgh-head-bar h3 {
        font-size: x-small;
    }
    
    .bgh-header {
        top: 20px;
        border-radius: 30px;
    }
    
    .bgh-header.scrolled {
        border-radius: 0 0 20px 20px;
    }
    
    .bgh-logo .custom-logo {
        max-height: 35px;
        max-width: 130px;
    }
    
    .bgh-logo a {
        padding: 0.4rem 0.8rem;
    }
    
    .bgh-hero {
        min-height: 38vh;
    }
    
    .bgh-hero .bgh-container {
        padding: 0 calc(var(--container-padding) + 2rem);
    }
	
	.bgh-hero-logo {
		display: none;
	}
    
    .bgh-hero-title {
        font-size: 1.8rem;
    }
    
    .bgh-hero-subtitle {
        font-size: 0.75rem;
    }
    
    .bgh-product-grid {
        grid-template-columns: 1fr;
    }
    
    .bgh-head-bar {
        height: auto;
        min-height: var(--spacing-sm);
    }
    
    .bgh-dropdown-content {
        padding: 1rem;
    }
    
    .bgh-category-item {
        padding: 0.5rem;
    }
    
    .bgh-category-image {
        width: 35px;
        height: 35px;
    }
    
	.bgh-commercials {
        padding: var(--spacing-md) 0;
    }
    
    .commercial-banner {
        border-radius: 8px;
    }
	
	.bgh-video .bgh-section-title,
    .bgh-video-description {
        max-width: 90%;
    }
    
    .bgh-video .bgh-section-title {
        font-size: 1.3rem;
    }
    
    .bgh-video-description {
        font-size: 0.9rem;
    }
    
    .bgh-video-text {
        padding: 1rem;
    }
    
    .bgh-video-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Full overlay on very small screens */
    .bgh-video-wrapper::before {
        background: rgba(0, 0, 0, 0.5);
    }
	/*
	.bgh-testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .bgh-testimonial-author-info {
        text-align: center;
    }*/
	
	.bgh-testimonials {
        padding: 40px 0;
    }
    
    .testimonials-simple-slider {
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .testimonial-quote::before {
        font-size: 2rem;
        top: -5px;
        left: 0;
    }
    
    .testimonial-name {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .testimonial-stars .star {
        font-size: 1.2rem;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-dot.active {
        width: 20px;
    }
	
    .bgh-footer .bgh-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
	
	.bgh-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .bgh-payment-options {
        justify-content: center;
    }
	
	.bgh-offline-contact-title {
        font-size: 1.8rem;
    }
    
    .bgh-offline-contact-subtitle {
        font-size: 1rem;
    }
    
    .bgh-offline-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .bgh-offline-contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bgh-offline-contact-button {
        justify-content: center;
    }
    
    .bgh-offline-contact-tagline {
        font-size: 1rem;
    }
	.bgh-cta-button {
		font-size: 1.1rem;
	}
	
	.bgh-offline-contact-section  {
        max-height: 1500px;
    }
}

/* Extra Small Mobile Styles (max-width: 360px) */
@media (max-width: 360px) {
	
    .bgh-header {
        border-radius: 25px;
    }
    
    .bgh-hero {
        min-height: 38vh;
    }
    
    .bgh-hero .bgh-container {
        padding: 0 calc(var(--container-padding) + 1rem);
    }
    
    .bgh-hero-title {
        font-size: 1.6rem;
    }
    
    .bgh-main-nav {
        padding: 70px 1rem 1rem;
    }
    
    .bgh-nav-link {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .bgh-get-started-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .bgh-head-bar h3 {
        font-size: xx-Small;
    }
	
	.bgh-offline-contact-title {
        font-size: 1.5rem;
    }
    
    .bgh-offline-contact-card {
        padding: 20px 15px;
    }
    
    .bgh-offline-contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .bgh-offline-contact-icon svg {
        width: 28px;
        height: 28px;
    }
	
	.bgh-cta-section {
		max-height: 540px;
	}
	
	.bgh-cta-text {
		font-size: 1rem;
	}
	
	.bgh-cta-tagline {
		font-size: 1rem;
	}
	
	.bgh-offline-contact-section  {
        max-height: 1530px;
    }
}

/* Extra Small Mobile Styles (max-width: 300px) */
@media (max-width: 300px) {
    
	.bgh-content-marginer, .content-area{
	    margin: 6rem 0.5rem !important;
	}
	
	.bgh-cta-button {
		font-size: 0.9rem;
		padding: 10px 40px;
	}
	
	.bgh-offline-contact-section  {
        max-height: 1560px;
    }
	
}

/* ============================================
   TOUCH OPTIMIZATIONS
============================================ */
@media (hover: none) and (pointer: coarse) {
    .bgh-nav-link,
    .bgh-get-started-btn,
    .bgh-search-btn,
    .bgh-contact-btn,
    .bgh-account-btn,
    .bgh-cart-btn,
    .bgh-category-item,
    .bgh-view-all-btn,
    .bgh-hero-button,
    .bgh-product-item .add_to_cart_button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .bgh-nav-link:hover::after,
    .bgh-get-started-btn:hover,
    .bgh-search-btn:hover,
    .bgh-contact-btn:hover,
    .bgh-account-btn:hover,
    .bgh-cart-btn:hover,
    .bgh-category-item:hover,
    .bgh-product-item:hover {
        transform: none;
    }
    
    .bgh-nav-link:active,
    .bgh-get-started-btn:active,
    .bgh-search-btn:active,
    .bgh-contact-btn:active,
    .bgh-account-btn:active,
    .bgh-cart-btn:active {
        opacity: 0.7;
        transform: scale(0.98);
    }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
============================================ */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    border-radius: 4px;
}

.skip-link:focus {
    top: 10px;
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.bgh-get-started-btn:focus,
.bgh-search-btn:focus,
.bgh-contact-btn:focus,
.bgh-nav-link:focus,
.bgh-account-btn:focus,
.bgh-cart-btn:focus,
.bgh-search-input:focus,
.bgh-hero-button:focus,
.bgh-view-all-btn:focus,
.bgh-product-item .add_to_cart_button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduce motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .bgh-get-started-dropdown,
    .bgh-search-box,
    .bgh-phone-reveal,
    .bgh-site-overlay,
    .bgh-content-wrapper,
    .bgh-header,
    .bgh-header-right-expanded {
        transition: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
============================================ */
.bgh-logo .custom-logo {
    height: 50px;
    object-fit: contain;
}

.bgh-category-image img {
    aspect-ratio: 1/1;
}

.bgh-product-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.bgh-hero {
    will-change: background-image, background-size;
}


/**********************NEE TO CLEAN**************************/
/* Style payment plan variations */
.variations .label label {
    font-weight: bold;
    font-size: 16px;
}

/* Highlight monthly option */
option[value*="Monthly"] {
    color: #d33;
    font-weight: bold;
}

/* Show payment terms */
.payment-terms {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

